Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
AlienTec-Recon-Tool — AlienTec-Recon-Tool | Kitploit
Tools/GitHubGitHub/alientec1908/alientec-recon-tool
ReconnaissanceVulnerability ScannersNetwork MappingPort ScanningDNS & Subdomain EnumerationInformation GatheringWeb SecurityPenetration TestingSubdomain Enumeration
GitHubalientec1908/alientec-recon-tool

AlienTec-Recon-Tool

AlienTec-Recon-Tool

28 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository

AlienTec 👽 Recon-Tool

❤️ Your Support Makes a Difference

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 |



Do you like AlienTec Recon? Give the project a star ⭐ to support its development!

GitHub stars GitHub forks GitHub license

ultimate Recon

⚡️ Overview

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.


🛠️ Modules & Features

The script combines the capabilities of industry-standard tools to provide a comprehensive overview of the target.


🚀 Prerequisites

To run the AlienTec Recon Tool, you need the following tools on your system (ideally Kali Linux, Parrot OS, or another pentesting distribution):

root@kitploit:~
# 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.

🚀 Features

  • Fully modular (run each scan individually or combined)
  • IPv4 & IPv6 support
  • Nmap Security Scans (Web, Vuln, Full TCP/UDP)
  • Gobuster Directory Bruteforcing
  • HTTP Header & Cookie Scans
  • Automatic log folders & timestamps
  • Fault-tolerant & colored CLI output
  • Selectable Internal/External mode
  • Banner + parameter help directly in the CLI

📦 Installation

root@kitploit:~
chmod +x recon.sh

Optional Auto-Installer (to be integrated into the script later):

  • checks if necessary tools exist
  • always asks before installation

🧠 Usage

root@kitploit:~
./recon.sh --ip 192.168.1.50 --domain example.com --all

🏁 Parameters


🔥 Example Commands

Minimal

root@kitploit:~
./recon.sh --ip 10.0.0.5

External Web‑Pentest

root@kitploit:~
./recon.sh --ip 8.8.8.8 --domain google.com --headers --cookies --gobuster

Internal Host‑Security‑Scan

root@kitploit:~
./recon.sh --ip 192.168.2.199 --tcp --udp --all


📁 Logs

All scans are automatically saved in:

root@kitploit:~
logs/YYYY-MM-DD_HH-MM-SS/

🏁 Final Report (displayed at the end)

Example:

root@kitploit:~
[+] 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/


🐉 Project Status

Active Development · Pro version in progress · Community-Friendly


📜 License

MIT License

Download Tool
ModuleDescriptionToolOptionEmoji
Basic NmapFast service and version scan. Always active by default unless skipped.nmap -T4 -sV--skip-nmap🔍
Full TCP ScanScans all 65535 TCP ports for the most comprehensive port overview.nmap -p---tcp🌐
UDP ScanScans the top 200 UDP ports for open services.nmap -sU --top-ports 200--udp📨
HTTP HeadersFetches HTTP headers from the target website (e.g., server type, policies).curl -I--headers🛡️
Cookies DumpExtracts Set-Cookie headers for session or tracking information.curl -s -I--cookies🍪
Directory BustingPerforms a brute-force search for common directories and files.gobuster dir--gobuster📁
Vulnerability CheckRuns a web server scan for known vulnerabilities and misconfigurations.nikto -h--nikto🚨
FlagDescription
--ipTarget‑IPv4 address (required)
--domainTarget‑Domain (optional)
--ipv6Enable IPv6 Scan
--tcpFull TCP Scan
--udpUDP Scan
--headersHTTP Header Scan
--cookiesCookie Dump
--gobusterDirectory Bruteforce
--niktoWeb server scan (optional Modul)
--mode internalInternal Pentest
--mode externalExternal Pentest
--skip-*Exclude any module
--allExecute all modules