cms_scanner 0.0.38.3 → 0.0.38.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/core.rb +1 -1
- data/app/controllers/core/cli_options.rb +1 -1
- data/lib/cms_scanner/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5129bb964f15606a14d7b789f6bedde506998491
|
|
4
|
+
data.tar.gz: d7a0f14baa494e6337a55c8b4e8eab266f90f6bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2162f4eb2c144fec9643c81b73ab26dbb3909720ba6e16ba300a5bd88962bcf988873e69e2317b8107e83288a65813925d8b8a9f8318b8bca6ae4dd21d22280c
|
|
7
|
+
data.tar.gz: 1c8472b27cb93615558956812a3ee5ae3a4368b9a6f9135761555c6c719a6fe1ff7178634f6df10826312e7e5bc55a5bcd397445fad3daa541a546e2294e3fa5
|
data/app/controllers/core.rb
CHANGED
|
@@ -9,7 +9,7 @@ module CMSScanner
|
|
|
9
9
|
OptURL.new(['-u', '--url URL', 'The URL to scan'], required: true, default_protocol: 'http'),
|
|
10
10
|
OptBoolean.new(['--ignore-main-redirect', 'Ignore the main redirect if any and scan the target url']),
|
|
11
11
|
OptBoolean.new(%w[-v --verbose]),
|
|
12
|
-
OptBoolean.new(['--no-banner', '
|
|
12
|
+
OptBoolean.new(['--[no-]banner', 'Whether or not to display the banner'], default: true),
|
|
13
13
|
OptFilePath.new(['-o', '--output FILE', 'Output to FILE'], writable: true, exists: false),
|
|
14
14
|
OptChoice.new(['-f', '--format FORMAT',
|
|
15
15
|
'Output results in the format supplied'], choices: formats),
|
data/lib/cms_scanner/version.rb
CHANGED