forked from intrigueio/intrigue-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
84 lines (72 loc) · 3.04 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
source 'https://rubygems.org'
ruby '2.6.3'
# core
gem 'sinatra', '~> 2.0.1'
gem 'sinatra-contrib', '~> 2.0.1'
gem 'puma' # Application Server
gem 'eventmachine'
gem 'redis' # Redis
gem 'redis-namespace' # Redis
gem 'sidekiq' # Background Tasks
gem 'sidekiq-failures' # Background Tasks
gem 'sidekiq-limit_fetch' # Dynamic queueing
gem 'thor' # CLI
gem 'elasticsearch' # Database
gem 'iconv' # Encoding
gem 'rest-client' # Web hooks, some tasks
gem 'rack-protection' # https://github.com/sinatra/rack-protection
gem 'intrigue_api_client', :path => "api_client"
gem 'nokogiri' # Client::Search::*Scraper
gem 'yajl-ruby'
# Testing
gem 'rake' # Testing
gem 'rspec' # Testing
gem 'rack-test' # Testing
# Database
gem 'sequel'
gem 'sqlite3'
gem 'pg'
# Tasks
gem 'net-dns' # dns_cache_snoop
gem 'dnsruby' # dns_zone_transfer
gem 'em-resolv-replace' # dns_brute_sub
gem 'whois' # dns_zone_transfer, whois
gem 'whois-parser' # whois
gem 'googleajax' # search_google
gem 'maxminddb', :git => "https://github.com/intrigueio/maxminddb"
gem 'shodan' # search_shodan
gem 'towerdata_api' # search_towerdata
gem 'yomu', :git => 'https://github.com/intrigueio/yomu.git' # uri_spider
gem 'ruby-nmap', :git => 'https://github.com/pentestify/ruby-nmap.git'
gem 'censys', :git => 'https://github.com/pentestify/censys.git'
gem 'whoisology', :git => 'https://github.com/pentestify/whoisology.git'
gem 'opencorporates', :git => 'https://github.com/pentestify/opencorporates.git'
gem 'spidr', :git => 'https://github.com/intrigueio/spidr.git'
gem 'snmp', :git => 'https://github.com/intrigueio/ruby-snmp.git'
gem 'aws-sdk-sqs' #, '~> 3'
gem 'aws-sdk-s3' #, '~> 3'
gem 'rex-sslscan', :git => 'https://github.com/intrigueio/rex-sslscan.git'
gem 'flareon' # dns resolution over http
gem 'net-http2' # http2 client support
gem 'rubyzip'
gem 'selenium-webdriver'
gem 'recog-intrigue', :git => 'https://github.com/intrigueio/recog.git'
# swap these if developing on chrome_remote locally
gem 'chrome_remote', :git => 'https://github.com/intrigueio/chrome_remote.git'
#gem 'chrome_remote', :path => "~/chrome_remote"
# swap these if developing on ident locally
gem 'intrigue-ident', :git => 'https://github.com/intrigueio/intrigue-ident.git'
#gem 'intrigue-ident', :path => "~/ident"
# vulndb
gem 'versionomy'
# Handlers
gem 'couchrest'
gem 'fog-aws'
# produciton
gem 'god'
# Development
gem 'foreman'
gem 'pry' # Debugging
gem 'pry-byebug' # Debugging
gem 'yard'
gem "sentry-raven" # Error tracking (disabled by default)