Back to node terminal

@x-gem

admin

X-Gem Official

Official writer, security researcher, and content publisher for IxEdge Forge.

Security Toolkits (9)

network

Wireshark

Network protocol analyzer

recon

Nmap

Nmap (Network Mapper) is a powerful open-source tool used for network discovery and security auditing. ## 🔧 Installation ### Linux: sudo apt update && sudo apt install nmap ### Mac: brew install nmap ### Windows: Download from https://nmap.org/download.html ## ▶️ Basic Usage ### Scan a single target: nmap 192.168.1.1 ### Scan multiple ports: nmap -p 1-1000 target.com ### Service & version detection: nmap -sV target.com ### OS detection: nmap -O target.com ## ⚡ Advanced Usage - Aggressive scan: nmap -A target.com - Scan with scripts: nmap --script vuln target.com ## 🎯 Use Cases - Network reconnaissance - Port scanning - Vulnerability detection - Service enumeration ## 🧠 Pro Tip Use Nmap with -A only when needed, as it is noisy and detectable.

recon

Amass

Amass is a reconnaissance tool used for in-depth subdomain enumeration. ## 🔧 Installation ### Linux: sudo apt install amass ## ▶️ Usage ### Passive scan: amass enum -passive -d example.com ### Active scan: amass enum -active -d example.com ### Save output: amass enum -d example.com -o output.txt ## 🎯 Use Cases - Subdomain discovery - Attack surface mapping - Recon phase ## 🧠 Pro Tip Combine Amass with other tools like Subfinder.

web

SQLMap

SQLMap is an automated SQL injection tool used to detect and exploit database vulnerabilities. ## 🔧 Installation git clone https://github.com/sqlmapproject/sqlmap.git cd sqlmap ## ▶️ Usage ### Basic scan: python sqlmap.py -u "http://site.com/page?id=1" ### Enumerate DBs: --dbs ### Dump database: --dump ## ⚡ Advanced - Use cookies: --cookie="PHPSESSID=xyz" - POST request: --data="id=1" ## 🎯 Use Cases - SQL Injection testing - Database extraction - Vulnerability assessment ## 🧠 Pro Tip Use --risk and --level flags for deeper testing.

password

Hashcat

Advanced password recovery tool

ad

BloodHound

Active Directory attack path analysis

post-exploitation

CrackMapExec

Post-exploitation tool

Defensive

KernelPatch

A lightweight bash utility and system configuration hardening script for Linux production servers that restricts access to sysctl parameters, kernel logs, and debug ports.

Reconnaissance

ForgeScanner

A modular, high-speed parallel port scanner and service banner grabber with integrated vulnerability matching capabilities and custom protocol scripting.

Coordinated Events (0)

NO_EVENTS_COORDINATED.