├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── dert ├── dert.gemspec ├── lib ├── dert.rb └── dert │ ├── dns.rb │ ├── methods │ ├── arin.rb │ ├── axfr.rb │ ├── brt.rb │ ├── gtld.rb │ ├── init.rb │ ├── ipv6.rb │ ├── rvl.rb │ ├── srv.rb │ ├── std.rb │ └── tld.rb │ └── version.rb └── test ├── arin.rb ├── axfr.rb ├── brt.rb ├── gtld.rb ├── ipv6.rb ├── rvl.rb ├── srv.rb ├── std.rb ├── tld.rb └── wordlists ├── hosts.txt ├── ips.txt ├── short_hosts.txt └── subdomains.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | dert -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.1.2 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /bin/dert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/bin/dert -------------------------------------------------------------------------------- /dert.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/dert.gemspec -------------------------------------------------------------------------------- /lib/dert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert.rb -------------------------------------------------------------------------------- /lib/dert/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/dns.rb -------------------------------------------------------------------------------- /lib/dert/methods/arin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/arin.rb -------------------------------------------------------------------------------- /lib/dert/methods/axfr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/axfr.rb -------------------------------------------------------------------------------- /lib/dert/methods/brt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/brt.rb -------------------------------------------------------------------------------- /lib/dert/methods/gtld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/gtld.rb -------------------------------------------------------------------------------- /lib/dert/methods/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/init.rb -------------------------------------------------------------------------------- /lib/dert/methods/ipv6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/ipv6.rb -------------------------------------------------------------------------------- /lib/dert/methods/rvl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/rvl.rb -------------------------------------------------------------------------------- /lib/dert/methods/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/srv.rb -------------------------------------------------------------------------------- /lib/dert/methods/std.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/std.rb -------------------------------------------------------------------------------- /lib/dert/methods/tld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/lib/dert/methods/tld.rb -------------------------------------------------------------------------------- /lib/dert/version.rb: -------------------------------------------------------------------------------- 1 | module Dert 2 | VERSION = '1.0.3' 3 | end 4 | -------------------------------------------------------------------------------- /test/arin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/arin.rb -------------------------------------------------------------------------------- /test/axfr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/axfr.rb -------------------------------------------------------------------------------- /test/brt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/brt.rb -------------------------------------------------------------------------------- /test/gtld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/gtld.rb -------------------------------------------------------------------------------- /test/ipv6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/ipv6.rb -------------------------------------------------------------------------------- /test/rvl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/rvl.rb -------------------------------------------------------------------------------- /test/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/srv.rb -------------------------------------------------------------------------------- /test/std.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/std.rb -------------------------------------------------------------------------------- /test/tld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/tld.rb -------------------------------------------------------------------------------- /test/wordlists/hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/wordlists/hosts.txt -------------------------------------------------------------------------------- /test/wordlists/ips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/wordlists/ips.txt -------------------------------------------------------------------------------- /test/wordlists/short_hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/wordlists/short_hosts.txt -------------------------------------------------------------------------------- /test/wordlists/subdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/dert/HEAD/test/wordlists/subdomains.txt --------------------------------------------------------------------------------