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::Report
|
|
|
|
include Msf::Auxiliary::Scanner
|
2013-12-05 03:46:45 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
2013-12-05 06:28:53 +00:00
|
|
|
'Name' => "Printer Ready Message Scanner",
|
2013-12-05 03:46:45 +00:00
|
|
|
'Description' => %q{
|
|
|
|
This module scans for and can change printer ready messages using PJL.
|
|
|
|
},
|
2013-12-05 06:28:53 +00:00
|
|
|
'Author' => [
|
2013-12-05 16:56:28 +00:00
|
|
|
"wvu", # This implementation
|
|
|
|
"MC", # Independent implementation
|
|
|
|
"YGN" # Independent implementation
|
2013-12-05 06:28:53 +00:00
|
|
|
],
|
2013-12-05 03:46:45 +00:00
|
|
|
'References' => [
|
|
|
|
["URL", "https://en.wikipedia.org/wiki/Printer_Job_Language"]
|
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options([
|
|
|
|
Opt::RPORT(9100),
|
2013-12-05 06:28:53 +00:00
|
|
|
OptBool.new("CHANGE", [false, "Change ready message", false]),
|
|
|
|
OptString.new("MESSAGE", [false, "Ready message", "PC LOAD LETTER"])
|
2013-12-05 03:46:45 +00:00
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
connect
|
|
|
|
pjl = Rex::Proto::PJL::Client.new(sock)
|
2013-12-16 17:38:52 +00:00
|
|
|
pjl.begin_job
|
2013-12-05 06:28:53 +00:00
|
|
|
if datastore["CHANGE"]
|
2013-12-05 03:46:45 +00:00
|
|
|
message = datastore["MESSAGE"]
|
2013-12-05 16:25:04 +00:00
|
|
|
pjl.set_rdymsg(message)
|
2013-12-05 03:46:45 +00:00
|
|
|
end
|
2013-12-09 20:02:16 +00:00
|
|
|
rdymsg = pjl.get_rdymsg
|
2013-12-16 17:38:52 +00:00
|
|
|
pjl.end_job
|
2013-12-05 03:46:45 +00:00
|
|
|
disconnect
|
|
|
|
|
|
|
|
if rdymsg
|
2013-12-16 17:46:24 +00:00
|
|
|
print_good("#{ip}:#{rport} - #{rdymsg}")
|
2013-12-05 03:46:45 +00:00
|
|
|
report_note({
|
|
|
|
:host => ip,
|
|
|
|
:port => rport,
|
|
|
|
:proto => "tcp",
|
2013-12-05 16:56:28 +00:00
|
|
|
:type => "printer.rdymsg",
|
2013-12-05 03:46:45 +00:00
|
|
|
:data => rdymsg
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|