pwn 0.5.415 → 0.5.416

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87c919a7c845775ef01b0e168e8436eba8e7ccb976f6ee1ef17f0a0d263c3f20
4
- data.tar.gz: 7ca524553e9fd11aceb4d4e1579d6f0bf9e30962742207ee74e26256d85c1bbb
3
+ metadata.gz: 28095b87ac8e60d0caad499cc96ad6fbb79832dc4d009ed5b9a1f51ff081d755
4
+ data.tar.gz: 4b3d0a573e840033f90496ba11244e3d8b3ef6f3ec08e5ff39baaaed3e4f6f3e
5
5
  SHA512:
6
- metadata.gz: bb210d6b63260aa3d2a6318f7889cc1d21e9ecadfee29901c0f1edcf73caae6ba731f3b843dec67ef939aeeaceedee671c361ae569b8e5e8588f7e62209e291b
7
- data.tar.gz: 041231c631e9cb09f63fbdd4c27ea514ceca96f8794c43787ba3d6842239703fd471210658f7a4a38f824ecd5bd2e3f89443fa89831ff0a82e2bb4360394e6a4
6
+ metadata.gz: 58115b0a7db3baef39deecb8fd486a8a5b9f4369b7f6cd778a9d6867ae6bb36f1010afc43c729498ee7191fc3c58e5fa4b3fd04b8aa1562f2a79d24880dbdebf
7
+ data.tar.gz: 91d45eb10e7b19b880b65064ca6c5d386f8630de865aacbc8941e8550c9608ed1e68d3e9c1e0bfd97f561469cea702ca725998d096352a28d103a3f79cccf55d
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
37
37
  $ ./install.sh
38
38
  $ ./install.sh ruby-gem
39
39
  $ pwn
40
- pwn[v0.5.415]:001 >>> PWN.help
40
+ pwn[v0.5.416]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  [![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -52,7 +52,7 @@ $ rvm use ruby-3.4.4@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.415]:001 >>> PWN.help
55
+ pwn[v0.5.416]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
  If you're using a multi-user install of RVM do:
@@ -62,7 +62,7 @@ $ rvm use ruby-3.4.4@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.415]:001 >>> PWN.help
65
+ pwn[v0.5.416]:001 >>> PWN.help
66
66
  ```
67
67
 
68
68
  PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
@@ -360,7 +360,7 @@ module PWN
360
360
  # Supported Method Parameters::
361
361
  # json_sitemap = PWN::Plugins::BurpSuite.get_sitemap(
362
362
  # burp_obj: 'required - burp_obj returned by #start method',
363
- # keyword: 'optional - keyword to filter sitemap entries (default: nil)',
363
+ # keyword: 'optional - keyword to filter sitemap entries (default: nil)'
364
364
  # )
365
365
 
366
366
  public_class_method def self.get_sitemap(opts = {})
@@ -379,7 +379,7 @@ module PWN
379
379
  sitemap_arr = JSON.parse(sitemap, symbolize_names: true)
380
380
 
381
381
  if keyword
382
- sitmap_arr = sitemap_arr.select do |site|
382
+ sitemap_arr = sitemap_arr.select do |site|
383
383
  decoded_request = Base64.strict_decode64(site[:request])
384
384
  decoded_request.include?(keyword)
385
385
  end
@@ -1357,7 +1357,7 @@ module PWN
1357
1357
 
1358
1358
  json_sitemap = #{self}.get_sitemap(
1359
1359
  burp_obj: 'required - burp_obj returned by #start method',
1360
- keyword: 'optional - keyword to filter sitemap results (default: nil)',
1360
+ keyword: 'optional - keyword to filter sitemap results (default: nil)'
1361
1361
  )
1362
1362
 
1363
1363
  json_sitemap = #{self}.add_to_sitemap(
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.5.415'
4
+ VERSION = '0.5.416'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.415
4
+ version: 0.5.416
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.