Skip to content

Commit 086f657

Browse files
authored
Fix early termination of auxiliary/scanner/dcerpc/hidden
This commit fixes an issue, where auxiliary/scanner/dcerpc/hidden terminates directly, once an endpoint can't be reached or access is denied. Instead the next endpoint in list should be checked, instead of terminating directly.
1 parent 2b96f8e commit 086f657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/dcerpc/hidden.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_host(ip)
5555
print_status("Looking for services on #{ip}:#{rport}...")
5656

5757
ids = dcerpc_mgmt_inq_if_ids(rport)
58-
return if not ids
58+
next if not ids
5959

6060
ids.each do |id|
6161
if (not servs.has_key?(id[0]+'_'+id[1]))

0 commit comments

Comments
 (0)