forked from intrigueio/intrigue-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
52 lines (48 loc) · 1.91 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
source 'https://rubygems.org'
gem 'sinatra' # API
gem 'sinatra-contrib' # API
gem 'puma' # Application Server
gem 'redis' # Redis
gem 'redis-namespace'
gem 'eventmachine'
gem 'sidekiq' # Background Tasks
gem 'sidekiq-failures' # Background Tasks
gem 'sidekiq-unique-jobs'
gem 'thor' # CLI
gem 'elasticsearch' # Database
gem 'iconv' # Encoding
gem 'rest-client' # Web hooks, some tasks
gem 'rake'
gem 'rspec' # Testing
gem 'rack-test' # Testing
gem 'rack-protection' # https://github.com/sinatra/rack-protection
gem 'intrigue_api_client' #, :path => "api_client"
gem 'nokogiri' # Client::Search::*Scraper
# 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'
gem 'googleajax' # search_google
gem 'geoip' # geolocate_host
gem 'shodan' # search_shodan
gem 'towerdata_api' # search_towerdata
gem 'yomu' # uri_spider
gem 'gmail' # email_bounceback
gem 'screencap', :git => 'https://github.com/intrigueio/screencap.git'
gem 'arachnid', :git => 'https://github.com/intrigueio/arachnid.git'
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'
# Handlers
gem 'couchrest'
gem 'fog'
gem 'foreman'
gem 'pry' # Debugging
gem 'pry-byebug' # Debugging