pwn 0.4.984 → 0.4.986

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: e128c5ea69d2aaf8374d292b60ce8c6669549cb90f81e6645d7fa30ad16e411c
4
- data.tar.gz: fc0fc81edeba79c504a2a147103353af158351eaa7b24d565352c17825b53197
3
+ metadata.gz: 8c8bed00aa0f9b8f43b66b1a55bff4c5a991a84e108a65b97bf0d7f02b3520aa
4
+ data.tar.gz: 6b088b5cbfdf5a89e7cec69e64d4833183b851b7259b4dafe924034cb39fd5f4
5
5
  SHA512:
6
- metadata.gz: ec8ac5586dd3821594201964bc6260d2ac9121972a4c29f240cacba38f92f2892d700e61df7e133139950115c71aa547a0fabfbd45144053caa9cb38e3b5b2df
7
- data.tar.gz: 577b193c9a0c4f8c3b8ef5ebaa1419e18b5b102974a8b92a40ce271f4e85ea8acf3dce94286733fbaa9cb723dfaaaaad88a70235f9990e1a75ef3d6346314667
6
+ metadata.gz: a5ec35a54f4c12a302180a38486a78bb60fcf76d6b4122a44418a1b290e36ced65feabcd2e8502b77651810917e1eac1f5161653e0eb9553c668989a64d9ba2b
7
+ data.tar.gz: a62081412cd54186abf83865f475d574bc5308ded947214cd5aa79afe1762c97eaee403bdb092e405d6ddd8d6477cf1e7278de6026391767b8e91ec0bc3b4007
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.986]: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.986]: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.986]: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.986'
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.986
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.