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.
2 parents 518242c + 0e7074c commit abe4d6cCopy full SHA for abe4d6c
modules/auxiliary/scanner/smb/smb_enumshares.rb
@@ -32,7 +32,8 @@ def initialize(info={})
32
[
33
'hdm',
34
'nebulus',
35
- 'sinn3r'
+ 'sinn3r',
36
+ 'r3dy'
37
],
38
'License' => MSF_LICENSE,
39
'DefaultOptions' =>
@@ -362,8 +363,10 @@ def run_host(ip)
362
363
if shares.empty?
364
print_status("#{ip}:#{rport} - No shares collected")
365
else
- shares_info = shares.map{|x| "#{x[0]} - #{x[2]} (#{x[1]})" }.join(", ")
366
- print_status("#{ip}:#{rport} - #{shares_info}")
+ shares_info = shares.map{|x| "#{ip}: #{x[0]} - (#{x[1]}) #{x[2]}" }.join(", ")
367
+ shares_info.split(", ").each { |share|
368
+ print_good share
369
+ }
370
report_note(
371
:host => ip,
372
:proto => 'tcp',
0 commit comments