From bf1cc83959bb2fb04802e8754156dcc8c3da3f96 Mon Sep 17 00:00:00 2001 From: Francesco Pavanello Date: Wed, 1 Oct 2025 15:52:31 +0200 Subject: [PATCH 1/4] Update cisco-adaptive-security-appliance.rb --- plugins/cisco-adaptive-security-appliance.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/cisco-adaptive-security-appliance.rb b/plugins/cisco-adaptive-security-appliance.rb index 8c039995..554d04d4 100644 --- a/plugins/cisco-adaptive-security-appliance.rb +++ b/plugins/cisco-adaptive-security-appliance.rb @@ -39,6 +39,7 @@ matches [ # /netaccess/redirect.html # Form { :regexp=>/
\s+/document\.location\.replace\(['"]\/\+CSCOE\+\/logon\.html(?:\?[^'"]*)?['"]\)/ }, ] From bf88d4c7dfd47b735c3880f43d720071911c5478 Mon Sep 17 00:00:00 2001 From: Francesco Pavanello Date: Wed, 1 Oct 2025 15:53:41 +0200 Subject: [PATCH 2/4] Update cisco-adaptive-security-appliance.rb --- plugins/cisco-adaptive-security-appliance.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/cisco-adaptive-security-appliance.rb b/plugins/cisco-adaptive-security-appliance.rb index 554d04d4..0543dca4 100644 --- a/plugins/cisco-adaptive-security-appliance.rb +++ b/plugins/cisco-adaptive-security-appliance.rb @@ -8,6 +8,7 @@ Plugin.define do name "Cisco-Adaptive-Security-Appliance" authors [ "Brendan Coles ", # 2011-11-11 + "Francesco Pavanello ", # 2025-10-01 ] version "0.1" 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." From b7f413aa7cdf46a244acdb6617dda12501703619 Mon Sep 17 00:00:00 2001 From: Francesco Pavanello Date: Wed, 1 Oct 2025 16:45:07 +0200 Subject: [PATCH 3/4] Update cisco-adaptive-security-appliance.rb --- plugins/cisco-adaptive-security-appliance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/cisco-adaptive-security-appliance.rb b/plugins/cisco-adaptive-security-appliance.rb index 0543dca4..8a90166a 100644 --- a/plugins/cisco-adaptive-security-appliance.rb +++ b/plugins/cisco-adaptive-security-appliance.rb @@ -10,7 +10,7 @@ authors [ "Brendan Coles ", # 2011-11-11 "Francesco Pavanello ", # 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" From 3ceab99f0aa6fa3da0e6c40601ab12cb1472b2ad Mon Sep 17 00:00:00 2001 From: Francesco Pavanello Date: Wed, 1 Oct 2025 17:36:41 +0200 Subject: [PATCH 4/4] Create goanywhere-web-client.rb --- plugins/goanywhere-web-client.rb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 plugins/goanywhere-web-client.rb diff --git a/plugins/goanywhere-web-client.rb b/plugins/goanywhere-web-client.rb new file mode 100644 index 00000000..0f1b9073 --- /dev/null +++ b/plugins/goanywhere-web-client.rb @@ -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 ", # 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 => "GoAnywhere Web Client - Login" }, + { :text => "
Powered by GoAnywhere
" }, + ] + +end