Removing IPP as a selectable mode

bug/bundler_fix
Tod Beardsley 2012-09-28 12:38:17 -05:00
parent 6944aab46c
commit a15a2b522c
1 changed files with 5 additions and 3 deletions

View File

@ -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)