All Projects β†’ GeneralTesler β†’ tracerT

GeneralTesler / tracerT

Licence: GPL-3.0 license
Automated Google dorking with custom search engines

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to tracerT

dorkscout
DorkScout - Golang tool to automate google dork scan against the entiere internet or specific targets
Stars: ✭ 189 (+626.92%)
Mutual labels:  osint, google-dorks
Investigo
πŸ”Ž Find usernames and download their data across social media.
Stars: ✭ 168 (+546.15%)
Mutual labels:  osint
Mihari
A helper to run OSINT queries & manage results continuously
Stars: ✭ 239 (+819.23%)
Mutual labels:  osint
Awesome-CyberSec-Resources
An awesome collection of curated Cyber Security resources(Books, Tutorials, Blogs, Podcasts, ...)
Stars: ✭ 273 (+950%)
Mutual labels:  osint
Asn
ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization / IP reputation and geolocation lookup tool / Traceroute server
Stars: ✭ 242 (+830.77%)
Mutual labels:  osint
Aliens eye
Social media hunter
Stars: ✭ 105 (+303.85%)
Mutual labels:  osint
Osint Framework
OSINT Framework
Stars: ✭ 3,348 (+12776.92%)
Mutual labels:  osint
osint-combiner
Combining OSINT sources in Elastic Stack
Stars: ✭ 77 (+196.15%)
Mutual labels:  osint
emailGuesser
This is an open source project which helps users "guess" their target's email address based on multiple inputs and preferences.
Stars: ✭ 52 (+100%)
Mutual labels:  osint
Ntlmrecon
Enumerate information from NTLM authentication enabled web endpoints πŸ”Ž
Stars: ✭ 252 (+869.23%)
Mutual labels:  osint
Cc.py
Extracting URLs of a specific target based on the results of "commoncrawl.org"
Stars: ✭ 250 (+861.54%)
Mutual labels:  osint
Rengine
reNgine is an automated reconnaissance framework for web applications with a focus on highly configurable streamlined recon process via Engines, recon data correlation and organization, continuous monitoring, backed by a database, and simple yet intuitive User Interface. reNgine makes it easy for penetration testers to gather reconnaissance with…
Stars: ✭ 3,439 (+13126.92%)
Mutual labels:  osint
docker-datasploit
Docker container for datasploit framework
Stars: ✭ 23 (-11.54%)
Mutual labels:  osint
Omnibus
The OSINT Omnibus (beta release)
Stars: ✭ 243 (+834.62%)
Mutual labels:  osint
phisherprice
All In One Pentesting Tool For Recon & Auditing , Phone Number Lookup , Header , SSH Scan , SSL/TLS Scan & Much More.
Stars: ✭ 38 (+46.15%)
Mutual labels:  osint
Oblivion
Data leak checker & OSINT Tool
Stars: ✭ 237 (+811.54%)
Mutual labels:  osint
Instaloader
Download pictures (or videos) along with their captions and other metadata from Instagram.
Stars: ✭ 3,655 (+13957.69%)
Mutual labels:  osint
Shogun
Shodan.io Command Line Interface
Stars: ✭ 42 (+61.54%)
Mutual labels:  osint
PwnedPasswordsChecker
Search (offline) if your password (NTLM or SHA1 format) has been leaked (HIBP passwords list v8)
Stars: ✭ 52 (+100%)
Mutual labels:  osint
osint
Docker image for osint
Stars: ✭ 92 (+253.85%)
Mutual labels:  osint

tracerT

note: this project is no longer maintained and is incompatible with the current GHDB site

Automated Google dorking with custom search engines

Description

This utility has two submodules. The first submodule (GHDB) will scrape the Google Hacking Database for dorks in a given category then save them to a local file. The second submodule will take an input file of Google dorks and query them against the Google Custom Search Engine API for a given target domain. If a dorks returns any results, the dork will be saved to a local file. The third module will take a comma separated list of TLDS (e.g. 'com,net,io') and produce a TSV configuration file that can be imported into a CSE.

Prerequisities

  1. A valid API key. Generate one from the Google Developer Console (Make sure to first enable the Custom Search API).

  2. A Custom Search Engine

    Scope the search engine to no site and set the dropdown to search the entire web. See the image below for clarification

    Alternatively, scope the search engine to a TLD matching the target domain. See the image below for clarification

Setup

pip install -r requirements.txt

Usage & Notes

GHDB submodule

Print GHDB categories

python tracerT.py ghdb --cat-list 

Retrive dorks for a category

python tracerT.py ghdb -c 9 -o dorks.csv 

Full help

usage: tracerT ghdb [-h] [-c CATEGORY] [--cat-list] [-o OUTDORK]

optional arguments:
  -h, --help            show this help message and exit
  -c CATEGORY, --category CATEGORY
                        GHDB dork category. Use the --cat-list for category
                        list
  --cat-list            show categories list
  -o OUTDORK, --out-file OUTDORK
                        output file for dorks (CSV)

CSE submodule

Query CSE for dorks

python tracerT.py cse -x <cse id> -a <api key> -i dorks.csv -t example.com -o results.txt

Full help

usage: tracerT cse [-h] -x CSE -a API -i ILIST [-f FFORMAT] -t TARGET
                   [--skip-lc] -o OUTRES

optional arguments:
  -h, --help            show this help message and exit
  -x CSE, --cse CSE     CSE ID
  -a API, --api API     API key
  -i ILIST, --ilist ILIST
                        input list of dorks
  -f FFORMAT, --format FFORMAT
                        input list format (txt,csv)
  -t TARGET, --target TARGET
                        target domain
  --skip-lc             skip line count for input file
  -o OUTRES, --out-file OUTRES
                        output file for search results (CSV)
  • --skip-lc: The CSE API has a limit of 100 queries per day for the free tier so the script is set to not run if the input file exceeds 100 lines. If you are willing to pay for extended use, you can use this switch to disable the line count check
  • -f, --format: The script accepts both .txt and .csv input files. Text file input should be a newline delimited list of dorks. CSV file input should be in the format of 'GHDB ID,Dork'. This is also the output given by the GHDB submodule. Make sure to leave the column title in the file (the script will remove it). This argument is optional. However, the script will use the file extension to determine the format if you omit it.

TSV submodule

Generate TSV configuration file

python tracerT.py tsv -o annotations.tsv -i 'com,net,io' -x <cse id>

Full help

usage: tracerT tsv [-h] -x CSECONF -o OUTCONF -i ITLD

optional arguments:
  -h, --help            show this help message and exit
  -x CSECONF, --cse CSECONF
                        CSE ID
  -o OUTCONF, --out-file OUTCONF
                        output file for config
  -i ITLD, --itld ITLD  comma separated TLDs

To-dos & Feature Requests

  • Multiple input list support

Known Issues

  • Retrieving dorks from GHDB for category 1 will fail. This appears to be an issue with the site itself not properly displaying the dorks.

Changelog

  • 05/09/2018 - Added TSV submodule
  • 02/11/2018 - Initial release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].