Skip to content

Commit

Permalink
Merge pull request #117 from Ostorlab/feature/Add-Fingerprint-for-Son…
Browse files Browse the repository at this point in the history
…icWall-SSL-VPN

Add Fingerprint for SonicWall SSL VPN
  • Loading branch information
3asm authored Feb 12, 2025
2 parents b75d047 + f61ba74 commit 0ea49e9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions plugins/sonicwall_ssl_vpn.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Plugin.define do
name "SonicWall SSL VPN"
authors [
"Assistant",
]
version "0.1"
description "SonicWall SSL VPN provides secure remote access to corporate resources. It's part of SonicWall's network security product line."
website "https://www.sonicwall.com/"

matches [
{
:search => "body",
:regexp => /<div id=sslvpn-portal>/i,
:name => "SonicWall SSL VPN Portal Container"
},
{
:search => "body",
:regexp => /\/sonicui\/.*\/sslvpn-portal\//i,
:name => "SonicWall SSL VPN Resource Path"
}
]
end

0 comments on commit 0ea49e9

Please sign in to comment.