
AlienTec-Recon-Tool
Thanks for using the AlienTec Recon-Tool! This is a passion project and will always be available as a free, open-source version.
Your support helps accelerate the development of the planned Pro version and keeps this free tool maintained. If you find value in this project, please consider becoming a supporter!
| Via GitHub Sponsors | | :--- | :--- | | ➡️ Sponsor on GitHub |
AlienTec Recon Tool is an automated Bash script for performing basic to advanced reconnaissance and information gathering scans on a target system. It leverages powerful tools like Nmap, Gobuster, and Nikto to identify open ports, HTTP headers, cookies, and potential vulnerabilities.
The tool is designed to be modular, offering flexible options to run exactly the scans you need.
The script combines the capabilities of industry-standard tools to provide a comprehensive overview of the target.
To run the AlienTec Recon Tool, you need the following tools on your system (ideally Kali Linux, Parrot OS, or another pentesting distribution):
# Check if Nmap, Gobuster, and Nikto are installed
sudo apt update
sudo apt install nmap gobuster nikto -y
A highly modular, professional reconnaissance toolkit for pentesters, red teamers, and security researchers.
chmod +x recon.sh
Optional Auto-Installer (to be integrated into the script later):
./recon.sh --ip 192.168.1.50 --domain example.com --all
./recon.sh --ip 10.0.0.5
./recon.sh --ip 8.8.8.8 --domain google.com --headers --cookies --gobuster
./recon.sh --ip 192.168.2.199 --tcp --udp --all
All scans are automatically saved in:
logs/YYYY-MM-DD_HH-MM-SS/
Example:
[+] Nmap Web Scan Findings: 4 ✔
[+] Nmap Vuln Scan Findings: 2 ✔
[+] TCP Ports Open: 7 ✔
[+] UDP Ports Open: 3 ✔
[+] Gobuster Hits: 12 ✔
[+] Header Issues: 5 ✔
[+] Cookie Issues: 1 ✔
✔ AlienTec Recon Tool completed at 2025‑12‑04 23:51
Logfile saved in logs/2025-12-04_23-51/
Active Development · Pro version in progress · Community-Friendly
MIT License
| Module | Description | Tool | Option | Emoji |
|---|
| Basic Nmap | Fast service and version scan. Always active by default unless skipped. | nmap -T4 -sV | --skip-nmap | 🔍 |
| Full TCP Scan | Scans all 65535 TCP ports for the most comprehensive port overview. | nmap -p- | --tcp | 🌐 |
| UDP Scan | Scans the top 200 UDP ports for open services. | nmap -sU --top-ports 200 | --udp | 📨 |
| HTTP Headers | Fetches HTTP headers from the target website (e.g., server type, policies). | curl -I | --headers | 🛡️ |
| Cookies Dump | Extracts Set-Cookie headers for session or tracking information. | curl -s -I | --cookies | 🍪 |
| Directory Busting | Performs a brute-force search for common directories and files. | gobuster dir | --gobuster | 📁 |
| Vulnerability Check | Runs a web server scan for known vulnerabilities and misconfigurations. | nikto -h | --nikto | 🚨 |
| Flag | Description |
|---|
| --ip | Target‑IPv4 address (required) |
| --domain | Target‑Domain (optional) |
| --ipv6 | Enable IPv6 Scan |
| --tcp | Full TCP Scan |
| --udp | UDP Scan |
| --headers | HTTP Header Scan |
| --cookies | Cookie Dump |
| --gobuster | Directory Bruteforce |
| --nikto | Web server scan (optional Modul) |
| --mode internal | Internal Pentest |
| --mode external | External Pentest |
| --skip-* | Exclude any module |
| --all | Execute all modules |