pwn 0.5.261 → 0.5.262

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: a9c22ecc8e5ce9a02da49a22288572cede1eeb407125769c905c39adcea333cc
4
- data.tar.gz: e70d1286edf8cba818e2b8b194cd6bb2781f76b455a3e0ac06f0f84ae8eb3d0a
3
+ metadata.gz: 93f34bffbcf55456bb460312054a42e6c1875b5baed695f66f07aa45a2667a99
4
+ data.tar.gz: e9d1bbed01a81b404de5487b1c316482ce3f7d1533ad890c69dc36fd7505778a
5
5
  SHA512:
6
- metadata.gz: 230d6425720c0fc61dea6b0404cf81614b739b309edd4f6f92e8a6d83b625b7c74fb4464c39c02cb67d13580292347a5fc4723eb4d040cb395e51b9887ee693d
7
- data.tar.gz: 321b015fc9e68ccd447718dc501d4e9f5bce0d4f2fae3a85cb6815617ba0da36eac3039df9f089d309bd38002fa114353c7483afb4b018b6fd00f1ebb253ea03
6
+ metadata.gz: 35fe0ab42acf2679eb23ffcc6fd3f3c332b06d7701fa0b51ccc687144b32029ef02cd3872bc91146623da1b61b16451f5e8f0e8fb630b382767e06f2fa63b9ce
7
+ data.tar.gz: ef525f7b196d74ecc58dd22c2be32499bf29b801bd5d251e601f391821b48f8d0799dc60c2c1b5318454d904c36095ab0ce00af0cea61b4341f98863440c5ece
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.261]:001 >>> PWN.help
40
+ pwn[v0.5.262]: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.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.261]:001 >>> PWN.help
55
+ pwn[v0.5.262]: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.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.261]:001 >>> PWN.help
65
+ pwn[v0.5.262]: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
@@ -28,15 +28,15 @@ OptionParser.new do |options|
28
28
  opts[:report_path] = r
29
29
  end
30
30
 
31
- options.on('-q', '--queue-timeout', '<Optional - Duration in Seconds for a File to Remain in Queue Prior to Aborting (Default: 5_400)>') do |q|
31
+ options.on('-qSECONDS', '--queue-timeout=SECONDS', '<Optional - Duration in Seconds for a File to Remain in Queue Prior to Aborting (Default: 5_400)>') do |q|
32
32
  opts[:queue_timeout] = q
33
33
  end
34
34
 
35
- options.on('-a', '--scan-attempts', '<Optional - Number of Attempts to Scan a File if the Scan was Aborted Due to Queue Timeouts or RestClient Exceptions (Default: 3)>') do |a|
35
+ options.on('-aATTEMPTS', '--scan-attempts=ATTEMPTS', '<Optional - Number of Attempts to Scan a File if the Scan was Aborted Due to Queue Timeouts or RestClient Exceptions (Default: 3)>') do |a|
36
36
  opts[:scan_attempts] = a
37
37
  end
38
38
 
39
- options.on('-S', '--sleep-between-scan-attempts', '<Optional - Seconds to Sleep Between Attempts to Scan a File if the Scan was Aborted Due to Queue Timeouts or RestClient Exceptions (Default: 60)>') do |s|
39
+ options.on('-SSECONDS', '--sleep-between-scan-attempts=SECONDS', '<Optional - Seconds to Sleep Between Attempts to Scan a File if the Scan was Aborted Due to Queue Timeouts or RestClient Exceptions (Default: 60)>') do |s|
40
40
  opts[:sleep_between_scan_attempts] = s
41
41
  end
42
42
 
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.261'
4
+ VERSION = '0.5.262'
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.261
4
+ version: 0.5.262
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.