mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
Merge pull request #416 from frapava98/master
CISCO ASA plugin update & new GoAnywhere Plugins
This commit is contained in:
@@ -8,8 +8,9 @@ Plugin.define do
|
||||
name "Cisco-Adaptive-Security-Appliance"
|
||||
authors [
|
||||
"Brendan Coles <bcoles@gmail.com>", # 2011-11-11
|
||||
"Francesco Pavanello <frapava98@gmail.com>", # 2025-10-01
|
||||
]
|
||||
version "0.1"
|
||||
version "0.2"
|
||||
description "The Cisco Adaptive Security Appliance (ASA) family of security devices protects corporate networks. It provides users with highly secure access to data - anytime, anywhere, using any device."
|
||||
website "http://www.cisco.com/web/ANZ/products/security/asa_software.html"
|
||||
|
||||
@@ -39,6 +40,7 @@ matches [
|
||||
|
||||
# /netaccess/redirect.html # Form
|
||||
{ :regexp=>/<FORM ACTION="\/netaccess\/redirect\.html">\s+<INPUT type=hidden name=sid VALUE=/ },
|
||||
{ :regexp=>/document\.location\.replace\(['"]\/\+CSCOE\+\/logon\.html(?:\?[^'"]*)?['"]\)/ },
|
||||
|
||||
]
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
##
|
||||
# This file is part of WhatWeb and may be subject to
|
||||
# redistribution and commercial restrictions. Please see the WhatWeb
|
||||
# web site for more information on licensing and terms of use.
|
||||
# https://morningstarsecurity.com/research/whatweb
|
||||
#
|
||||
Plugin.define do
|
||||
name "GoAnywhere-Web-Client"
|
||||
authors [
|
||||
"Francesco Pavanello <frapava98@gmail.com>", # v0.1 # 2025-10-01 # Created plugin
|
||||
]
|
||||
version "0.1"
|
||||
description "Fortra GoAnywhere is a Managed File Transfer (MFT) solution designed to help organizations securely and efficiently exchange data with trading partners, employees, and internal systems>
|
||||
website "https://www.goanywhere.com/"
|
||||
|
||||
# This is the matches array.
|
||||
# Each match is treated independently.
|
||||
|
||||
# Dorks #
|
||||
dorks [
|
||||
'intitle:"GoAnywhere Web Client"'
|
||||
]
|
||||
|
||||
|
||||
# Matches #
|
||||
matches [
|
||||
# This searches for a text string.
|
||||
{ :text => "<title>GoAnywhere Web Client - Login</title>" },
|
||||
{ :text => "<div id=\"footer\">Powered by <a href=\"https://www.GoAnywhere.com/powered-by\" target=\"_blank\">GoAnywhere</a></div>" },
|
||||
]
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user