Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/app/controllers/aliases.rb
485 views
1
# frozen_string_literal: true
2
3
module 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
15
end
16
17