pwn 0.4.809 → 0.4.810

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: f3a66f4dc0df7d68e1b6e2c1514aff4642802973b5e0e9e7d082206befd69f07
4
- data.tar.gz: f9944df718d590c7a1c1b591c9f7dd2eb3fdfc1d2014905fdb8ce2e7791f48de
3
+ metadata.gz: 882c1d390d4998cf8afa29f9c2f9ef744c0f7c6119ebc7a498a0c91df4b0a3fc
4
+ data.tar.gz: a5f61eb7011a689c7549ad33cfd11bebfea98d332568478086b961a3e2abf385
5
5
  SHA512:
6
- metadata.gz: 7c05afa8cc33f4f03b289dd5f871a27070a5f24ecb6415aa393f21edd39fc57e4b1bd4baef368984944c39c648827e5ac9cb44186f120ec4198385eb303e4789
7
- data.tar.gz: 4d426e821fc40814c897be419ac3ea575121aa6cd4f52606382ed7254d17324145c87cdb7adee89dbb3f8f422d75389c1114cf1340b0cd75cb7a325727f947e0
6
+ metadata.gz: 684ab1368fc47db2cd4af7adbd988f34966937390c57990138342dc0ae085758b51e80f5d5b590094351cebd0e8eaaa0799b147ddd5ea8576d359c6f9879841b
7
+ data.tar.gz: 1c023903bf84336ff469d93d40eec8d8ddcc0e244dfc8182d5b04893883229d57d9d52a03e22f00e18c3ac51be5dd1a180c267aa21084df02053742e228af007
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.809]:001 >>> PWN.help
40
+ pwn[v0.4.810]: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.809]:001 >>> PWN.help
55
+ pwn[v0.4.810]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -10,13 +10,13 @@ module PWN
10
10
  # PWN::Plugins::DetectOS.type
11
11
 
12
12
  public_class_method def self.type
13
- return :cygwin if OS.cygwin?
14
- return :freebsd if OS.freebsd?
15
- return :linux if OS.linux?
16
- return :netbsd if OS.host_os.include?('netbsd')
17
- return :openbsd if OS.host_os.include?('openbsd')
18
- return :osx if OS.osx?
19
- return :windows if OS.windows?
13
+ :cygwin if OS.cygwin?
14
+ :freebsd if OS.freebsd?
15
+ :linux if OS.linux?
16
+ :netbsd if OS.host_os.include?('netbsd')
17
+ :openbsd if OS.host_os.include?('openbsd')
18
+ :osx if OS.osx?
19
+ :windows if OS.windows?
20
20
  rescue StandardError => e
21
21
  raise e
22
22
  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.809'
4
+ VERSION = '0.4.810'
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.809
4
+ version: 0.4.810
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.