pwn 0.5.474 → 0.5.475
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_data_center.rb +1 -1
- data/lib/pwn/plugins/repl.rb +1 -0
- 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: 9925d872d4ad9fd60b7b6bdcfae94e7dd9cfbbdf3b6940cbadabf7272262bcdf
|
4
|
+
data.tar.gz: 617935fb1c6d04fc405653444a5902e712a7f991d32125c8f61d3c409cb67495
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16ff0e642b1bb240f649061e58940ab33274c9ddf3ede313d1cb6a8a0cf6a867d7a670e5417a1d87439e14dc2d8683e1e6936936cae6877b6d4d6d5fac546405
|
7
|
+
data.tar.gz: e065a9f313c72510212c198836419e61cddd6d2baad2b42874046c8c5421b4cde6d2287b5a8303ad006c0bd539e04841aaae3557019bcfb4baf40f5068042094
|
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.475]: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.475]: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.475]: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:
|
@@ -483,7 +483,7 @@ module PWN
|
|
483
483
|
allowed_fields << field_key.to_s
|
484
484
|
end
|
485
485
|
|
486
|
-
reserved_fields = %i[project summary issuetype description]
|
486
|
+
reserved_fields = %i[project summary issuetype description attachment]
|
487
487
|
reserved_fields << epic_name_field_key.to_sym if epic_name_field_key
|
488
488
|
|
489
489
|
filtered_fields = {}
|
data/lib/pwn/plugins/repl.rb
CHANGED
@@ -663,6 +663,7 @@ module PWN
|
|
663
663
|
to_raw = text.split('@').last.chomp[0..8]
|
664
664
|
# If to_raw[1..-1] is hex than set to = to_raw
|
665
665
|
to = to_raw if to_raw[1..-1].match?(/^[a-fA-F0-9]{8}$/)
|
666
|
+
text.gsub!("@#{to_raw}", '')
|
666
667
|
end
|
667
668
|
puts "\nFrom: #{from}"
|
668
669
|
puts "To: #{to}"
|
data/lib/pwn/version.rb
CHANGED