pwn 0.5.5 → 0.5.6

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: 830ff0222ce1d91faa0cb731810085935ad1c9da2e1785d6468ba5419e3bfb87
4
- data.tar.gz: efcb347f3225693b7b67ac78e09635c2c186cc9302dd1b37e103eaf658d156f2
3
+ metadata.gz: db25f7826cf641ff6ee9a08c514eb818ca86a4d240b27673f41f9405a19dd5aa
4
+ data.tar.gz: fc3ed02c0b71b85c2de7ed372f039a572bad16dbf8fba58e51be1ea1bb2481ed
5
5
  SHA512:
6
- metadata.gz: cb81f182a1d8de751a45bf66fd73ccdfb64ab01bdbb9c5921d8673888f9de7744c9bc7a2c422e388566d1a8c20e778ee7e8870640f15969a6be40139d7ad763e
7
- data.tar.gz: 3d3c30615ef6808af1b5441ee5642ab7acdb3a7989755f115f93c3e2cc4b56f0a75ad3c468743100377f327208e2c4154c326aa8e99c656afc9f96a5f3d6d5bc
6
+ metadata.gz: 93763a61f4ad91827c6972f83c49ee6e7b88adf18911d190fa5a3dcdcb60d5b9195b9e5a37b4e5a9236d449e626622dd68d4b64860093db490149478e28e17f4
7
+ data.tar.gz: 55280eca8607553bbdfd0c42f1d3f5b8ae93a319cf688c2515e58ffd7e2842f96b6fea98e1e2bc1b10dfc0ce007278cab64c6eb3a125ee1fb9301ba03cbef5de
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.5]:001 >>> PWN.help
40
+ pwn[v0.5.6]: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.3.0@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.5]:001 >>> PWN.help
55
+ pwn[v0.5.6]: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.3.0@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.5]:001 >>> PWN.help
65
+ pwn[v0.5.6]: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:
data/bin/pwn_bdba_scan CHANGED
@@ -146,10 +146,9 @@ begin
146
146
  find_product_attempts = scan_attempts
147
147
  print 'Looking for Product in Apps by Group...'
148
148
  loop do
149
- # File encoding conducting by synopsis is kinda goofy.
150
- # The encode space w/ + (which is expected) but dont
151
- # encode + to %2B (whiich _isn't_ expected)
152
- target_basename = CGI.unescape_uri_component(File.basename(target_file))
149
+ # target_basename = CGI.unescape_uri_component(File.basename(target_file))
150
+ # ^ Synopsis unescapes it for us.
151
+ target_basename = File.basename(target_file)
153
152
 
154
153
  find_product = scan_progress_resp[:products].find { |p| p[:name] == target_basename }
155
154
 
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.5'
4
+ VERSION = '0.5.6'
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.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.