ronin-db-activerecord 0.1.0.beta1

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.
Files changed (135) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.github/workflows/ruby.yml +31 -0
  4. data/.gitignore +13 -0
  5. data/.rspec +1 -0
  6. data/.ruby-version +1 -0
  7. data/.yardopts +1 -0
  8. data/COPYING.txt +165 -0
  9. data/ChangeLog.md +39 -0
  10. data/Gemfile +27 -0
  11. data/README.md +143 -0
  12. data/Rakefile +72 -0
  13. data/db/migrate/0001_create_ronin_ip_address_mac_addresses_table.rb +43 -0
  14. data/db/migrate/0002_create_ronin_vulnerabilities_table.rb +61 -0
  15. data/db/migrate/0003_create_ronin_url_schemes_table.rb +32 -0
  16. data/db/migrate/0004_create_ronin_url_query_param_names_table.rb +32 -0
  17. data/db/migrate/0005_create_ronin_user_names_table.rb +33 -0
  18. data/db/migrate/0006_create_ronin_software_vendors_table.rb +32 -0
  19. data/db/migrate/0007_create_ronin_advisories_table.rb +42 -0
  20. data/db/migrate/0008_create_ronin_host_name_ip_addresses_table.rb +43 -0
  21. data/db/migrate/0009_create_ronin_host_names_table.rb +34 -0
  22. data/db/migrate/0010_create_ronin_arches_table.rb +37 -0
  23. data/db/migrate/0011_create_ronin_email_addresses_table.rb +44 -0
  24. data/db/migrate/0012_create_ronin_oses_table.rb +36 -0
  25. data/db/migrate/0013_create_ronin_organizations_table.rb +31 -0
  26. data/db/migrate/0014_create_ronin_ip_addresses_table.rb +35 -0
  27. data/db/migrate/0015_create_ronin_os_guesses_table.rb +40 -0
  28. data/db/migrate/0016_create_ronin_url_query_params_table.rb +42 -0
  29. data/db/migrate/0017_create_ronin_passwords_table.rb +32 -0
  30. data/db/migrate/0018_create_ronin_open_ports_table.rb +46 -0
  31. data/db/migrate/0019_create_ronin_urls_table.rb +50 -0
  32. data/db/migrate/0020_create_ronin_softwares_table.rb +39 -0
  33. data/db/migrate/0021_create_ronin_mac_addresses_table.rb +33 -0
  34. data/db/migrate/0022_create_ronin_countries_table.rb +34 -0
  35. data/db/migrate/0023_create_ronin_services_table.rb +32 -0
  36. data/db/migrate/0024_create_ronin_credentials_table.rb +44 -0
  37. data/db/migrate/0025_create_ronin_ports_table.rb +33 -0
  38. data/db/migrate/0026_create_ronin_asns_table.rb +44 -0
  39. data/db/migrate/0027_create_ronin_http_query_param_names_table.rb +32 -0
  40. data/db/migrate/0028_create_ronin_http_query_params_table.rb +42 -0
  41. data/db/migrate/0029_create_ronin_http_header_names_table.rb +31 -0
  42. data/db/migrate/0030_create_ronin_http_request_headers_table.rb +41 -0
  43. data/db/migrate/0031_create_ronin_http_response_headers_table.rb +41 -0
  44. data/db/migrate/0032_create_ronin_http_requests_table.rb +41 -0
  45. data/db/migrate/0033_create_ronin_http_responses_table.rb +36 -0
  46. data/db/migrate/0034_create_ronin_service_credentials_table.rb +41 -0
  47. data/db/migrate/0035_create_ronin_web_credentials_table.rb +41 -0
  48. data/gemspec.yml +28 -0
  49. data/lib/ronin/db/address.rb +105 -0
  50. data/lib/ronin/db/advisory.rb +169 -0
  51. data/lib/ronin/db/arch.rb +160 -0
  52. data/lib/ronin/db/asn.rb +212 -0
  53. data/lib/ronin/db/credential.rb +248 -0
  54. data/lib/ronin/db/email_address.rb +225 -0
  55. data/lib/ronin/db/host_name.rb +224 -0
  56. data/lib/ronin/db/host_name_ip_address.rb +65 -0
  57. data/lib/ronin/db/http_header_name.rb +75 -0
  58. data/lib/ronin/db/http_query_param.rb +79 -0
  59. data/lib/ronin/db/http_query_param_name.rb +76 -0
  60. data/lib/ronin/db/http_request.rb +120 -0
  61. data/lib/ronin/db/http_request_header.rb +78 -0
  62. data/lib/ronin/db/http_response.rb +91 -0
  63. data/lib/ronin/db/http_response_header.rb +78 -0
  64. data/lib/ronin/db/ip_address.rb +351 -0
  65. data/lib/ronin/db/ip_address_mac_address.rb +62 -0
  66. data/lib/ronin/db/mac_address.rb +91 -0
  67. data/lib/ronin/db/migrations.rb +137 -0
  68. data/lib/ronin/db/model/has_name.rb +102 -0
  69. data/lib/ronin/db/model/has_unique_name.rb +82 -0
  70. data/lib/ronin/db/model/importable.rb +85 -0
  71. data/lib/ronin/db/model/last_scanned_at.rb +48 -0
  72. data/lib/ronin/db/model.rb +37 -0
  73. data/lib/ronin/db/models.rb +108 -0
  74. data/lib/ronin/db/open_port.rb +148 -0
  75. data/lib/ronin/db/organization.rb +50 -0
  76. data/lib/ronin/db/os.rb +183 -0
  77. data/lib/ronin/db/os_guess.rb +67 -0
  78. data/lib/ronin/db/password.rb +167 -0
  79. data/lib/ronin/db/port.rb +123 -0
  80. data/lib/ronin/db/root.rb +28 -0
  81. data/lib/ronin/db/schema_migration.rb +34 -0
  82. data/lib/ronin/db/service.rb +48 -0
  83. data/lib/ronin/db/service_credential.rb +66 -0
  84. data/lib/ronin/db/software.rb +85 -0
  85. data/lib/ronin/db/software_vendor.rb +42 -0
  86. data/lib/ronin/db/url.rb +497 -0
  87. data/lib/ronin/db/url_query_param.rb +79 -0
  88. data/lib/ronin/db/url_query_param_name.rb +76 -0
  89. data/lib/ronin/db/url_scheme.rb +80 -0
  90. data/lib/ronin/db/user_name.rb +96 -0
  91. data/lib/ronin/db/vulnerability.rb +81 -0
  92. data/lib/ronin/db/web_credential.rb +69 -0
  93. data/ronin-db-activerecord.gemspec +61 -0
  94. data/spec/advisory_spec.rb +277 -0
  95. data/spec/arch_spec.rb +228 -0
  96. data/spec/asn_spec.rb +504 -0
  97. data/spec/credential_spec.rb +362 -0
  98. data/spec/email_address_spec.rb +372 -0
  99. data/spec/host_name_ip_address_spec.rb +8 -0
  100. data/spec/host_name_spec.rb +207 -0
  101. data/spec/http_header_name_spec.rb +25 -0
  102. data/spec/http_query_param_name_spec.rb +25 -0
  103. data/spec/http_query_param_spec.rb +104 -0
  104. data/spec/http_request_header_spec.rb +72 -0
  105. data/spec/http_request_spec.rb +168 -0
  106. data/spec/http_response_header_spec.rb +74 -0
  107. data/spec/http_response_spec.rb +103 -0
  108. data/spec/ip_address_mac_addresses_spec.rb +8 -0
  109. data/spec/ip_address_spec.rb +386 -0
  110. data/spec/mac_address_spec.rb +67 -0
  111. data/spec/migrations_spec.rb +122 -0
  112. data/spec/model/has_name_spec.rb +65 -0
  113. data/spec/model/has_unique_name_spec.rb +61 -0
  114. data/spec/model/importable_spec.rb +105 -0
  115. data/spec/models_spec.rb +60 -0
  116. data/spec/open_port_spec.rb +87 -0
  117. data/spec/organization_spec.rb +10 -0
  118. data/spec/os_guess_spec.rb +43 -0
  119. data/spec/os_spec.rb +114 -0
  120. data/spec/password_spec.rb +81 -0
  121. data/spec/port_spec.rb +102 -0
  122. data/spec/schema_migration_spec.rb +8 -0
  123. data/spec/service_credential_spec.rb +43 -0
  124. data/spec/service_spec.rb +39 -0
  125. data/spec/software_spec.rb +76 -0
  126. data/spec/software_vendor_spec.rb +33 -0
  127. data/spec/spec_helper.rb +13 -0
  128. data/spec/url_query_param_name_spec.rb +25 -0
  129. data/spec/url_query_param_spec.rb +110 -0
  130. data/spec/url_scheme_spec.rb +39 -0
  131. data/spec/url_spec.rb +951 -0
  132. data/spec/user_name_spec.rb +54 -0
  133. data/spec/vulnerability_spec.rb +8 -0
  134. data/spec/web_credential_spec.rb +72 -0
  135. metadata +266 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dd392f2b9e53d8ff6b173b9cd94446c697f9599dbc2b0856be0573348b165f24
4
+ data.tar.gz: a9bf2c3f9514573d96051989add083a7b9cf21ffa6566291ed137ef18cc0f2e1
5
+ SHA512:
6
+ metadata.gz: dd1e3a5d8de8cbf215ccdca2792e009a721d5c5e58ec7a51cb9544af6143db057db4ec0ebd2ea705d1a77163c2fc1e1f8cee19a62ca5acb22108074080283227
7
+ data.tar.gz: 24c12a357299f9644036bf0bf60514b154f08f747192dcb4b2a158e8dfd0a5454795f67664b6540a118c0fb51fced982d55a57b46f041383aabab2a54afa48d5
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ -
3
+ ChangeLog.md
4
+ COPYING.txt
5
+ man/*.md
@@ -0,0 +1,31 @@
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
+ - jruby
16
+ - truffleruby
17
+ name: Ruby ${{ matrix.ruby }}
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby }}
24
+ - name: Install libsqlite3
25
+ run: |
26
+ sudo apt update -y && \
27
+ sudo apt install -y --no-install-recommends --no-install-suggests libsqlite3-dev
28
+ - name: Install dependencies
29
+ run: bundle install --jobs 4 --retry 3
30
+ - name: Run tests
31
+ run: bundle exec rake test
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/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.1
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --markup markdown --title 'ronin-db-activerecord 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,39 @@
1
+ ### 0.1.0 / 2023-XX-XX
2
+
3
+ * Initial release:
4
+ * Can be used both as a standalone library or in a web app.
5
+ * Provides common [ActiveRecord] models:
6
+ * {Ronin::DB::Advisory}
7
+ * {Ronin::DB::Arch}
8
+ * {Ronin::DB::ASN}
9
+ * {Ronin::DB::EmailAddress}
10
+ * {Ronin::DB::HostName}
11
+ * {Ronin::DB::HostNameIPAddress}
12
+ * {Ronin::DB::HTTPHeaderName}
13
+ * {Ronin::DB::HTTPQueryParam}
14
+ * {Ronin::DB::HTTPQueryParamName}
15
+ * {Ronin::DB::HTTPRequest}
16
+ * {Ronin::DB::HTTPRequestHeader}
17
+ * {Ronin::DB::HTTPResponse}
18
+ * {Ronin::DB::HTTPResponseHeader}
19
+ * {Ronin::DB::IPAddress}
20
+ * {Ronin::DB::IPAddressMACAddress}
21
+ * {Ronin::DB::MACAddress}
22
+ * {Ronin::DB::OpenPort}
23
+ * {Ronin::DB::Organization}
24
+ * {Ronin::DB::OS}
25
+ * {Ronin::DB::OSGuess}
26
+ * {Ronin::DB::Password}
27
+ * {Ronin::DB::Port}
28
+ * {Ronin::DB::Service}
29
+ * {Ronin::DB::ServiceCredential}
30
+ * {Ronin::DB::Software}
31
+ * {Ronin::DB::SoftwareVendor}
32
+ * {Ronin::DB::URL}
33
+ * {Ronin::DB::URLQueryParam}
34
+ * {Ronin::DB::URLQueryParamName}
35
+ * {Ronin::DB::URLScheme}
36
+ * {Ronin::DB::UserName}
37
+ * {Ronin::DB::Vulnerability}
38
+ * {Ronin::DB::WebCredential}
39
+
data/Gemfile ADDED
@@ -0,0 +1,27 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ gem 'sqlite3', '~> 1.0', platforms: [:mri, :truffleruby]
6
+
7
+ platform :jruby do
8
+ gem 'jruby-openssl', '~> 0.7'
9
+ gem 'activerecord-jdbcsqlite3-adapter', '~> 70.0.pre'
10
+ end
11
+
12
+ group :development do
13
+ gem 'rake'
14
+ gem 'rubygems-tasks', '~> 0.2'
15
+
16
+ gem 'rspec', '~> 3.0'
17
+ gem 'simplecov', '~> 0.20'
18
+
19
+ gem 'kramdown', '~> 2.0'
20
+ gem 'redcarpet', platform: :mri
21
+ gem 'yard', '~> 0.9'
22
+ gem 'yard-spellcheck', require: false
23
+
24
+ gem 'dead_end', require: false
25
+ gem 'sord', require: false, platform: :mri
26
+ gem 'stackprof', require: false, platform: :mri
27
+ end
data/README.md ADDED
@@ -0,0 +1,143 @@
1
+ # ronin-db-activerecord
2
+
3
+ [![CI](https://github.com/ronin-rb/ronin-db-activerecord/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-db-activerecord/actions/workflows/ruby.yml)
4
+ [![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-db-activerecord.svg)](https://codeclimate.com/github/ronin-rb/ronin-db-activerecord)
5
+
6
+ * [Website](https://ronin-rb.dev/)
7
+ * [Source](https://github.com/ronin-rb/ronin-db-activerecord)
8
+ * [Issues](https://github.com/ronin-rb/ronin-db-activerecord/issues)
9
+ * [Documentation](https://ronin-rb.dev/docs/ronin-db-activerecord/frames)
10
+ * [Discord](https://discord.gg/6WAb3PsVX9) |
11
+ [Twitter](https://twitter.com/ronin_rb) |
12
+ [Mastodon](https://infosec.exchange/@ronin_rb)
13
+
14
+ ## Description
15
+
16
+ ronin-db-activerecord contains [ActiveRecord] models and migrations for the
17
+ [Ronin Database][ronin-db].
18
+
19
+ ## Features
20
+
21
+ * Can be used both as a standalone library or in a web app.
22
+ * Provides common [ActiveRecord] models:
23
+ * {Ronin::DB::Advisory}
24
+ * {Ronin::DB::Arch}
25
+ * {Ronin::DB::ASN}
26
+ * {Ronin::DB::EmailAddress}
27
+ * {Ronin::DB::HostName}
28
+ * {Ronin::DB::HostNameIPAddress}
29
+ * {Ronin::DB::HTTPHeaderName}
30
+ * {Ronin::DB::HTTPQueryParam}
31
+ * {Ronin::DB::HTTPQueryParamName}
32
+ * {Ronin::DB::HTTPRequest}
33
+ * {Ronin::DB::HTTPRequestHeader}
34
+ * {Ronin::DB::HTTPResponse}
35
+ * {Ronin::DB::HTTPResponseHeader}
36
+ * {Ronin::DB::IPAddress}
37
+ * {Ronin::DB::IPAddressMACAddress}
38
+ * {Ronin::DB::MACAddress}
39
+ * {Ronin::DB::OpenPort}
40
+ * {Ronin::DB::Organization}
41
+ * {Ronin::DB::OS}
42
+ * {Ronin::DB::OSGuess}
43
+ * {Ronin::DB::Password}
44
+ * {Ronin::DB::Port}
45
+ * {Ronin::DB::Service}
46
+ * {Ronin::DB::ServiceCredential}
47
+ * {Ronin::DB::Software}
48
+ * {Ronin::DB::SoftwareVendor}
49
+ * {Ronin::DB::URL}
50
+ * {Ronin::DB::URLQueryParam}
51
+ * {Ronin::DB::URLQueryParamName}
52
+ * {Ronin::DB::URLScheme}
53
+ * {Ronin::DB::UserName}
54
+ * {Ronin::DB::Vulnerability}
55
+ * {Ronin::DB::WebCredential}
56
+ * Has 96% documentation coverage.
57
+ * Has 99% test coverage.
58
+
59
+ ## Examples
60
+
61
+ Create a database:
62
+
63
+ ```ruby
64
+ require 'ronin/db/migrations'
65
+
66
+ ActiveRecord::Base.establish_connection(
67
+ adapter: 'sqlite3',
68
+ database: 'path/to/db.sqlite3'
69
+ )
70
+
71
+ Ronin::DB::Migrations.up
72
+ ```
73
+
74
+ Connect to the database:
75
+
76
+ ```ruby
77
+ ActiveRecord::Base.establish_connection(
78
+ adapter: 'sqlite3',
79
+ database: 'path/to/db.sqlite3'
80
+ )
81
+
82
+ require 'ronin/db/models'
83
+ Ronin::DB::Models.connect
84
+ ```
85
+
86
+ ## Requirements
87
+
88
+ * [Ruby] >= 3.0.0
89
+ * [activerecord] ~> 7.0
90
+
91
+ ## Install
92
+
93
+ ```shell
94
+ $ gem install ronin-db-activerecord
95
+ ```
96
+
97
+ ### Gemfile
98
+
99
+ ```ruby
100
+ gem 'ronin-db-activerecord', '~> 0.1'
101
+ ```
102
+
103
+ ### gemspec
104
+
105
+ ```ruby
106
+ gem.add_dependency 'ronin-db-activerecord', '~> 0.1'
107
+ ```
108
+
109
+ ## Development
110
+
111
+ 1. [Fork It!](https://github.com/ronin-rb/ronin-db-activerecord/fork)
112
+ 2. Clone It!
113
+ 3. `cd ronin-db-activerecord/`
114
+ 4. `bundle install`
115
+ 5. `git checkout -b my_feature`
116
+ 6. Code It!
117
+ 7. `bundle exec rake spec`
118
+ 8. `git push origin my_feature`
119
+
120
+ If you want to test your changes locally, run `rake db:console` to start a
121
+ local database console.
122
+
123
+ ## License
124
+
125
+ Copyright (c) 2022 Hal Brodigan (postmodern.mod3@gmail.com)
126
+
127
+ ronin-db-activerecord is free software: you can redistribute it and/or modify
128
+ it under the terms of the GNU Lesser General Public License as published
129
+ by the Free Software Foundation, either version 3 of the License, or
130
+ (at your option) any later version.
131
+
132
+ ronin-db-activerecord is distributed in the hope that it will be useful,
133
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
134
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
135
+ GNU Lesser General Public License for more details.
136
+
137
+ You should have received a copy of the GNU Lesser General Public License
138
+ along with ronin-db-activerecord. If not, see <https://www.gnu.org/licenses/>.
139
+
140
+ [Ruby]: https://www.ruby-lang.org
141
+ [ActiveRecord]: https://guides.rubyonrails.org/active_record_basics.html
142
+ [activerecord]: https://github.com/rails/rails/tree/main/activerecord#readme
143
+ [ronin-db]: https://github.com/ronin-rb/ronin-db#readme
data/Rakefile ADDED
@@ -0,0 +1,72 @@
1
+ require 'rubygems'
2
+
3
+ begin
4
+ require 'bundler'
5
+ rescue LoadError => e
6
+ warn e.message
7
+ warn "Run `gem install bundler` to install Bundler"
8
+ exit -1
9
+ end
10
+
11
+ begin
12
+ Bundler.setup(:development)
13
+ rescue Bundler::BundlerError => e
14
+ warn e.message
15
+ warn "Run `bundle install` to install missing gems"
16
+ exit e.status_code
17
+ end
18
+
19
+ require 'rake'
20
+
21
+ require 'rubygems/tasks'
22
+ Gem::Tasks.new(sign: {checksum: true, pgp: true})
23
+
24
+ require 'rspec/core/rake_task'
25
+ RSpec::Core::RakeTask.new
26
+ task :test => :spec
27
+ task :default => :spec
28
+
29
+ require 'yard'
30
+ YARD::Rake::YardocTask.new
31
+ task :docs => :yard
32
+
33
+ file 'db/dev.sqlite3' => 'db:migrate'
34
+
35
+ namespace :db do
36
+ task :connect do
37
+ require 'active_record'
38
+ ActiveRecord::Base.establish_connection(
39
+ adapter: 'sqlite3',
40
+ database: 'db/dev.sqlite3'
41
+ )
42
+ end
43
+
44
+ desc 'Migrates the development database'
45
+ task :migrate => :connect do
46
+ lib_dir = File.expand_path('lib')
47
+ $LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
48
+
49
+ require 'ronin/db/migrations'
50
+
51
+ Ronin::DB::Migrations.up
52
+ end
53
+
54
+ desc 'Starts an interactive database console'
55
+ task :console => 'db/dev.sqlite3' do
56
+ require 'active_record'
57
+ ActiveRecord::Base.logger = Logger.new($stderr,:debug)
58
+
59
+ ActiveRecord::Base.establish_connection(
60
+ adapter: 'sqlite3',
61
+ database: 'db/dev.sqlite3'
62
+ )
63
+
64
+ require 'ronin/db/models'
65
+ Ronin::DB::Models.connect
66
+
67
+ require 'irb'
68
+ include Ronin::DB
69
+ ARGV.clear
70
+ IRB.start()
71
+ end
72
+ end
@@ -0,0 +1,43 @@
1
+ #
2
+ # ronin-db-activerecord - ActiveRecord backend for the Ronin Database.
3
+ #
4
+ # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ #
6
+ # This file is part of ronin-db-activerecord.
7
+ #
8
+ # ronin-db-activerecord is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU Lesser General Public License as published
10
+ # by the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # ronin-db-activerecord is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU Lesser General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License
19
+ # along with ronin-db-activerecord. If not, see <https://www.gnu.org/licenses/>.
20
+ #
21
+
22
+ class CreateRoninIpAddressMacAddressesTable < ActiveRecord::Migration[7.0]
23
+
24
+ def change
25
+ create_table :ronin_ip_address_mac_addresses, if_not_exists: true do |t|
26
+ t.references :ip_address, null: false,
27
+ foreign_key: {
28
+ to_table: :ronin_ip_addresses
29
+ }
30
+ t.references :mac_address, null: false,
31
+ foreign_key: {
32
+ to_table: :ronin_mac_addresses
33
+ }
34
+ t.datetime :created_at, null: false
35
+
36
+ t.index [:ip_address_id, :mac_address_id], unique: true,
37
+ name: :index_ronin_ip_address_mac_addresses_unique
38
+ t.index :ip_address_id
39
+ t.index :mac_address_id
40
+ end
41
+ end
42
+
43
+ end
@@ -0,0 +1,61 @@
1
+ #
2
+ # ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
3
+ # payload crafting functionality.
4
+ #
5
+ # Copyright (c) 2007-2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ #
7
+ # This file is part of ronin-exploits.
8
+ #
9
+ # ronin-exploits is free software: you can redistribute it and/or modify
10
+ # it under the terms of the GNU General Public License as published by
11
+ # the Free Software Foundation, either version 3 of the License, or
12
+ # (at your option) any later version.
13
+ #
14
+ # ronin-exploits is distributed in the hope that it will be useful,
15
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ # GNU General Public License for more details.
18
+ #
19
+ # You should have received a copy of the GNU General Public License
20
+ # along with ronin-exploits. If not, see <https://www.gnu.org/licenses/>
21
+ #
22
+
23
+ class CreateRoninVulnerabilitiesTable < ActiveRecord::Migration[7.0]
24
+
25
+ def change
26
+ create_table :ronin_vulnerabilities, if_not_exists: true do |t|
27
+ t.references :mac_address, null: true,
28
+ foreign_key: {
29
+ to_table: :ronin_mac_addresses
30
+ }
31
+ t.references :ip_address, null: true,
32
+ foreign_key: {
33
+ to_table: :ronin_ip_addresses
34
+ }
35
+ t.references :host_name, null: true,
36
+ foreign_key: {
37
+ to_table: :ronin_host_names
38
+ }
39
+ t.references :open_port, null: true,
40
+ foreign_key: {
41
+ to_table: :ronin_open_ports
42
+ }
43
+ t.references :url, null: true,
44
+ foreign_key: {
45
+ to_table: :ronin_urls
46
+ }
47
+ t.references :advisory, null: false,
48
+ foreign_key: {
49
+ to_table: :ronin_advisories
50
+ }
51
+
52
+ t.index :mac_address_id
53
+ t.index :ip_address_id
54
+ t.index :host_name_id
55
+ t.index :open_port_id
56
+ t.index :url_id
57
+ t.index :advisory_id
58
+ end
59
+ end
60
+
61
+ end
@@ -0,0 +1,32 @@
1
+ #
2
+ # ronin-db-activerecord - ActiveRecord backend for the Ronin Database.
3
+ #
4
+ # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ #
6
+ # This file is part of ronin-db-activerecord.
7
+ #
8
+ # ronin-db-activerecord is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU Lesser General Public License as published
10
+ # by the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # ronin-db-activerecord is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU Lesser General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License
19
+ # along with ronin-db-activerecord. If not, see <https://www.gnu.org/licenses/>.
20
+ #
21
+
22
+ class CreateRoninUrlSchemesTable < ActiveRecord::Migration[7.0]
23
+
24
+ def change
25
+ create_table :ronin_url_schemes, if_not_exists: true do |t|
26
+ t.string :name, null: false
27
+
28
+ t.index :name, unique: true
29
+ end
30
+ end
31
+
32
+ end