pwn 0.4.610 → 0.4.611
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 +4 -4
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/lib/pwn/plugins/transparent_browser.rb +8 -4
- data/lib/pwn/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97a6644a4c45f3efc403ac5ce4c953e671f857d7ae4647a5afc47eab167b3da1
|
|
4
|
+
data.tar.gz: 4c1a72bdb780b233920c410ecf7af4890a59414ac14be849bce86a2807eb6244
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff0969f70275f3d94541d8027454e3f7a42b0924b6a8ef9ac955002fc6c531a1423b509d498fecb81891ca2ee92f12efb178eca57b1033455c6d7ffb3f1d7ec8
|
|
7
|
+
data.tar.gz: 0eda8851ef234cbbc89360b426c2678ca17a491f64eb5c4854b20f5a3c2e7c6aa995aa2b80830fd2c95b9baf430c1b24ec96099043d41ffef0387913a83b4c59
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.0@pwn
|
|
|
37
37
|
$ rvm list gemsets
|
|
38
38
|
$ gem install --verbose pwn
|
|
39
39
|
$ pwn
|
|
40
|
-
pwn[v0.4.
|
|
40
|
+
pwn[v0.4.611]:001 >>> PWN.help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.0@pwn
|
|
|
52
52
|
$ gem uninstall --all --executables pwn
|
|
53
53
|
$ gem install --verbose pwn
|
|
54
54
|
$ pwn
|
|
55
|
-
pwn[v0.4.
|
|
55
|
+
pwn[v0.4.611]:001 >>> PWN.help
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
|
|
@@ -96,7 +96,8 @@ module PWN
|
|
|
96
96
|
args.push('--devtools') if with_devtools
|
|
97
97
|
options = Selenium::WebDriver::Firefox::Options.new(args: args, accept_insecure_certs: true)
|
|
98
98
|
options.profile = this_profile
|
|
99
|
-
driver = Selenium::WebDriver.for(:firefox, capabilities: options)
|
|
99
|
+
# driver = Selenium::WebDriver.for(:firefox, capabilities: options)
|
|
100
|
+
driver = Selenium::WebDriver.for(:firefox, options: options)
|
|
100
101
|
this_browser = Watir::Browser.new(driver)
|
|
101
102
|
|
|
102
103
|
when :chrome
|
|
@@ -124,7 +125,8 @@ module PWN
|
|
|
124
125
|
)
|
|
125
126
|
|
|
126
127
|
options.profile = this_profile
|
|
127
|
-
driver = Selenium::WebDriver.for(:chrome, capabilities: options)
|
|
128
|
+
# driver = Selenium::WebDriver.for(:chrome, capabilities: options)
|
|
129
|
+
driver = Selenium::WebDriver.for(:chrome, options: options)
|
|
128
130
|
this_browser = Watir::Browser.new(driver)
|
|
129
131
|
|
|
130
132
|
when :headless, :headless_firefox
|
|
@@ -181,7 +183,8 @@ module PWN
|
|
|
181
183
|
|
|
182
184
|
options = Selenium::WebDriver::Firefox::Options.new(args: ['-headless'], accept_insecure_certs: true)
|
|
183
185
|
options.profile = this_profile
|
|
184
|
-
driver = Selenium::WebDriver.for(:firefox, capabilities: options)
|
|
186
|
+
# driver = Selenium::WebDriver.for(:firefox, capabilities: options)
|
|
187
|
+
driver = Selenium::WebDriver.for(:firefox, options: options)
|
|
185
188
|
this_browser = Watir::Browser.new(driver)
|
|
186
189
|
|
|
187
190
|
when :headless_chrome
|
|
@@ -205,7 +208,8 @@ module PWN
|
|
|
205
208
|
)
|
|
206
209
|
|
|
207
210
|
options.profile = this_profile
|
|
208
|
-
driver = Selenium::WebDriver.for(:chrome, capabilities: options)
|
|
211
|
+
# driver = Selenium::WebDriver.for(:chrome, capabilities: options)
|
|
212
|
+
driver = Selenium::WebDriver.for(:chrome, options: options)
|
|
209
213
|
this_browser = Watir::Browser.new(driver)
|
|
210
214
|
|
|
211
215
|
when :rest
|
data/lib/pwn/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pwn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.611
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 0day Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -730,14 +730,14 @@ dependencies:
|
|
|
730
730
|
requirements:
|
|
731
731
|
- - '='
|
|
732
732
|
- !ruby/object:Gem::Version
|
|
733
|
-
version: 1.
|
|
733
|
+
version: 1.45.1
|
|
734
734
|
type: :runtime
|
|
735
735
|
prerelease: false
|
|
736
736
|
version_requirements: !ruby/object:Gem::Requirement
|
|
737
737
|
requirements:
|
|
738
738
|
- - '='
|
|
739
739
|
- !ruby/object:Gem::Version
|
|
740
|
-
version: 1.
|
|
740
|
+
version: 1.45.1
|
|
741
741
|
- !ruby/object:Gem::Dependency
|
|
742
742
|
name: rubocop-rake
|
|
743
743
|
requirement: !ruby/object:Gem::Requirement
|