Skip to content

Commit c03f35e

Browse files
committed
Fix the hanging of module auxiliary/scanner/ftp/titanftp_xcrc_traversal.rb
Thanks for Wei who pointed out the error: in store_loop call, it used "rhosts", should have been ip.
1 parent 52b81f3 commit c03f35e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/ftp/titanftp_xcrc_traversal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def run_host(ip)
9898
progress(file_size, file_size)
9999

100100
fname = datastore['PATH'].gsub(/[\/\\]/, '_')
101-
p = store_loot("titanftp.traversal", "text/plain", "rhost", file_data, fname)
101+
p = store_loot("titanftp.traversal", "text/plain", ip, file_data, fname)
102102
print_status("Saved in: #{p}")
103103
vprint_status(file_data.inspect)
104104

0 commit comments

Comments
 (0)