pwn 0.4.857 → 0.4.858

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fcfa3ae96c3d540922b6b6f18b9dc7440d02121266561241e753c161ccc10ceb
4
- data.tar.gz: b5a820ca67652d3e95f73981b48f9bff1b03808d02e6a74338529204ef3cbcd1
3
+ metadata.gz: dd95b987eb8392bf24b746113a9434e62fec82060f8e2efe934a3507efd4b04b
4
+ data.tar.gz: b9478f68b29f1c115e7514ac3bc610db3b5c579b0f455302087b1a9e26ccce10
5
5
  SHA512:
6
- metadata.gz: 73f5c6ffc52046512a783c08b7787e834be2bb8968abb833acb2e616935a65189a18730881d38f0124b5d2ce30a308ddaa2273f23c681d5104820139bf783620
7
- data.tar.gz: a77686ec13fba65cb0f60d42886182f1b6b65b1922bf692aa1e0d2190a52bce2e9063c81bf30a9bde28b5117ba7425927f68c74093027970e9755e8a6e2329e5
6
+ metadata.gz: e87be261070a3095db250ca8613d8efd4774cbfe7a5c691a975502fb9016a0664e3fe10bd0958e28528deae05bd60465dd5a1d4a3e8b25c17420c30bf8e28a89
7
+ data.tar.gz: 394f68f224193a595df3c430beed0e37635f4e6a111a8e7bf3a683091099b0a0b5d04c3db6476705b03f00f326e8b40287baa18a429ee503b8cce4997aba7a65
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.857]:001 >>> PWN.help
40
+ pwn[v0.4.858]: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.857]:001 >>> PWN.help
55
+ pwn[v0.4.858]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
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.857'
4
+ VERSION = '0.4.858'
5
5
  end
@@ -81,7 +81,7 @@ module PWN
81
81
  # programs_arr: 'required - array of hashes returned from #get_bounty_programs method',
82
82
  # browser_opts: 'optional - opts supported by PWN::Plugins::TransparentBrowser.open method',
83
83
  # name: 'optional - name of burp target config file (defaults to ALL)',
84
- # path: 'optional - path to save burp target config files (defaults to "./burp_target_config_file-NAME.json"))'
84
+ # root_dir: 'optional - directory to save burp target config files (defaults to "./"))'
85
85
  # )
86
86
 
87
87
  public_class_method def self.save_burp_target_config_file(opts = {})
@@ -96,13 +96,14 @@ module PWN
96
96
  browser_opts[:browser_type] = :rest
97
97
 
98
98
  name = opts[:name]
99
- path = opts[:path]
99
+ root_dir = opts[:root_dir]
100
100
 
101
101
  rest_obj = PWN::Plugins::TransparentBrowser.open(browser_opts)
102
102
  rest_client = rest_obj[:browser]::Request
103
103
 
104
104
  if name
105
- path = "./burp_target_config_file-#{name}.json" if opts[:path].nil?
105
+ path = "./burp_target_config_file-#{name}.json" if opts[:root_dir].nil?
106
+ path = "#{root_dir}/burp_target_config_file-#{name}.json" unless opts[:root_dir].nil?
106
107
  burp_download_link = programs_arr.select do |program|
107
108
  program[:name] == name
108
109
  end.first[:burp_target_config]
@@ -121,7 +122,8 @@ module PWN
121
122
  begin
122
123
  name = program[:name]
123
124
  burp_download_link = program[:burp_target_config]
124
- path = "./burp_target_config_file-#{name}.json" if opts[:path].nil?
125
+ path = "./burp_target_config_file-#{name}.json" if opts[:root_dir].nil?
126
+ path = "#{root_dir}/burp_target_config_file-#{name}.json" unless opts[:root_dir].nil?
125
127
 
126
128
  resp = rest_client.execute(
127
129
  method: :get,
@@ -235,7 +237,7 @@ module PWN
235
237
  programs_arr: 'required - array of hashes returned from #get_bounty_programs method',
236
238
  browser_opts: 'optional - opts supported by PWN::Plugins::TransparentBrowser.open method',
237
239
  name: 'optional - name of burp target config file (defaults to ALL)',
238
- path: 'optional - path to save burp target config files (defaults to \"./burp_target_config_file-NAME.json\"))'
240
+ root_dir: 'optional - directory to save burp target config files (defaults to \"./\"))'
239
241
  )
240
242
 
241
243
  browser_obj = #{self}.login(
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.857
4
+ version: 0.4.858
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.