pwn 0.4.491 → 0.4.492

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: 41377231d1467a4e73bc6e8ec556281b64cd314895d44985fe0bd5cd91fd3c81
4
- data.tar.gz: 21faa2700771c978f13ddc190bece542979dd635b27a4512280a44f13c65fc25
3
+ metadata.gz: c322dc457a88e28d2bd2b87830653da3e167a7c25c7cea9b5df5d8e8ae7a1ae3
4
+ data.tar.gz: 770907db6691c4f639a40d497e6084952c554e1289cad3ba02b2bd37d4136134
5
5
  SHA512:
6
- metadata.gz: 0f57e0cfe935b55f9f6f612a6abd13a19a2a1a9d87310530779333c074301415be5f67ec3a1e9b5404e16a00a24a47fa37f06e508545e9b41702085ec38f0a27
7
- data.tar.gz: 683937fbe729d6780e20eba920c97b0f8019e16f4392a0d6843343c5e486d328ac2955a555cbdf3ec15cee24404647c30c816585ec048e32f6e9109bcbb92430
6
+ metadata.gz: abfc7d67a3cf2b18c25e771d648fb9c6f7c1ab6483a96958ff45b962b55612c7961f0ab094abbd7b272a2dcd1aa6b3a43dc00ff9ae6b1d33cff9ac3af53a6303
7
+ data.tar.gz: b73297289b1cfb8feb41381b66e93c9b22e3027b39cbb502ffc79f20d850fbebff4eb134fea232639e9b93f94cf571143a2fd7454d567ad77689aaeb017620a3
data/Gemfile CHANGED
@@ -18,7 +18,7 @@ gem 'aws-sdk', '3.1.0'
18
18
  gem 'bettercap', '1.6.2'
19
19
  gem 'brakeman', '5.2.3'
20
20
  gem 'bson', '4.15.0'
21
- gem 'bundler', '>=2.3.15'
21
+ gem 'bundler', '>=2.3.16'
22
22
  gem 'bundler-audit', '0.9.1'
23
23
  gem 'bunny', '2.19.0'
24
24
  gem 'colorize', '0.8.1'
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.1.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.491]:001 >>> PWN.help
40
+ pwn[v0.4.492]: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.1.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.491]:001 >>> PWN.help
55
+ pwn[v0.4.492]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -67,7 +67,7 @@ OptionParser.new do |options|
67
67
  opts[:starttime] = t
68
68
  end
69
69
 
70
- options.on('-rRRULES', '--rrules=RRULES', '<Optional - For One-Time Scans, the Starting Time and Date for the Scan (Defaults to "FREQ=ONETIME;INTERVAL=0;BYDAY=null")>') do |r|
70
+ options.on('-rRRULES', '--rrules=RRULES', '<Optional - For One-Time Scans, the Starting Time and Date for the Scan (Defaults to "FREQ=null;INTERVAL=0;BYDAY=null")>') do |r|
71
71
  opts[:rrules] = r
72
72
  end
73
73
 
@@ -147,7 +147,7 @@ begin
147
147
  starttime ||= Time.now.strftime('%Y%m%dT%H%M%S')
148
148
 
149
149
  rrules = opts[:rrules]
150
- rrules ||= 'FREQ=ONETIME;INTERVAL=0;BYDAY=null'
150
+ rrules ||= 'FREQ=null;INTERVAL=0;BYDAY=null'
151
151
 
152
152
  timezone = opts[:timezone]
153
153
  timezone ||= 'UTC'
@@ -217,9 +217,7 @@ begin
217
217
  nessus_obj: nessus_obj,
218
218
  name: scan_template_name
219
219
  )
220
- puts scan_template.inspect
221
220
  scan_template_uuid = scan_template[:uuid]
222
- puts scan_template_uuid
223
221
 
224
222
  # Part 2: Populate settings object from options passed to driver
225
223
  settings = {}
@@ -431,13 +431,13 @@ module PWN
431
431
 
432
432
  public_class_method def self.create_scan(opts = {})
433
433
  nessus_obj = opts[:nessus_obj]
434
- uuid = opts[:scan_template_uuid]
434
+ scan_template_uuid = opts[:scan_template_uuid]
435
435
  settings = opts[:settings]
436
436
  credentials = opts[:credentials]
437
437
  plugins = opts[:plugins]
438
438
 
439
439
  http_body = {
440
- uuid: uuid,
440
+ uuid: scan_template_uuid,
441
441
  settings: settings,
442
442
  credentials: credentials,
443
443
  plugins: plugins
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.491'
4
+ VERSION = '0.4.492'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.491
4
+ version: 0.4.492
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-14 00:00:00.000000000 Z
11
+ date: 2022-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: 2.3.15
117
+ version: 2.3.16
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
- version: 2.3.15
124
+ version: 2.3.16
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: bundler-audit
127
127
  requirement: !ruby/object:Gem::Requirement