pwn 0.5.283 → 0.5.284

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: 5021f651954c3a8652b6f3143e7b40ce4d540a277a4e670f78664104cfc6e6e6
4
- data.tar.gz: b71fa154cca6ce1e71cc5d334a19c055bae54ca4d9dc397252e3f817258e9fd4
3
+ metadata.gz: 76c7214c462e16ffb0d089f87703477a82637fe2b6d3c8fbea74a1c84ad52de7
4
+ data.tar.gz: af25e18496a72a76efdccc3bf130c3c225ec7bd5616cad980bcb317520ea5a2b
5
5
  SHA512:
6
- metadata.gz: f083baeba35e6da17fa662cc13016cddc73519ebea0bf7198ac24b71fe8cb6cae0be63f5a79cbae09f6969034c33c51518812470b7daf9974cb51615d8227016
7
- data.tar.gz: 3c06ddaab4576c58d441a6b20a9a072b78fc593f654f1e2227ed08d2a8b13329ffdff2433a998dc5c8fa24f244585935b071a39c05322bb39868f0995340f766
6
+ metadata.gz: 6431384a5e66a32b9728e3b2bdea7dc069fc61ce90f12ff63e0dd4f493f5fa61ed892c83395bf4b6502edd10bd78f017459d01d40d7fbe0dbae1616bb2e240f5
7
+ data.tar.gz: 4ee338685ab4443eaf94c2ea5bb2fb52f596a874dd9090ae835f4ce25a56e25a6e0b0a00b28320f3ca7d6e277a2745351873832cb9e9a7af6a5569b8717604ee
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.283]:001 >>> PWN.help
40
+ pwn[v0.5.284]: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.283]:001 >>> PWN.help
55
+ pwn[v0.5.284]: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.283]:001 >>> PWN.help
65
+ pwn[v0.5.284]: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:
@@ -88,7 +88,7 @@ module PWN
88
88
 
89
89
  # Supported Method Parameters::
90
90
  # issue_resp = PWN::Plugins::JiraServer.get_issue(
91
- # base_api_uri: 'required - base URI for Jira (e.g. https:/corp.jira.com/rest/api/latest)',
91
+ # base_api_uri: 'required - base URI for Jira (e.g. https:/jira.corp.com/rest/api/latest)',
92
92
  # token: 'required - bearer token',
93
93
  # issue: 'required - issue to lookup',
94
94
  # params: 'optional - additional parameters to pass in the URI'
@@ -119,7 +119,7 @@ module PWN
119
119
 
120
120
  # Supported Method Parameters::
121
121
  # jira_resp = PWN::Plugins::JiraServer.manual_call(
122
- # base_api_uri: 'required - base URI for Jira (e.g. https:/corp.jira.com/rest/api/latest)',
122
+ # base_api_uri: 'required - base URI for Jira (e.g. https:/jira.corp.com/rest/api/latest)',
123
123
  # token: 'required - bearer token',
124
124
  # path: 'required - API path to call, without beginning forward slash',
125
125
  # params: 'optional - additional parameters to pass in the URI'
@@ -161,14 +161,14 @@ module PWN
161
161
  public_class_method def self.help
162
162
  puts "USAGE:
163
163
  issue_resp = #{self}.get_issue(
164
- base_api_uri: 'required - base URI for Jira (e.g. https:/corp.jira.com/rest/api/latest)',
164
+ base_api_uri: 'required - base URI for Jira (e.g. https:/jira.corp.com/rest/api/latest)',
165
165
  token: 'required - bearer token',
166
166
  issue: 'required - issue to lookup',
167
167
  params: 'optional - additional parameters to pass in the URI'
168
168
  )
169
169
 
170
170
  jira_resp = #{self}.manual_call(
171
- base_api_uri: 'required - base URI for Jira (e.g. https:/corp.jira.com/rest/api/latest)',
171
+ base_api_uri: 'required - base URI for Jira (e.g. https:/jira.corp.com/rest/api/latest)',
172
172
  token: 'required - bearer token',
173
173
  path: 'required - API path to call, without beginning forward slash',
174
174
  params: 'optional - additional parameters to pass in the URI'
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.283'
4
+ VERSION = '0.5.284'
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.283
4
+ version: 0.5.284
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.