Make PHPFUNC advanced option

bug/bundler_fix
jvazquez-r7 2014-03-24 08:47:31 -05:00
parent 4f333d84c9
commit c3b753f92e
1 changed files with 6 additions and 2 deletions

View File

@ -44,8 +44,12 @@ class Metasploit3 < Msf::Exploit::Remote
register_options(
[
OptString.new('TARGETURI', [true, 'The base path to the FreePBX installation', '/']),
OptString.new('PHPFUNC', [true, 'The PHP execution function to use', 'passthru']),
OptString.new('TARGETURI', [true, 'The base path to the FreePBX installation', '/'])
], self.class)
register_advanced_options(
[
OptString.new('PHPFUNC', [true, 'The PHP execution function to use', 'passthru'])
], self.class)
end