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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e128c5ea69d2aaf8374d292b60ce8c6669549cb90f81e6645d7fa30ad16e411c
4
- data.tar.gz: fc0fc81edeba79c504a2a147103353af158351eaa7b24d565352c17825b53197
3
+ metadata.gz: ed13a7d551621823953ae889403c3adc33bf3775708883df68d59264c704b8d6
4
+ data.tar.gz: c64c47203af2d7de3a6a712ba31b6009f29a995c093ff44f412419f300431f1a
5
5
  SHA512:
6
- metadata.gz: ec8ac5586dd3821594201964bc6260d2ac9121972a4c29f240cacba38f92f2892d700e61df7e133139950115c71aa547a0fabfbd45144053caa9cb38e3b5b2df
7
- data.tar.gz: 577b193c9a0c4f8c3b8ef5ebaa1419e18b5b102974a8b92a40ce271f4e85ea8acf3dce94286733fbaa9cb723dfaaaaad88a70235f9990e1a75ef3d6346314667
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.984]:001 >>> PWN.help
40
+ pwn[v0.4.985]: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.3.0@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.984]:001 >>> PWN.help
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.984]:001 >>> PWN.help
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 true)',
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] ||= true
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.4.984'
4
+ VERSION = '0.4.985'
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.984
4
+ version: 0.4.985
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.