ronin-web-browser 0.1.0.rc1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1516de101df2aacce8951f9455c85a3f4338a08198d52c6ddb16c24e4a060291
4
+ data.tar.gz: 0ed436f7457fe528d88eef29b1fac014fcc2a78cfcd8afd85236b5b9397722ec
5
+ SHA512:
6
+ metadata.gz: dc8dedea382bf43c73c17045acb2e676eb7732ed1c7c206dc0f506389ac7e1c3f8be90e17364914d4ee8095fa47d7997af07c38f852d02c2155144eb050840cb
7
+ data.tar.gz: f5575a46ae98ccef5ec98058ee367a0a5710114ba6ae110012ced8cb1ad795831230cd7758c8d415d0c41ee83f3f2a347fde90d8839bc987324f6e596e3cbf6c
data/.document ADDED
@@ -0,0 +1,4 @@
1
+ lib/**/*.rb
2
+ -
3
+ ChangeLog.md
4
+ COPYING.txt
@@ -0,0 +1,51 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ ruby:
12
+ - "3.0"
13
+ - "3.1"
14
+ - "3.2"
15
+ - "3.3"
16
+ # - jruby
17
+ # - truffleruby
18
+ name: Ruby ${{ matrix.ruby }}
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Setup Chrome
22
+ uses: browser-actions/setup-chrome@latest
23
+ with:
24
+ chrome-version: stable
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+ # - name: Install dependencies
31
+ # run: |
32
+ # sudo apt update -y && \
33
+ # sudo apt install -y --no-install-recommends --no-install-suggests FIXME
34
+ - name: Install dependencies
35
+ run: bundle install --jobs 4 --retry 3
36
+ - name: Run tests
37
+ run: bundle exec rake test
38
+
39
+ # rubocop linting
40
+ rubocop:
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - uses: actions/checkout@v4
44
+ - name: Set up Ruby
45
+ uses: ruby/setup-ruby@v1
46
+ with:
47
+ ruby-version: 3.0
48
+ - name: Install dependencies
49
+ run: bundle install --jobs 4 --retry 3
50
+ - name: Run rubocop
51
+ run: bundle exec rubocop --parallel
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /coverage
2
+ /doc
3
+ /pkg
4
+ /man/*.[1-9]
5
+ /vendor/bundle
6
+ /Gemfile.lock
7
+ /.bundle
8
+ /.yardoc
9
+ .DS_Store
10
+ *.db
11
+ *.log
12
+ *.swp
13
+ *~
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour --format documentation
data/.rubocop.yml ADDED
@@ -0,0 +1,12 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ SuggestExtensions: false
4
+ TargetRubyVersion: 3.1
5
+
6
+ inherit_gem:
7
+ rubocop-ronin: rubocop.yml
8
+
9
+ # we need to test the #each method directly
10
+ Style/MapIntoArray:
11
+ Exclude:
12
+ - 'spec/cookie_file_spec.rb'
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.1
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --markup markdown --title 'ronin-web-browser Documentation' --protected
data/COPYING.txt ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/ChangeLog.md ADDED
@@ -0,0 +1,13 @@
1
+ ### 0.1.0 / 2024-XX-XX
2
+
3
+ * Initial release:
4
+ * Automates the Chrome web browser.
5
+ * Supports running in visible or headless mode.
6
+ * Supports using a HTTP proxy.
7
+ * Supports event hooks for requests and responses.
8
+ * Supports parsing, setting, loading, and saving cookies.
9
+ * Supports saving screenshots into a directory or git repository.
10
+ * Small memory footprint (~50Kb Ruby + ~600Kb headless Chrome).
11
+ * Has 81% documentation coverage.
12
+ * Has 82% test coverage.
13
+
data/Gemfile ADDED
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+ source 'https://rubygems.org'
3
+
4
+ gemspec
5
+
6
+ gem 'jruby-openssl', '~> 0.7', platforms: :jruby
7
+
8
+ # gem 'ronin-support', '~> 1.0', github: "ronin-rb/ronin-support",
9
+ # branch: 'main'
10
+
11
+ gem 'ferrum', github: 'rubycdp/ferrum'
12
+
13
+ group :development do
14
+ gem 'rake'
15
+ gem 'rubygems-tasks', '~> 0.2'
16
+
17
+ gem 'rspec', '~> 3.0'
18
+ gem 'simplecov', '~> 0.20'
19
+
20
+ gem 'kramdown', '~> 2.0'
21
+ gem 'kramdown-man', '~> 0.1'
22
+
23
+ gem 'rubocop', require: false, platform: :mri
24
+ gem 'rubocop-ronin', require: false, platform: :mri
25
+ gem 'redcarpet', platform: :mri
26
+
27
+ gem 'yard', '~> 0.9'
28
+ gem 'yard-spellcheck', require: false
29
+
30
+ gem 'dead_end', require: false, platform: :mri
31
+ gem 'sord', require: false, platform: :mri
32
+ end
data/README.md ADDED
@@ -0,0 +1,186 @@
1
+ # ronin-web-browser
2
+
3
+ [![CI](https://github.com/ronin-rb/ronin-web-browser/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-web-browser/actions/workflows/ruby.yml)
4
+ [![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-web-browser.svg)](https://codeclimate.com/github/ronin-rb/ronin-web-browser)
5
+
6
+ * [Website](https://ronin-rb.dev/)
7
+ * [Source](https://github.com/ronin-rb/ronin-web-browser)
8
+ * [Issues](https://github.com/ronin-rb/ronin-web-browser/issues)
9
+ * [Documentation](https://ronin-rb.dev/docs/ronin-web-browser/frames)
10
+ * [Discord](https://discord.gg/6WAb3PsVX9) |
11
+ [Mastodon](https://infosec.exchange/@ronin_rb)
12
+
13
+ ## Description
14
+
15
+ ronin-web-browser is a Ruby library for automating the Chrome web browser.
16
+ ronin-web-browser builds on the [ferrum] gem, and adds additional API methods
17
+ that are useful to security researchers.
18
+
19
+ ## Features
20
+
21
+ * Automates the Chrome web browser.
22
+ * Supports running in visible or headless mode.
23
+ * Supports using a HTTP proxy.
24
+ * Supports event hooks for requests and responses.
25
+ * Supports parsing, setting, loading, and saving cookies.
26
+ * Supports saving screenshots into a directory or git repository.
27
+ * Small memory footprint (~50Kb Ruby + ~600Kb headless Chrome).
28
+ * Has 81% documentation coverage.
29
+ * Has 82% test coverage.
30
+
31
+ ## Examples
32
+
33
+ Initialize a headless browser:
34
+
35
+ ```ruby
36
+ browser = Ronin::Web::Browser.new
37
+ # ...
38
+ browser.quit
39
+ ```
40
+
41
+ Initialize a visible browser:
42
+
43
+ ```ruby
44
+ browser = Ronin::Web::Browser.new(visible: true)
45
+ # ...
46
+ browser.quit
47
+ ```
48
+
49
+ Opening a temporary browser and automatically quitting:
50
+
51
+ ```ruby
52
+ Ronin::Web::Browser.open do |browser|
53
+ # ...
54
+ end
55
+ ```
56
+
57
+ Initializing the browser with a proxy:
58
+
59
+ ```ruby
60
+ browser = Ronin::Web::Browser.new(proxy: "http://proxy.example.com:8080")
61
+ # ...
62
+ ```
63
+
64
+ Go to and screenshot a webpage:
65
+
66
+ ```ruby
67
+ Ronin::Web::Browser.open do |browser|
68
+ browser.go_to("https://google.com")
69
+ browser.screenshot(path: "google.png")
70
+ end
71
+ ```
72
+
73
+ Intercept all requests:
74
+
75
+ ```ruby
76
+ browser = Ronin::Web::Browser.new
77
+ browser.every_request do |request|
78
+ puts "> #{request.method} #{request.url}"
79
+ end
80
+
81
+ browser.go_to("https://twitter.com/login")
82
+ ```
83
+
84
+ Intercept all responses for all requests:
85
+
86
+ ```ruby
87
+ browser = Ronin::Web::Browser.new
88
+ browser.every_response do |response,request|
89
+ puts "> #{request.method} #{request.url}"
90
+
91
+ puts "< HTTP #{response.status}"
92
+
93
+ response.headers.each do |name,value|
94
+ puts "< #{name}: #{value}"
95
+ end
96
+
97
+ puts response.body
98
+ end
99
+
100
+ browser.go_to("https://twitter.com/login")
101
+ ```
102
+
103
+ Evaluate JavaScript within the current page:
104
+
105
+ ```ruby
106
+ browser = Ronin::Web::Browser.new
107
+ browser.goto('https://github.com')
108
+ browser.eval_js('document.cookie')
109
+ # => "..."
110
+ ```
111
+
112
+ Load a JavaScript file into the current page as a `<script>` tag:
113
+
114
+ ```ruby
115
+ browser.load_js(url: 'https://.../file.js')
116
+ ```
117
+
118
+ Load JavaScript code into the current page as a `<script>` tag:
119
+
120
+ ```ruby
121
+ browser.load_js(content: '...')
122
+ ```
123
+
124
+ Inject JavaScript code into *every* page:
125
+
126
+ ```ruby
127
+ browser.inject_js('...')
128
+ ```
129
+
130
+ See [ferrum] for additional documentation.
131
+
132
+ ## Requirements
133
+
134
+ * [Ruby] >= 3.0.0
135
+ * [ronin-support] ~> 1.0
136
+ * [ferrum] ~> 0.13
137
+
138
+ ## Install
139
+
140
+ ```shell
141
+ $ gem install ronin-web-browser
142
+ ```
143
+
144
+ ### Gemfile
145
+
146
+ ```ruby
147
+ gem 'ronin-web-browser', '~> 0.1'
148
+ ```
149
+
150
+ ### gemspec
151
+
152
+ ```ruby
153
+ gem.add_dependency 'ronin-web-browser', '~> 0.1'
154
+ ```
155
+
156
+ ## Development
157
+
158
+ 1. [Fork It!](https://github.com/ronin-rb/ronin-web-browser/fork)
159
+ 2. Clone It!
160
+ 3. `cd ronin-web-browser/`
161
+ 4. `bundle install`
162
+ 5. `git checkout -b my_feature`
163
+ 6. Code It!
164
+ 7. `bundle exec rake spec`
165
+ 8. `git push origin my_feature`
166
+
167
+ ## License
168
+
169
+ Copyright (c) 2022-2024 Hal Brodigan (postmodern.mod3@gmail.com)
170
+
171
+ ronin-web-browser is free software: you can redistribute it and/or modify
172
+ it under the terms of the GNU Lesser General Public License as published
173
+ by the Free Software Foundation, either version 3 of the License, or
174
+ (at your option) any later version.
175
+
176
+ ronin-web-browser is distributed in the hope that it will be useful,
177
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
178
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
179
+ GNU Lesser General Public License for more details.
180
+
181
+ You should have received a copy of the GNU Lesser General Public License
182
+ along with ronin-web-browser. If not, see <https://www.gnu.org/licenses/>.
183
+
184
+ [Ruby]: https://www.ruby-lang.org
185
+ [ronin-support]: https://github.com/ronin-rb/ronin-support#readme
186
+ [ferrum]: https://github.com/rubycdp/ferrum#readme
data/Rakefile ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+ require 'rubygems'
3
+
4
+ begin
5
+ require 'bundler'
6
+ rescue LoadError => e
7
+ warn e.message
8
+ warn "Run `gem install bundler` to install Bundler"
9
+ exit(-1)
10
+ end
11
+
12
+ begin
13
+ Bundler.setup(:development)
14
+ rescue Bundler::BundlerError => e
15
+ warn e.message
16
+ warn "Run `bundle install` to install missing gems"
17
+ exit e.status_code
18
+ end
19
+
20
+ require 'rake'
21
+
22
+ require 'rubygems/tasks'
23
+ Gem::Tasks.new(sign: {checksum: true, pgp: true})
24
+
25
+ require 'rspec/core/rake_task'
26
+ RSpec::Core::RakeTask.new
27
+ task :test => :spec
28
+ task :default => :spec
29
+
30
+ require 'yard'
31
+ YARD::Rake::YardocTask.new
32
+ task :docs => :yard
33
+
34
+ require 'kramdown/man/task'
35
+ Kramdown::Man::Task.new
data/gemspec.yml ADDED
@@ -0,0 +1,28 @@
1
+ name: ronin-web-browser
2
+ summary: A Ruby library for automating the Chrome web browser
3
+ description: |
4
+ ronin-web-browser is a Ruby library for automating the Chrome web browser.
5
+ ronin-web-browser builds on the ferrum gem, and adds additional API methods
6
+ that are useful to security researchers.
7
+
8
+ license: LGPL-3.0
9
+ authors: Postmodern
10
+ email: postmodern.mod3@gmail.com
11
+ homepage: https://ronin-rb.dev/
12
+ has_yard: true
13
+
14
+ metadata:
15
+ documentation_uri: https://ronin-rb.dev/docs/ronin-web-browser
16
+ source_code_uri: https://github.com/ronin-rb/ronin-web-browser
17
+ bug_tracker_uri: https://github.com/ronin-rb/ronin-web-browser/issues
18
+ changelog_uri: https://github.com/ronin-rb/ronin-web-browser/blob/main/ChangeLog.md
19
+ rubygems_mfa_required: 'true'
20
+
21
+ required_ruby_version: ">= 3.0.0"
22
+
23
+ dependencies:
24
+ ronin-support: ~> 1.0
25
+ ferrum: ~> 0.13
26
+
27
+ development_dependencies:
28
+ bundler: ~> 2.0