Skip to content

BaRecon is a Bash-based tool that performs basic reconnaissance on a network block, a domain and its subdomains, or a single IP address.

License

Notifications You must be signed in to change notification settings

Tomas-Ortiz/barecon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

BaRecon

BaRecon is a Bash-based tool that performs basic reconnaissance on a network block, a domain and its subdomains, or a single IP address.

All dependencies are automatically installed when the tool is executed.

Root permissions are required to use the tool.

Features

The features of this tool include:

  • Network block scanning

    • Network address
    • Network owner
    • Country
    • Total hosts
    • First and last IP address
    • Scanning hosts
      • IP
      • Associated hostnames
      • Ping response
      • Open ports
      • HTTP responses
  • Domain scanning

    • Subdomain scanning
      • Subdomain
      • IP
      • Network owner
      • Country
      • Ping response
      • Open ports
      • HTTP responses
  • IP address scanning

    • Network owner
    • Associated hostnames
    • Ping response
    • Open ports
    • HTTP responses
  • Automatic saving of results to text files

Installation

wget https://raw.githubusercontent.com/Tomas-Ortiz/barecon/main/BaRecon.sh
chmod +x BaRecon.sh
sudo su

Usage

Help panel

./BaRecon.sh -h

Scanning a network block

./BasicRecon.sh -n <CIDR>

Scanning a domain and its subdomains

./BasicRecon.sh -d <DOMAIN>

Scanning a single IP

./BasicRecon.sh -a <IP>