14 lines
357 B
Ruby
14 lines
357 B
Ruby
module WPScan
|
|
module Controller
|
|
# Controller to add the aliases in the CLI
|
|
class Aliases < CMSScanner::Controller::Base
|
|
def cli_options
|
|
[
|
|
OptAlias.new(['--stealthy'],
|
|
alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive')
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|