This commit is contained in:
szymonj99
2024-12-09 18:17:08 +00:00
committed by sjanusz-r7
parent ada43cd132
commit 11099c2d3b
2 changed files with 20 additions and 7 deletions
+18 -5
View File
@@ -38,7 +38,7 @@ PATH
getoptlong getoptlong
hrr_rb_ssh-ed25519 hrr_rb_ssh-ed25519
http-cookie http-cookie
irb (~> 1.7.4) irb
jsobfu jsobfu
json json
metasm metasm
@@ -244,6 +244,7 @@ GEM
em-socksify (0.3.3) em-socksify (0.3.3)
base64 base64
eventmachine (>= 1.0.0.beta.4) eventmachine (>= 1.0.0.beta.4)
erb (5.0.1)
erubi (1.13.1) erubi (1.13.1)
eventmachine (1.2.7) eventmachine (1.2.7)
factory_bot (6.5.1) factory_bot (6.5.1)
@@ -288,8 +289,10 @@ GEM
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
io-console (0.8.0) io-console (0.8.0)
ipaddr (1.2.7) ipaddr (1.2.7)
irb (1.7.4) irb (1.15.2)
reline (>= 0.3.6) pp (>= 0.6.0)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
jmespath (1.6.2) jmespath (1.6.2)
jsobfu (0.4.2) jsobfu (0.4.2)
rkelly-remix rkelly-remix
@@ -346,7 +349,7 @@ GEM
logger logger
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2025.0304) mime-types-data (3.2025.0304)
mini_portile2 (2.8.8) mini_portile2 (2.8.9)
minitest (5.25.5) minitest (5.25.5)
mqtt (0.6.0) mqtt (0.6.0)
msgpack (1.6.1) msgpack (1.6.1)
@@ -396,6 +399,9 @@ GEM
ruby-rc4 ruby-rc4
ttfunk ttfunk
pg (1.5.9) pg (1.5.9)
pp (0.6.2)
prettyprint
prettyprint (0.2.0)
prism (1.4.0) prism (1.4.0)
pry (0.14.2) pry (0.14.2)
coderay (~> 1.1) coderay (~> 1.1)
@@ -403,6 +409,9 @@ GEM
pry-byebug (3.10.1) pry-byebug (3.10.1)
byebug (~> 11.0) byebug (~> 11.0)
pry (>= 0.13, < 0.15) pry (>= 0.13, < 0.15)
psych (5.2.6)
date
stringio
public_suffix (6.0.1) public_suffix (6.0.1)
puma (6.6.0) puma (6.6.0)
nio4r (~> 2.0) nio4r (~> 2.0)
@@ -438,11 +447,14 @@ GEM
rasn1 (0.14.0) rasn1 (0.14.0)
strptime (~> 0.2.5) strptime (~> 0.2.5)
rb-readline (0.5.5) rb-readline (0.5.5)
rdoc (6.14.2)
erb
psych (>= 4.0.0)
recog (3.1.14) recog (3.1.14)
nokogiri nokogiri
redcarpet (3.6.1) redcarpet (3.6.1)
regexp_parser (2.10.0) regexp_parser (2.10.0)
reline (0.6.0) reline (0.6.1)
io-console (~> 0.5) io-console (~> 0.5)
require_all (3.0.0) require_all (3.0.0)
rex-arch (0.1.18) rex-arch (0.1.18)
@@ -571,6 +583,7 @@ GEM
sqlite3 (1.7.3) sqlite3 (1.7.3)
mini_portile2 (~> 2.8.0) mini_portile2 (~> 2.8.0)
sshkey (3.0.0) sshkey (3.0.0)
stringio (3.1.1)
strptime (0.2.5) strptime (0.2.5)
swagger-blocks (3.0.0) swagger-blocks (3.0.0)
syslog (0.3.0) syslog (0.3.0)
+2 -2
View File
@@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^spec/}) spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ["lib"] spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.7' spec.required_ruby_version = '>= 3.1'
# Database support # Database support
spec.add_runtime_dependency 'activerecord', *Metasploit::Framework::RailsVersionConstraint::RAILS_VERSION spec.add_runtime_dependency 'activerecord', *Metasploit::Framework::RailsVersionConstraint::RAILS_VERSION
@@ -219,7 +219,7 @@ Gem::Specification.new do |spec|
# SSH server library with ed25519 # SSH server library with ed25519
spec.add_runtime_dependency 'hrr_rb_ssh-ed25519' spec.add_runtime_dependency 'hrr_rb_ssh-ed25519'
# Needed for irb internal command # Needed for irb internal command
spec.add_runtime_dependency 'irb', '~> 1.7.4' spec.add_runtime_dependency 'irb'
# AWS enumeration modules # AWS enumeration modules
spec.add_runtime_dependency 'aws-sdk-s3' spec.add_runtime_dependency 'aws-sdk-s3'