16 lines
388 B
Ruby
16 lines
388 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|