change DECODER OptString to OptEnum per egypt's recommendation

unstable
Spencer McIntyre 2013-01-11 14:34:23 -05:00
parent 4c87b1ba36
commit ce4aa606e7
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ module Exploit::CmdStagerBourne
register_advanced_options(
[
OptString.new( 'DECODER', [ true, 'The decoding binary to use. (base64, openssl, python, perl)', 'base64']),
OptEnum.new( 'DECODER', [ true, 'The decoding binary to use', 'base64', ['base64', 'openssl', 'python', 'perl']]),
], self.class)
end