pwn 0.4.913 → 0.4.914

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: 06eb290e6815836d32fd82eb221b504737132af413361894777a335b99fd3de8
4
- data.tar.gz: ff7fa34bce159e5cde4a9555bcc06a71731205490ac39fde4f7ad8bbf6cd5ba9
3
+ metadata.gz: 67ef02e3ea21442acbae59a5db889e0424c140856f5801fc66133896a5c42301
4
+ data.tar.gz: d24d266bc8e66e576ed84185fd8bf175e01d424d61ebf3202abd06da61aa7d56
5
5
  SHA512:
6
- metadata.gz: 46b108ac226118e4e31076dd22616263f7e2336e1f6ccbf1647090f9d2702daba563c0e74659eae1fc846dc95b45fc32a1de1312d5e523db8f06678d6f7b5979
7
- data.tar.gz: e865995a350a2db906d38e21d2e83ef7ef35f6df7ee5b73c9bba6dd6897204769c31530b3af1e4e401d6852534596cf30db44e5544af8d8608c35cd90ff03940
6
+ metadata.gz: 0f8a298d7d5ae45448f906d6bc836221d398795d4a133a54091c167d136062d11cbc7c3628246766f354db29a7877ec57c96f5bc82fc1a372739de582f0198d5
7
+ data.tar.gz: eb6cf541958fdcdb8f5c4ccb1e8728f85665e5b82f5efc742f99ae2ce75a24dfaa937ece93b6881a85511dbb02d6dd98ed599f6990c26cd38fa144d39b010da0
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.913]:001 >>> PWN.help
40
+ pwn[v0.4.914]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  If you're using a multi-user install of RVM do:
@@ -48,7 +48,7 @@ $ rvm use ruby-3.2.2@pwn
48
48
  $ rvm list gemsets
49
49
  $ rvmsudo gem install --verbose pwn
50
50
  $ pwn
51
- pwn[v0.4.913]:001 >>> PWN.help
51
+ pwn[v0.4.914]:001 >>> PWN.help
52
52
  ```
53
53
 
54
54
  [![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -63,7 +63,7 @@ $ rvm use ruby-3.2.2@pwn
63
63
  $ gem uninstall --all --executables pwn
64
64
  $ gem install --verbose pwn
65
65
  $ pwn
66
- pwn[v0.4.913]:001 >>> PWN.help
66
+ pwn[v0.4.914]:001 >>> PWN.help
67
67
  ```
68
68
 
69
69
  If you're using a multi-user install of RVM do:
@@ -73,7 +73,7 @@ $ rvm use ruby-3.2.2@pwn
73
73
  $ rvmsudo gem uninstall --all --executables pwn
74
74
  $ rvmsudo gem install --verbose pwn
75
75
  $ pwn
76
- pwn[v0.4.913]:001 >>> PWN.help
76
+ pwn[v0.4.914]:001 >>> PWN.help
77
77
  ```
78
78
 
79
79
 
data/bin/pwn_bdba_groups CHANGED
@@ -23,7 +23,7 @@ OptionParser.new do |options|
23
23
  opts[:list_group_name] = l
24
24
  end
25
25
 
26
- options.on('-pID', '--parent-group-ID=ID', '<Optional - Black Duck Binary Analysis Parent Group ID to Associate with Group>') do |p|
26
+ options.on('-pID', '--parent-group-id=ID', '<Optional - Black Duck Binary Analysis Parent Group ID to Associate with Group>') do |p|
27
27
  opts[:parent_group_id] = p
28
28
  end
29
29
  end.parse!
data/bin/pwn_bdba_scan CHANGED
@@ -110,7 +110,8 @@ begin
110
110
  # Cancel queued scan if it's been queued for more than 90 minutes
111
111
  if scan_progress_busy_duration > queue_timeout.to_i
112
112
  abort_total += 1
113
- puts "Scan Queued for More than #{queue_timeout} Seconds. Aborting and Re-Queuing."
113
+ puts "Scan Queued for More than #{queue_timeout} Seconds."
114
+ puts "Aborting and Re-Queuing Attempt #{abort_total} of #{scan_attempts}..."
114
115
  scan_progress_resp[:products].select { |p| p[:status] == 'B' }.each do |p|
115
116
  puts "Abort Queued Scan: #{p[:name]}"
116
117
  PWN::Plugins::BlackDuckBinaryAnalysis.abort_product_scan(
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.913'
4
+ VERSION = '0.4.914'
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.913
4
+ version: 0.4.914
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.