pwn 0.4.733 → 0.4.734

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: 6440be0b7c0dc86b8551df9a4b9cb2b5779924b77ffc3d6687a4872c9703b4e8
4
- data.tar.gz: 5a16d32ada65b0bb631f0238c17760f25543db8a7082d2382054bfe37009a063
3
+ metadata.gz: c5f460760589e0c081afe01205d7d24891656dbff6558679ac284487f84084bc
4
+ data.tar.gz: 56de2d97a21b51bf923510b3f58f28496655bdd371828fda5d0c1fe7fe106d6e
5
5
  SHA512:
6
- metadata.gz: 46e43c9b96e9a2d71fa1ec70fca237c71c6b1defae51d714a39b9f35603f822ac8eff72a604f2da2c84dabcd6722c2c8f683690acf89307587609550034c04ce
7
- data.tar.gz: 7e88c613bfc17b98d37d54e8b6722751a88d4b377f73eb2f300d26374d61dc91f99522c8a0e7c686ab9cba474d68cb8286c982fdc1ac355482efc33fb81e6511
6
+ metadata.gz: 7b6a29b4149b52f3b2341b4c85eff17280eb13739a4cb8ff4fa58286b1331d199711e03a8b63d89100581135b38e9271ed4e099c0305f28e1a129b3fc9a4cd6a
7
+ data.tar.gz: 9347646e9f559feb861627144722b2eb34ead3ed71d5f62a4ae88d1187d31aa5f3306188662eea797ee2cfc224573692d08e3f50159bb3076bb4717697c628a7
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.733]:001 >>> PWN.help
40
+ pwn[v0.4.734]: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.733]:001 >>> PWN.help
55
+ pwn[v0.4.734]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -30,7 +30,6 @@ module PWN
30
30
  rest_call = opts[:rest_call].to_s.scrub
31
31
  params = opts[:params]
32
32
  http_body = opts[:http_body]
33
- http_body ||= {}
34
33
  base_bd_bin_analysis_api_uri = 'https://protecode-sc.com/api'
35
34
  token = opts[:token]
36
35
 
@@ -59,7 +58,6 @@ module PWN
59
58
 
60
59
  when :post, :put
61
60
  headers = opts[:http_headers]
62
- # if http_body.key?(:multipart)
63
61
  headers ||= {
64
62
  authorization: "Bearer #{token}"
65
63
  }
@@ -70,19 +68,6 @@ module PWN
70
68
  payload: http_body,
71
69
  verify_ssl: false
72
70
  )
73
- # else
74
- # headers ||= {
75
- # content_type: content_type,
76
- # authorization: "Bearer #{token}"
77
- # }
78
- # response = rest_client.execute(
79
- # method: http_method,
80
- # url: "#{base_bd_bin_analysis_api_uri}/#{rest_call}",
81
- # headers: headers,
82
- # payload: http_body.to_json,
83
- # verify_ssl: false
84
- # )
85
- # end
86
71
  else
87
72
  raise @@logger.error("Unsupported HTTP Method #{http_method} for #{self} Plugin")
88
73
  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.733'
4
+ VERSION = '0.4.734'
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.733
4
+ version: 0.4.734
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.