Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/2' into ms08_067_check
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-luv committed Jan 9, 2014
2 parents 895930c + 1dd29d3 commit a2958d4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions modules/auxiliary/scanner/smb/ms08_067_check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Metasploit3 < Msf::Auxiliary

def initialize
super(
'Name' => 'Scanner for MS08-067',
'Description' => 'This module simply uses the check in the ms08_067_netapi.rc to scan a network for it',
'Name' => 'MS08-067 Scanner',
'Description' => 'This module uses the check in ms08_067_netapi to scan a network for the vulnerability.',
'References' =>
[
[ 'CVE', '2008-4250'],
Expand All @@ -35,7 +35,6 @@ def initialize
'License' => MSF_LICENSE,
'DefaultOptions' => {}
)
#deregister_options('MAILFROM', 'MAILTO')
register_options(
[
OptString.new('SMBPIPE', [ true, "The pipe name to use (BROWSER, SRVSVC)", 'BROWSER']),
Expand All @@ -45,6 +44,12 @@ def initialize
def run_host(ip)
if check_vuln == Msf::Exploit::CheckCode::Vulnerable
print_good("#{ip}:#{rport} - MS08-067 VULNERABLE")
report_vuln({
:host => ip,
:name => "MS08-067",
:info => "Vulnerability in Server service could allow remote code execution",
:refs => self.references
})
end
end

Expand Down

0 comments on commit a2958d4

Please sign in to comment.