pwn 0.4.716 → 0.4.717

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: '0249d1b65b57936b80399b3d5676bfd6729da8d29e5da4d0a1385e06e81a100c'
4
- data.tar.gz: 3eb456af567655ff485238033d3b409dde6a0d36bd82c2c709bad908f0bfa9bf
3
+ metadata.gz: 35af294fa75934846aa2fd969d52c4ba798e147c4620bcfcbd930fef4f74ef6e
4
+ data.tar.gz: c769255914a70264605782b8ff3ef1f6576e7fdcd15f42b9e8bb09f81603ec46
5
5
  SHA512:
6
- metadata.gz: 69d5b29665d3cd99dd584fdb0ad96559941deb73321e63f8ff5a5c312965bc86bf61ee809592450c117a112f5a0376d6207f4c096d8a717d320cbc5bfa5172f5
7
- data.tar.gz: e799946fdc810711efc928440a1c0f5e031e17f9c5d7e5c598652e2378d3cb5beecd9426b8af9438752ea7e1d4bc37d321993833ac68ec135d4d243043430adf
6
+ metadata.gz: bcbd6a30260ec0189251de231e7471800633819c857d9dba50f2fa901f98cc9e234fb6e1c0cafe5d1e3701daee945d025f7f42c456df85654cc856c1d4c8c9cd
7
+ data.tar.gz: 97e336fd06e723d534ad1d300ad2b360349e11d362090aed591d894725875eb8ec600101b2f68ef2f6af341a092b46b3d3b877b527b8c29afea982147b14cf5f
data/Gemfile CHANGED
@@ -11,7 +11,7 @@ gemspec
11
11
  # In some circumstances custom flags are passed to gems in order
12
12
  # to build appropriately. Defer to ./reinstall_pwn_gemset.sh
13
13
  # to review these custom flags (e.g. pg, serialport, etc).
14
- gem 'activesupport', '7.0.4.3'
14
+ gem 'activesupport', '7.0.5'
15
15
  gem 'anemone', '0.7.2'
16
16
  gem 'authy', '3.0.1'
17
17
  gem 'aws-sdk', '3.1.0'
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.716]:001 >>> PWN.help
40
+ pwn[v0.4.717]: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.2.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.716]:001 >>> PWN.help
55
+ pwn[v0.4.717]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -28,8 +28,8 @@ OptionParser.new do |options|
28
28
  opts[:results_root] = r
29
29
  end
30
30
 
31
- options.on('-N', '--no-script', '<Optional - Exclude Nmap Scripts>') do |n|
32
- opts[:no_script] = n
31
+ options.on('-S', '--stop-nse', '<Optional - Disable Nmap Scripting Engine>') do |n|
32
+ opts[:stop_nse] = n
33
33
  end
34
34
 
35
35
  options.on('-T', '--tor', '<Optional - Source Scans from Tor Nodes>') do |t|
@@ -64,8 +64,8 @@ File.new(exclude_file, 'w') unless File.exist?(exclude_file)
64
64
  interface = opts[:interface]
65
65
  interface ||= 'eth0'
66
66
 
67
- no_script = true if opts[:no_script]
68
- no_script ||= false
67
+ stop_nse = true if opts[:stop_nse]
68
+ stop_nse ||= false
69
69
 
70
70
  with_tor = true if opts[:with_tor]
71
71
  with_tor ||= false
@@ -258,7 +258,7 @@ begin
258
258
  # retransmission attempts on filtered ports.
259
259
  PWN::Plugins::NmapIt.port_scan do |nmap|
260
260
  nmap.proxies = proxy if with_tor
261
- unless no_script
261
+ unless stop_nse
262
262
  nmap.default_script = true
263
263
  nmap.update_scriptdb = true
264
264
  end
@@ -305,7 +305,7 @@ begin
305
305
  # retransmission attempts on filtered ports.
306
306
  PWN::Plugins::NmapIt.port_scan do |nmap|
307
307
  nmap.proxies = proxy if with_tor
308
- unless no_script
308
+ unless stop_nse
309
309
  nmap.default_script = true
310
310
  nmap.update_scriptdb = true
311
311
  end
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.716'
4
+ VERSION = '0.4.717'
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.716
4
+ version: 0.4.717
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.4.3
19
+ version: 7.0.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 7.0.4.3
26
+ version: 7.0.5
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: anemone
29
29
  requirement: !ruby/object:Gem::Requirement