pwn 0.4.789 → 0.4.790

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b231f48ef4272e0ce8d8b75621f4bcad6eccb10cbd408e3771351b9dfb2d1e86
4
- data.tar.gz: 4d94b47564b8a5540662276ab3c92061e15d108575ad3e2b8423579cf247f734
3
+ metadata.gz: 4a2c2df22a7886fd98bce3ffccc08a5aed829527c96858f6e8b292c3a92d7ab8
4
+ data.tar.gz: b0c368ccf859bef431498de6e2e98d91547c211ab840c79d8bae39e80d742dae
5
5
  SHA512:
6
- metadata.gz: 7d41cd1d35316eac179c58acfd0e4bdc240be8d95b5255d246f8a5067c38795ce559f99dcbb3b7561656e622d402b745c742f364733b63ef8926b273e39c9630
7
- data.tar.gz: f5176835ac69cf4aac341cdf334b09d8899884feba00d12f0e33a3cfcf6d0e2a1716408843535a4050702daf1f2d4da481cdb88b4821b11b1c21bc2a05bb35ba
6
+ metadata.gz: b8a8c0029131da987f8657f2ee1c3a4d993a48556cfc06db0588b9a7c85a0a98cd1efcf911893b69628874a3a48f5c6c82786d89f416088a530a8825e98fc817
7
+ data.tar.gz: b625e08f7aacd068fa1fcd0d3cfad56efe00320a6fb5441a2a4260aa463b552cf97b3373c91048463a9354a7a082fd009b2de99d9daac1330af299c4d1268cf0
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.789]:001 >>> PWN.help
40
+ pwn[v0.4.790]: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.2.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.789]:001 >>> PWN.help
55
+ pwn[v0.4.790]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
data/bin/pwn_bdba_scan CHANGED
@@ -102,7 +102,7 @@ begin
102
102
  break if scan_progress_resp[:products].none? { |p| p[:status] == 'B' }
103
103
  end
104
104
 
105
- product_id = scan_progress_resp[:products].find { |p| p[:name] == File.basename(CGI.escape(target_file)) }[:product_id]
105
+ product_id = scan_progress_resp[:products].find { |p| p[:name] == CGI.escape(File.basename(target_file)) }[:product_id]
106
106
 
107
107
  scan_report_resp = PWN::Plugins::BlackDuckBinaryAnalysis.generate_product_report(
108
108
  token: token,
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'cgi'
3
4
  require 'json'
4
5
  require 'securerandom'
5
6
  require 'tty-spinner'
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.4.789'
4
+ VERSION = '0.4.790'
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.4.789
4
+ version: 0.4.790
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.