pwn 0.5.332 → 0.5.334
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/.rubocop.yml +5 -5
- data/Gemfile +3 -2
- data/bin/pwn_burp_suite_pro_active_scan +1 -1
- data/lib/pwn/plugins/burp_suite.rb +429 -143
- data/lib/pwn/plugins/open_api.rb +653 -184
- data/lib/pwn/plugins/transparent_browser.rb +48 -16
- data/lib/pwn/version.rb +1 -1
- data/third_party/pwn_rdoc.jsonl +13 -1
- metadata +19 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 375ab3244887b53df33e1290e24a53213e9f512db5167e0f4745aebc172799a8
|
4
|
+
data.tar.gz: 70b5ac470ef512935e96b89b9866b0fad44ccbe3d9af578c61c83d162561861e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28c56a5f7e5b3b7316ec074779d42758a0bf55d8bccbb1059f4ad3a5b615e5709a9f8f0fe23ac9ceb943b40f7149146464c8f73ee741c1bddec402385d2e17a3
|
7
|
+
data.tar.gz: 775c7e70da1d7182d2d9c64ab6bbe0a3d48d2af1e4a9f241c8f9915e5d132a46b9356aaf519315a47316fcdbf2bc0a5cb4f73add677a82bb4f3a09e13f04d2ad
|
data/.rubocop.yml
CHANGED
@@ -8,19 +8,19 @@ Lint/UselessRescue:
|
|
8
8
|
Metrics/AbcSize:
|
9
9
|
Max: 537.6
|
10
10
|
Metrics/BlockLength:
|
11
|
-
Max:
|
11
|
+
Max: 200
|
12
12
|
Metrics/BlockNesting:
|
13
|
-
Max:
|
13
|
+
Max: 5
|
14
14
|
Metrics/ClassLength:
|
15
15
|
Max: 134
|
16
16
|
Metrics/CyclomaticComplexity:
|
17
|
-
Max:
|
17
|
+
Max: 121
|
18
18
|
Metrics/MethodLength:
|
19
19
|
Max: 485
|
20
20
|
Metrics/ModuleLength:
|
21
|
-
Max:
|
21
|
+
Max: 1000
|
22
22
|
Metrics/PerceivedComplexity:
|
23
|
-
Max:
|
23
|
+
Max: 122
|
24
24
|
Style/HashEachMethods:
|
25
25
|
Enabled: true
|
26
26
|
Style/HashSyntax:
|
data/Gemfile
CHANGED
@@ -43,6 +43,7 @@ gem 'jenkins_api_client2', '1.9.0'
|
|
43
43
|
gem 'js-beautify', '0.1.8'
|
44
44
|
gem 'json', '2.13.2'
|
45
45
|
gem 'jsonpath', '1.1.5'
|
46
|
+
gem 'json_schemer', '2.4.0'
|
46
47
|
gem 'jwt', '3.1.2'
|
47
48
|
gem 'libusb', '0.7.2'
|
48
49
|
gem 'luhn', '1.0.2'
|
@@ -81,12 +82,12 @@ gem 'rmagick', '6.1.2'
|
|
81
82
|
gem 'rqrcode', '3.1.0'
|
82
83
|
gem 'rspec', '3.13.1'
|
83
84
|
gem 'rtesseract', '3.1.4'
|
84
|
-
gem 'rubocop', '1.79.
|
85
|
+
gem 'rubocop', '1.79.1'
|
85
86
|
gem 'rubocop-rake', '0.7.1'
|
86
87
|
gem 'rubocop-rspec', '3.6.0'
|
87
88
|
gem 'ruby-audio', '1.6.1'
|
88
89
|
gem 'ruby-nmap', '1.0.3'
|
89
|
-
gem 'ruby-saml', '1.18.
|
90
|
+
gem 'ruby-saml', '1.18.1'
|
90
91
|
gem 'rvm', '1.11.3.9'
|
91
92
|
gem 'savon', '2.15.1'
|
92
93
|
gem 'selenium-devtools', '0.138.0'
|
@@ -100,7 +100,7 @@ begin
|
|
100
100
|
print "Waiting #{duration} seconds prior to kicking off active scan..."
|
101
101
|
sleep duration # Sleep for now so everything loads the way we expect - blech.
|
102
102
|
|
103
|
-
PWN::Plugins::BurpSuite.invoke_active_scan(burp_obj: burp_obj, target_url:
|
103
|
+
PWN::Plugins::BurpSuite.invoke_active_scan(burp_obj: burp_obj, target_url: in_scope)
|
104
104
|
|
105
105
|
# Dump a list of scan issues from Active Scan result
|
106
106
|
# scan_issues = PWN::Plugins::BurpSuite.get_scan_issues(burp_obj: burp_obj)
|