diff --git a/plugins/cisco-adaptive-security-appliance.rb b/plugins/cisco-adaptive-security-appliance.rb index 8c039995..8a90166a 100644 --- a/plugins/cisco-adaptive-security-appliance.rb +++ b/plugins/cisco-adaptive-security-appliance.rb @@ -8,8 +8,9 @@ Plugin.define do name "Cisco-Adaptive-Security-Appliance" 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" @@ -39,6 +40,7 @@ matches [ # /netaccess/redirect.html # Form { :regexp=>/
\s+/document\.location\.replace\(['"]\/\+CSCOE\+\/logon\.html(?:\?[^'"]*)?['"]\)/ }, ] 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