Categories: Kali Linux

ReconDog – Reconnaissance Swiss Army Knife

Following are the ReconDog main features,

  • Wizard + CLA interface
  • Can extracts targets from STDIN (piped input) and act upon them
  • All the information is extracted with APIs, no direct contact is made to the target

ReconDog Utilities

  • Censys: Uses censys.io to gather massive amount of information about an IP address.
  • NS Lookup: Does name server lookup
  • Port Scan: Scan most common TCP ports
  • Detect CMS: Can detect 400+ content management systems
  • Whois lookup: Performs a whois lookup
  • Detect honeypot: Uses shodan.io to check if target is a honeypot
  • Find subdomains: Uses findsubdomains.com to find subdomains
  • Reverse IP lookup: Does a reverse IP lookup to find domains associated with an IP address
  • Detect technologies: Uses wappalyzer.com to detect 1000+ technologies
  • All: Runs all utilities against the target

Also ReadSandsifter – The x86 Processor Fuzzer For Hidden Instructions & Hardware Bugs

Compatibility

Recon Dog will run on anything that has a python interpreter installed. However, it has been tested on the following configurations:

Operating Systems: Windows, Linux, Mac
Python Versions: Python2.7, Python 3.6

Installation

Recon Dog requires no manual configuration and can be simply run as a normal python script.
However, a debian package can be downloaded from here if you want to install it.

Usage

Wizard Interface

Wizard interface is the most straightforward way you can use Recon Dog in. Just run the program, select what you want to do and enter the target, it’s that simple.

CLA Interface

Recon Dog also has a Command Line Argument inteface. Here’s how you can find subdomains:

python dog -t marvel.com -c 7

There’s more to it! Do you have a program that can enumerate subdomains and you want to scan ports of all the subdomains it finds? Don’t worry, Recon Dog is designed for handling with such cases. You can simply do this:

subdomainfinder -t example.com | python dog --domains -c 3

If you just want to print the targets, don’t use the -c option.
Also, it doesn’t matter what kind of output the other program generates, Recon Dog uses regular expressions to find targets which makes it easy to integrate will literally every tool. There are two switchs available:

--domains    extract domains from STDIN
--ips        extract ip addresses from STDIN

Video Tutorial

Credit: Somdev Sangwan

R K

Recent Posts

CognitoHunter : A Comprehensive AWS Cognito Analysis Toolkit

CognitoHunter is a specialized toolkit designed for security researchers and penetration testers to analyze and…

3 hours ago

Axum : A High-Performance Web Framework For Rust

Axum is a high-performance, ergonomic, and modular web framework for Rust, designed to simplify the…

3 hours ago

Exploring The Tools And Functions Of “how2heap”

how2heap is a repository designed to teach and demonstrate various heap exploitation techniques. It provides…

3 hours ago

Polars : A High-Performance DataFrame Library

Polars is a cutting-edge DataFrame library designed for high-speed data manipulation and analysis. Written in…

3 hours ago

WinVisor : A Hypervisor-Based Emulator For Windows x64

WinVisor is a hypervisor-based emulator designed to emulate Windows x64 user-mode executables. It leverages the…

3 hours ago

Understanding CVE-2024-12084 And Its Exploitation

CVE-2024-12084 is a critical vulnerability in the widely-used Rsync tool, identified as a heap-based buffer…

4 hours ago