Add Wills Email PII module

git-svn-id: file:///home/svn/framework3/trunk@13540 4d416f70-5f16-0410-b530-b9f4589650da
unstable
David Rude 2011-08-12 02:14:30 +00:00
parent 0e8e17a565
commit d9bd7daed6
2 changed files with 55 additions and 1 deletions

View File

@ -0,0 +1,55 @@
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
#
# This module sends pii via an attacker smtp machine
#
include Msf::Exploit::Remote::SMTPDeliver
include Msf::Auxiliary::PII
def initialize(info = {})
super(update_info(info,
'Name' => 'Email PII Tester',
'Description' => %q{
This auxiliary reads from a file and sends data which
should be flagged via an internal or external smtp server.
},
'License' => MSF_LICENSE,
'Author' => ['willis'],
'Version' => '$Revision$'
))
register_options(
[
OptString.new('RHOST', [true, "SMTP server address",'127.0.0.1']),
OptString.new('RPORT', [true, "SMTP server port",'25'])
], self.class)
end
def run
msg = Rex::MIME::Message.new
msg.mime_defaults
msg.subject = datastore['SUBJECT']
msg.to = datastore['MAILTO']
msg.from = datastore['MAILFROM']
data = create_pii
msg.add_part(data, "text/plain")
msg.add_part_attachment(data, rand_text_english(10))
resp = send_message(msg.to_s)
end
end

View File

@ -13,7 +13,6 @@ class Metasploit3 < Msf::Auxiliary
# This module acts as an compromised webserver distributing PII Data
#
include Msf::Exploit::Remote::HttpServer::HTML
#p "Loading vSploit PII Webserver"
include Msf::Auxiliary::PII
def initialize(info = {})