pwn 0.4.834 → 0.4.835

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: 3b73180eeb781bc4beafb24d1d0edb2aa282fa84ea3212e8f262cee936783f58
4
- data.tar.gz: eee0dc190a49b6fcb9ee31c57e4f72fe520f88b9f5ff2ca382ce03e80164ab40
3
+ metadata.gz: cc0f446ac633d03547678d911eb6f5d7682f17203e5590b1f2c84ccbf4ae54f1
4
+ data.tar.gz: 1e6934f82c049d923b4fefdae9f2f786f1d1ae2e33cdf28dade89e60564cdad2
5
5
  SHA512:
6
- metadata.gz: 1a05cda9748c9dc51c332f481e676d6d47016369f88bb1321abd23fa0b60576efd0a70311e2b370acb345b39ee731558ef2889f0c193be7e68fb3f0ae99984d0
7
- data.tar.gz: 74a0cb8a1b736d94029e78de10ecb8c80525890245946c2c09b38f85880d0ca2cfd201cc4170c005c224cb8757dd5ea49f5c8c5d67f36b5d2a8a5e143d1ad55b
6
+ metadata.gz: c316a236286d97239029c1118ae4c62a5e5672eb066d1f0ccb90a2e2f482edd9582e8db760fe2e9aabf982a8fd546ad3ac8fbfbca128231fedaef98e92885295
7
+ data.tar.gz: 5660df80377f88567544110300745405af1f36d90a7b579ebf51a56a4baab5397f6cd61ac2baa84fee22572898a5a5214185b585aeb111d236a6a8e89645fd2a
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.834]:001 >>> PWN.help
40
+ pwn[v0.4.835]: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.834]:001 >>> PWN.help
55
+ pwn[v0.4.835]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -19,7 +19,7 @@ module PWN
19
19
 
20
20
  private_class_method def self.valid_uri?(opts = {})
21
21
  uri = URI.parse(opts[:uri].to_s)
22
- %w[http https].include?(uri.scheme) && URI.parse(uri).host
22
+ %w[http https].include?(uri.scheme)
23
23
  rescue URI::BadURIError,
24
24
  URI::InvalidURIError,
25
25
  URI::InvalidComponentError
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.834'
4
+ VERSION = '0.4.835'
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.834
4
+ version: 0.4.835
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.