Add patched server detection

bug/bundler_fix
HD Moore 2015-07-08 13:47:59 -05:00
parent 25e0f888dd
commit 67666160e8
1 changed files with 8 additions and 1 deletions

View File

@ -57,7 +57,14 @@ class Metasploit3 < Msf::Auxiliary
return
end
contents = res.body
contents = res.body.to_s
# Check for patched versions of the FTA
if contents =~ / Missing session ID.*Accellion, Inc/m
print_error("#{peer} Appears to be a patched Accellion FTA")
return
end
fname = ::File.basename(datastore['FILEPATH'])
expected_server = "Apache"