Removing IPP as a selectable mode
parent
6944aab46c
commit
a15a2b522c
|
@ -21,8 +21,10 @@ class Metasploit3 < Msf::Auxiliary
|
|||
This module is designed to listen for PJL or PostScript print
|
||||
jobs. Once a print job is detected it is saved to loot. The
|
||||
captured printjob can then be forwarded on to another printer
|
||||
(required for LPR/IPP printjobs). Resulting PCL/PS files can be
|
||||
read with GhostScript/GhostPCL
|
||||
(required for LPR printjobs). Resulting PCL/PS files can be
|
||||
read with GhostScript/GhostPCL.
|
||||
|
||||
Note, this module does not yet support IPP connections.
|
||||
},
|
||||
'Author' => 'Chris John Riley',
|
||||
'License' => MSF_LICENSE,
|
||||
|
@ -50,7 +52,7 @@ class Metasploit3 < Msf::Auxiliary
|
|||
OptPort.new('RPORT', [ false, 'Forward to remote port', 9100 ]),
|
||||
OptAddress.new('RHOST', [ false, 'Forward to remote host' ]),
|
||||
OptBool.new('METADATA', [ true, 'Display Metadata from printjobs', true ]),
|
||||
OptEnum.new('MODE', [ true, 'Print mode', 'RAW', ['RAW', 'LPR', 'IPP']])
|
||||
OptEnum.new('MODE', [ true, 'Print mode', 'RAW', ['RAW', 'LPR']])
|
||||
|
||||
], self.class)
|
||||
|
||||
|
|
Loading…
Reference in New Issue