From 3ceab99f0aa6fa3da0e6c40601ab12cb1472b2ad Mon Sep 17 00:00:00 2001 From: Francesco Pavanello Date: Wed, 1 Oct 2025 17:36:41 +0200 Subject: [PATCH] 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