pwn 0.5.339 → 0.5.340
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/lib/pwn/plugins/burp_suite.rb +3 -2
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f465b68330cd0265e0fb6c38b328495afb14713a7b16adafe14844e14da553a9
|
4
|
+
data.tar.gz: 5c88beb42a94f780f9e30a2626a70110d87eec8d4da88ef8f3f40440103403a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1ba52dda62a16eb8d40500739be1a0f7f3fca5c930ba3747aaf90f944a1c4ebf1fb1b92e07410ed999d3a62141aa6fb8d90d93031fb6cb9fca26899287814a3
|
7
|
+
data.tar.gz: bc6a9690a7c795b9e59376e36cda19eebd3e09904a7feab4bf2dc211eea0b9ae042ec8705336aa6e128a8e1486ababdcdeca6a03a288b676737e7e2a976ca204
|
@@ -183,7 +183,8 @@ module PWN
|
|
183
183
|
|
184
184
|
in_scope = rest_browser.post(
|
185
185
|
"http://#{pwn_burp_api}/spider",
|
186
|
-
post_body,
|
186
|
+
post_body,
|
187
|
+
content_type: 'application/json; charset=UTF8'
|
187
188
|
)
|
188
189
|
spider_json = JSON.parse(in_scope, symbolize_names: true)
|
189
190
|
spider_id = spider_json[:id]
|
@@ -705,7 +706,7 @@ module PWN
|
|
705
706
|
|
706
707
|
active_scan_url_arr # Return array of targeted URIs to pass to #generate_scan_report method
|
707
708
|
rescue StandardError => e
|
708
|
-
stop(burp_obj: burp_obj) unless burp_obj.nil?
|
709
|
+
# stop(burp_obj: burp_obj) unless burp_obj.nil?
|
709
710
|
raise e
|
710
711
|
end
|
711
712
|
|
data/lib/pwn/version.rb
CHANGED