Goorecon

From aldeid
Jump to navigation Jump to search

Description

Goorecon is a tool written in Ruby by Carlos Perez. It connects to Google to gather subdomain and emails from a given domain name.

Installation

Prerequisites

First install Ruby and Rubygems

$ sudo apt-get install ruby1.8 rubygems1.8

Then install necessary gem dependencies:

$ sudo gem install httpclient'
$ sudo gem install pNet-DNS

Installation of Goorecon

$ mkdir -p /pentest/enumeration/goorecon/
$ cd /pentest/enumeration/goorecon/
$ wget http://www.darkoperator.com/tools-and-scripts/goorecon.rb
$ chmod +x goorecon.rb

Usage

Basic syntax

$ ruby goorecon.rb <type> <target>

Types (options)

-s
Subdomain Enumeration
-e
Email gathering

Example

$ ./goorecon.rb -s aldeid.com
www.aldeid.com,80.14.163.161
aldeid.com,80.14.163.161
$ ./goorecon.rb -e aldeid.com
nil
Note
nil indicates that nothing has been gathered

Comments