pwn 0.4.984 → 0.4.985
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/black_duck_binary_analysis.rb +2 -2
- 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: ed13a7d551621823953ae889403c3adc33bf3775708883df68d59264c704b8d6
|
4
|
+
data.tar.gz: c64c47203af2d7de3a6a712ba31b6009f29a995c093ff44f412419f300431f1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb8706639d3bdacfac16917069a75946822de571995f9fc6130cb0150702c2c00ee0130fdb2332a59af2f3d2dbbdc5742cf3d90eda3934cab83becee689dc989
|
7
|
+
data.tar.gz: 160724cfa82a278440c81ba84530fec670a091bd9d2a44071cc675571be025978687844699c28d75fcc7a8e3bdd44924150f88f97bd089a280b2622760388308
|
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.4.
|
40
|
+
pwn[v0.4.985]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.3.0@pwn
|
|
52
52
|
$ gem uninstall --all --executables pwn
|
53
53
|
$ gem install --verbose pwn
|
54
54
|
$ pwn
|
55
|
-
pwn[v0.4.
|
55
|
+
pwn[v0.4.985]: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.3.0@pwn
|
|
62
62
|
$ rvmsudo gem uninstall --all --executables pwn
|
63
63
|
$ rvmsudo gem install --verbose pwn
|
64
64
|
$ pwn
|
65
|
-
pwn[v0.4.
|
65
|
+
pwn[v0.4.985]: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:
|
@@ -144,7 +144,7 @@ module PWN
|
|
144
144
|
# callback_url: 'optional - callback url',
|
145
145
|
# scan_infoleak: 'optional - scan infoleak (defaults to true)',
|
146
146
|
# code_analysis: 'optional - code analysis (defaults to true)',
|
147
|
-
# scan_code_familiarity: 'optional - scan code familiarity (defaults to
|
147
|
+
# scan_code_familiarity: 'optional - scan code familiarity (defaults to false)',
|
148
148
|
# version: 'optional - version',
|
149
149
|
# product_id: 'optional - product id'
|
150
150
|
# )
|
@@ -162,7 +162,7 @@ module PWN
|
|
162
162
|
callback_url = opts[:callback_url]
|
163
163
|
scan_infoleak = false if opts[:scan_infoleak] ||= true
|
164
164
|
code_analysis = false if opts[:code_analysis] ||= true
|
165
|
-
scan_code_familiarity = false if opts[:scan_code_familiarity] ||=
|
165
|
+
scan_code_familiarity = false if opts[:scan_code_familiarity] ||= false
|
166
166
|
version = opts[:version]
|
167
167
|
product_id = opts[:product_id]
|
168
168
|
|
data/lib/pwn/version.rb
CHANGED