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 +4 -4
- data/README.md +3 -3
- data/lib/pwn/plugins/jira_server.rb +4 -4
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c7214c462e16ffb0d089f87703477a82637fe2b6d3c8fbea74a1c84ad52de7
|
4
|
+
data.tar.gz: af25e18496a72a76efdccc3bf130c3c225ec7bd5616cad980bcb317520ea5a2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
40
|
+
pwn[v0.5.284]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](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.
|
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.
|
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.
|
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.
|
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
|
-
|
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
|
-
|
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