git-svn-id: file:///home/svn/framework3/trunk@13557 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2011-08-13 16:51:49 +00:00
parent 55d60a1af2
commit 8b72de1af6
3 changed files with 24 additions and 21 deletions

View File

@ -20,7 +20,7 @@ class Metasploit3 < Msf::Auxiliary
def initialize def initialize
super( super(
'Name' => 'PXE exploit server', 'Name' => 'PXE Boot Exploit Server',
'Version' => '$Revision$', 'Version' => '$Revision$',
'Description' => %q{ 'Description' => %q{
This module provides a PXE server, running a DHCP and TFTP server. This module provides a PXE server, running a DHCP and TFTP server.
@ -78,3 +78,4 @@ class Metasploit3 < Msf::Auxiliary
end end
end end

View File

@ -21,10 +21,10 @@ class Metasploit3 < Msf::Auxiliary
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
'Name' => 'Email PII Tester', 'Name' => 'vsploit Email PII',
'Description' => %q{ 'Description' => %q{
This auxiliary reads from a file and sends data which This auxiliary reads from a file and sends data which
should be flagged via an internal or external smtp server. should be flagged via an internal or external SMTP server.
}, },
'License' => MSF_LICENSE, 'License' => MSF_LICENSE,
'Author' => ['willis'], 'Author' => ['willis'],
@ -53,3 +53,4 @@ class Metasploit3 < Msf::Auxiliary
resp = send_message(msg.to_s) resp = send_message(msg.to_s)
end end
end end

View File

@ -13,14 +13,14 @@ class Metasploit3 < Msf::Post
def initialize(info={}) def initialize(info={})
super( update_info( info, super( update_info( info,
'Name' => 'Local NBD server for remote disks', 'Name' => 'Local NBD Server for Remote Disks',
'Description' => %q{Maps remote disks and logical volumes to a local Network Block 'Description' => %q{Maps remote disks and logical volumes to a local Network Block
Device server. Allows for forensic tools to be executed on the remote disk directly.}, Device server. Allows for forensic tools to be executed on the remote disk directly.},
'License' => MSF_LICENSE, 'License' => MSF_LICENSE,
'Version' => '$Revision$', 'Version' => '$Revision$',
'Platform' => ['windows'], 'Platform' => ['windows'],
'SessionTypes' => ['meterpreter'], 'SessionTypes' => ['meterpreter'],
'Author' => ['Wesley McGrew <wesley@mcgrewsecurity.com>'] 'Author' => ['Wesley McGrew <wesley[at]mcgrewsecurity.com>']
)) ))
register_options( register_options(
[ [
@ -74,14 +74,14 @@ class Metasploit3 < Msf::Post
magic, request, nbd_handle, offset_n, length = request.unpack("NNa8a8N") magic, request, nbd_handle, offset_n, length = request.unpack("NNa8a8N")
if magic != 0x25609513 if magic != 0x25609513
print_status("Wrong magic number") print_error("Wrong magic number")
break break
end end
if request == 2 if request == 2
break break
end end
if request == 1 if request == 1
print_status("Attempted write on a read-only nbd") print_error("Attempted write on a read-only nbd")
break break
end end
if request == 0 if request == 0
@ -101,3 +101,4 @@ class Metasploit3 < Msf::Post
client.railgun.kernel32.CloseHandle(handle) client.railgun.kernel32.CloseHandle(handle)
end end
end end