pwn 0.4.526 → 0.4.527

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: a4983cf7b88510c922dff044a69285eefcc0a54c4ad983c0ea50a65b394eb87a
4
- data.tar.gz: eccb999e2da3f8822969b399a42d6326259fecace34135050724ed4489d9e04e
3
+ metadata.gz: 97a29eb8082007674ab5011303a4ccb6897e03a99cc01201905e39a6b38e751f
4
+ data.tar.gz: d2fe796c9c3761a5d8a3e304946f590974c60bcc4c846cd0e22e727dbf705aff
5
5
  SHA512:
6
- metadata.gz: a164203055778c7a56d16f69ef43e72e0462355182b8508b7761a82b100be718a5dd040b2997e03d18b277e70ee3f8ccf0990ce815331c6ebece95a6fb200929
7
- data.tar.gz: 96ec62fcf80a95c483d351d92ddae215c46f5742b5377da82077cd418aedf32e05d3eade498fcaae5b82ecbc91d1ed338cf2084f10d708843faa34e3f5270432
6
+ metadata.gz: aa2e8b4e875882c5a8a6458aad83def7064e9fd60f40fe7ab25e84a54bbec3595e197e841ab8e89abbb778992281892f7cd2f1b52cc3ab6523f35caa8751ec33
7
+ data.tar.gz: 9a620498f22d2c08196e395f4867034e6b13c544ce8d6f7f4bb9d857d1c5ec5339beae2b789a643f2191a829a02821ac7345b10f2115e54ac305d58491b83504
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.526]:001 >>> PWN.help
40
+ pwn[v0.4.527]: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.526]:001 >>> PWN.help
55
+ pwn[v0.4.527]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -78,13 +78,13 @@ begin
78
78
 
79
79
  next if wordlist_line.match?(/^#/)
80
80
 
81
- http_methods = %i[GET HEAD POST PUT DELETE OPTIONS TRACE]
81
+ http_uri = "#{target_url}/#{CGI.escape(wordlist_line)}"
82
82
 
83
+ http_methods = %i[GET HEAD POST PUT DELETE OPTIONS TRACE]
83
84
  http_methods.each do |http_method|
84
85
  begin
85
86
  print '.'
86
87
  rest_client_resp_hash = {}
87
- http_uri = "#{target_url}/#{wordlist_line}"
88
88
  rest_client = PWN::Plugins::TransparentBrowser.open(browser_type: :rest)::Request
89
89
  response = rest_client.execute(
90
90
  method: http_method,
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.526'
4
+ VERSION = '0.4.527'
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.526
4
+ version: 0.4.527
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.