pwn 0.5.161 → 0.5.162

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: 0db3c5760e312a8641c11a69259e8c6209ee153135192bd189ae825be98c9eb3
4
- data.tar.gz: 890d0193a300e145505db09b43b84946636b7c3f24cccd039f6b259d174ebcd7
3
+ metadata.gz: 66d3c79e6bd65944a863f1f91dc14b5c38b2f1d966ad01da138e327c2695bcd7
4
+ data.tar.gz: 1b22a1e5586aba903869f783efc59533de9b7baa8749c466ea73d3470f90fb08
5
5
  SHA512:
6
- metadata.gz: e623634c9531d84a51a0024c742d0e983ffd6da3acd28732455d6c4560ff49f9e7e2b8f7253d6e7165e59fbd161f7950d8777ea672a555e4c1df5b5378c2fdf3
7
- data.tar.gz: 3b73a023378f7e1ec769a9cf2244a3af7bee4f4f653152f204242487d853232825597bb2d243b8108911486bc1f6a0a9bfc78785133d68c2b65877e3e79cff19
6
+ metadata.gz: 584b10c147f8711a9bf385cc7cfc2b17287d7b8d9a38da210f5fa2adfcb6b6e198b1afc52b36cf31692776c3789d84851e358de272e7c5ac765981ed64bb2fbf
7
+ data.tar.gz: 426e5669c7318a18a797a7f58f7f9eab38fb49e4fb8f45586c1f9212a3131d0e7d50d0d9efc13bce8082a4462a6019906db6f55c220f8236d453692bbe4b5b3b
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.161]:001 >>> PWN.help
40
+ pwn[v0.5.162]: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.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.161]:001 >>> PWN.help
55
+ pwn[v0.5.162]: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.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.161]:001 >>> PWN.help
65
+ pwn[v0.5.162]: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:
@@ -230,7 +230,7 @@ begin
230
230
 
231
231
  next if wordlist_line.match?(/^#/)
232
232
 
233
- http_methods = %i[DELETE GET HEAD OPTIONS PATCH POST PUT TRACE].shuffle
233
+ http_methods = %i[DELETE GET HEAD OPTIONS PATCH POST PUT TRACE].shuffle
234
234
  http_methods.each do |http_method|
235
235
  rest_client_resp_hash = request_path(
236
236
  target_url: target_url,
@@ -285,5 +285,6 @@ begin
285
285
  rescue SystemExit, Interrupt
286
286
  puts "\nGoodbye."
287
287
  rescue StandardError => e
288
+ puts e.backtrace
288
289
  raise e
289
290
  end
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.161'
4
+ VERSION = '0.5.162'
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.161
4
+ version: 0.5.162
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.