We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f60f233 commit 75a0472Copy full SHA for 75a0472
modules/auxiliary/scanner/ftp/bison_ftp_traversal.rb
@@ -45,7 +45,7 @@ def check
45
connect
46
disconnect
47
if (banner =~ /BisonWare BisonFTP server product V3.5/)
48
- return Exploit::CheckCode::Vulnerable
+ return Exploit::CheckCode::Appears
49
else
50
return Exploit::CheckCode::Safe
51
end
@@ -76,7 +76,7 @@ def run_host(target_host)
76
print_status("Stored #{file_path} to #{loot_file}")
77
78
# Read and print the data from the loot file.
79
- info_disclosure = IO.read(loot_file)
+ info_disclosure = print_line(loot_file)
80
print_status("Printing contents of #{file_path}")
81
print_good("Result:\n #{info_disclosure}")
82
0 commit comments