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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 205b293783f7b7ba571878bd22b91df82b690ae650e25c3482ac9b05efda23d3
4
- data.tar.gz: e619b23e3c6eb018e2e24b35e16402da95e942b9c248976b67c3baa4669ea27e
3
+ metadata.gz: 9925d872d4ad9fd60b7b6bdcfae94e7dd9cfbbdf3b6940cbadabf7272262bcdf
4
+ data.tar.gz: 617935fb1c6d04fc405653444a5902e712a7f991d32125c8f61d3c409cb67495
5
5
  SHA512:
6
- metadata.gz: ca6eb9d45d2bda968d5def83735281b76da7474594c39ea544566cf55f2c94adc3b54c8696f279666026e179a42202573336709f27fd1008cbba6541f870b09b
7
- data.tar.gz: 334999ee78694482ddbc78eca1c649ecb2067559af70d16c1d5dace058a782dafcfacb3d8e7fc70514b80f65fe62e1763f6209950a04956222e9760607040108
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.474]:001 >>> PWN.help
40
+ pwn[v0.5.475]: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.474]:001 >>> PWN.help
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.474]:001 >>> PWN.help
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 = {}
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.5.474'
4
+ VERSION = '0.5.475'
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.474
4
+ version: 0.5.475
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.