Skip to content

Commit 53c08cd

Browse files
committed
fix incorrect printing typo
1 parent 0b9fb41 commit 53c08cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/sap/sap_soap_rfc_eps_get_directory_listing.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def run_host(ip)
9090
})
9191
if res and res.code == 200 and res.body =~ /EPS_GET_DIRECTORY_LISTING\.Response/ and res.body =~ /<FILE_COUNTER>(\d*)<\/FILE_COUNTER>/
9292
file_count = $1
93-
print_good("#{rport}:#{rhost} - #{file_count} files under #{datastore["DIR"]}")
93+
print_good("#{rhost}:#{rport} - #{file_count} files under #{datastore["DIR"]}")
9494
else
9595
vprint_error("#{rhost}:#{rport} - Error code: " + res.code.to_s) if res
9696
vprint_error("#{rhost}:#{rport} - Error message: " + res.message.to_s) if res

0 commit comments

Comments
 (0)