1# frozen_string_literal: true 2 3module WPScan 4 module Controller 5 # Controller to add the aliases in the CLI 6 class Aliases < CMSScanner::Controller::Base 7 def cli_options 8 [ 9 OptAlias.new(['--stealthy'], 10 alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive') 11 ] 12 end 13 end 14 end 15end 16 17