set AndroidWakelock=true by default

GSoC/Meterpreter_Web_Console
Tim W 2018-07-06 18:10:05 +08:00
parent 745471ea1e
commit 76da853cbd
1 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ module Msf::Payload::Android::PayloadOptions
super(info)
register_advanced_options(
[
Msf::OptBool.new('AndroidMeterpreterDebug', [ false, "Run the payload in debug mode, with logging enabled" ]),
Msf::OptBool.new('AndroidWakelock', [ false, "Acquire a wakelock before starting the payload" ]),
Msf::OptBool.new('AndroidHideAppIcon', [ false, "Hide the application icon automatically after launch" ]),
Msf::OptBool.new('AndroidMeterpreterDebug', [ false, "Run the payload in debug mode, with logging enabled" ]),
Msf::OptBool.new('AndroidWakelock', [ false, "Acquire a wakelock before starting the payload", true ]),
Msf::OptBool.new('AndroidHideAppIcon', [ false, "Hide the application icon automatically after launch" ]),
]
)
end