-
Notifications
You must be signed in to change notification settings - Fork 191
/
Gemfile
265 lines (194 loc) · 7.18 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.8.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Use ruby-terser as compressor for JavaScript assets
gem 'terser', '~> 1.1'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'mini_racer', platforms: :ruby
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0'
# Cache-friendly, client-side local time
gem 'local_time', '>= 2.0.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.12.0', require: false
# ---------------------------------------------------- Dradis Community Edition
gem 'bootstrap', '~> 5.2.3'
gem 'jquery-rails'
gem 'jquery-fileupload-rails', '~> 0.3.4'
gem 'jquery-hotkeys-rails'
# Sortable lists
gem 'acts_as_list', '~> 0.7.5'
# Organize Node tree
gem 'acts_as_tree', '~> 2.9.1'
gem 'builder'
gem 'differ', '~> 0.1.2'
# HTML processing filters and utilities
gem 'html-pipeline'
gem 'liquid'
gem 'kaminari', '~> 1.2.1'
gem 'paper_trail', '~> 12.2.0'
# gem 'rails_autolink', '~> 1.1'
gem 'record_tag_helper'
gem 'rubyzip', '>= 1.2.2'
gem 'thor', '~> 1.2.1'
# Ruby dependency, version specified here due to CVE-2023-28756
gem 'time', '>= 0.2.2'
gem 'font-awesome-sass', '~> 6.4.0'
gem 'importmap-rails', '~> 1.2'
gem 'sprockets-rails', '>= 3.0.0'
# ------------------------------------------------------ With native extensions
# These require native extensions.
# Ensure Traveling Ruby provides an appropriate version before bumping.
# See:
# http://traveling-ruby.s3-us-west-2.amazonaws.com/list.html
# Use Active Model has_secure_password
# Password digests
gem 'bcrypt', '3.1.12'
# Required by Rails (uglifier and activesupport)
gem 'json', '2.3.0'
# XML manipulation
gem 'nokogiri', '>= 1.16.5'
# MySQL backend
# gem 'mysql2', '~> 0.5.1'
# actionpack depends on rails-html-sanitizer, which has an XSS vulnerability
# before 1.0.4, so make sure we're using 1.0.4+:
# see https://github.com/rails/rails-html-sanitizer/commit/f3ba1a839a
# and https://github.com/flavorjones/loofah/issues/144
gem 'rails-html-sanitizer', '~> 1.4.4'
# Textile markup
gem 'RedCloth', '~> 4.3.4', require: 'redcloth'
# html-pipeline dependency for auto-linking
gem 'rinku'
# html-pipeline dependency for html sanitization
gem 'sanitize', '6.0.2'
# SQLite3 DB driver
gem 'sqlite3'
gem 'pg'
# --------------------------------------------------------- Dradis Professional
# Authorisation
gem 'cancancan', '~> 1.10'
# Redis-based background worker
gem 'resque', require: 'resque/status_server'
gem 'resque-status'
# See https://github.com/sinatra/sinatra/issues/1055
gem 'sinatra', '~> 2.2.3'
# Forms that integrate with Twitter's Bootstrap
gem 'simple_form'
# Word content control filter string parsing
gem 'parslet', '~> 1.6.0'
# Word screenshots processing
gem 'image_size', '~> 1.3.0'
# Handle authentication at the Rack level
gem 'warden', '~> 1.2.3'
# Schedule cron jobs
gem 'whenever', require: false
gem 'net-smtp'
gem 'net-pop'
gem 'net-imap'
gem 'puma', '>= 6.4.3'
# ------------------------------------------------------------------ Deployment
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# ----------------------------------------------------- Development and Testing
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Alert on n+1 queries
#gem 'bullet'
# Cleanup logs from asset entries
# gem 'quiet_assets'
# manage background workers
gem 'foreman'
gem 'rerun'
# opens ActionMailer messages in the browser
gem 'letter_opener'
#gem 'ruby-debug'
# security
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'ruby_audit', require: false
gem 'rubocop', require: false
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'rspec-rails', '~> 4.0.2'
end
group :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'capybara', '~> 3.39'
gem 'guard-rspec', require: false
gem 'selenium-webdriver', '~> 4.17'
gem 'shoulda-matchers', '~> 3.1'
gem 'timecop'
# Required by capybara
gem 'matrix'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# =================================================== Other plugins and engines
# = ~ Do not edit this file!! ~ ==============================================
# =============================================================================
#
# See Gemfile.plugins to edit the list of plugins and tool connectors that will
# be loaded by the framework.
#
# Plugins in Gemfile.plugins will be loaded automatically, that's where your
# own plugins should be listed.
#
# Base framework classes required by other plugins
gem 'dradis-plugins', '~> 4.15.0'
gem 'dradis-api', path: 'engines/dradis-api'
# Import / export project data
gem 'dradis-projects', '~> 4.15.0'
plugins_file = 'Gemfile.plugins'
if File.exists?(plugins_file)
eval(IO.read(plugins_file), binding)
end
# For now keep a hard-coded list of plugins until Gemfile.plugins becomes fully
# effective.
# ----------------------------------------------------------------- Calculators
gem 'dradis-calculator_cvss', '~> 4.15.0'
gem 'dradis-calculator_dread', '~> 4.15.0'
# ---------------------------------------------------------------------- Export
gem 'dradis-csv_export', '~> 4.15.0'
gem 'dradis-html_export', '~> 4.15.0'
# ---------------------------------------------------------------------- Import
gem 'dradis-csv', '~> 4.15.0'
# ---------------------------------------------------------------------- Upload
gem 'dradis-acunetix', '~> 4.15.0'
gem 'dradis-brakeman', '~> 4.15.0'
gem 'dradis-burp', '~> 4.15.0'
gem 'dradis-coreimpact', '~> 4.15.0'
gem 'dradis-metasploit', '~> 4.15.0'
gem 'dradis-nessus', '~> 4.15.0'
gem 'dradis-netsparker', '~> 4.15.0'
gem 'dradis-nexpose', '~> 4.15.0'
gem 'dradis-nikto', '~> 4.15.0'
gem 'dradis-nipper', '~> 4.15.0'
gem 'dradis-nmap', '~> 4.15.0'
gem 'dradis-ntospider', '~> 4.15.0'
gem 'dradis-openvas', '~> 4.15.0'
gem 'dradis-pentera', '~> 4.15.0'
gem 'dradis-qualys', '~> 4.15.0'
gem 'dradis-saint', '~> 4.15.0'
gem 'dradis-veracode', '~> 4.15.0'
gem 'dradis-wpscan', '~> 4.15.0'
gem 'dradis-zap', '~> 4.15.0'