A tool for performing reconnaissance on web targets in Python.


Keywords
cybersecurity, reconnaissance, scanning, automation, bugbounty, library, python, recon, reconnaissance-framework
License
MIT
Install
pip install r3c0n==1.2.4

Documentation

r3c0n

A tool for performing reconnaissance on web targets in Python.

Description

Installation

pip install r3c0n

Run tests

python tests/test_cleanup.py 

Usage

from r3c0n.engines import anubis

domain = 'coda.io'
subdomains = anubis.Anubis.subdomains(domain)
print(subdomains)

> ['www.coda.io', 'dev.coda.io', 'blog.coda.io', 'cdn.coda.io', 'staging.coda.io', 'help.coda.io', 'data.coda.io', 'go.coda.io', 'community.coda.io', 'status.coda.io', 'auth.coda.io', 'bounce.coda.io']