Files
wpscan/app/controllers/aliases.rb
2021-04-26 17:48:25 +02:00

15 lines
329 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')
]
end
end
end
end