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 +4 -4
- data/README.md +4 -4
- data/bin/pwn_bdba_groups +1 -1
- data/bin/pwn_bdba_scan +2 -1
- 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: 67ef02e3ea21442acbae59a5db889e0424c140856f5801fc66133896a5c42301
|
|
4
|
+
data.tar.gz: d24d266bc8e66e576ed84185fd8bf175e01d424d61ebf3202abd06da61aa7d56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
51
|
+
pwn[v0.4.914]:001 >>> PWN.help
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
[](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.
|
|
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.
|
|
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-
|
|
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.
|
|
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