Port Scanning & Service Detection
Bedrock servers use UDP port 19132 by default. Advanced scanning reveals server software, version, MOTD, player count, and protocol version — all without authentication.
# Basic Bedrock server scan
$ nmap -sU -p 19132 --script=minecraft-info target.aternos.me
# Full port range scan for non-standard ports
$ nmap -sU -p 1-65535 --min-rate=1000 target.aternos.me
# Aggressive service detection
$ nmap -sUV -p 19132-19135 -A --version-intensity 9 target.aternos.me
# Scan multiple Aternos servers
$ nmap -sU -p 19132 -iL aternos_targets.txt --open
OSINT & Target Profiling
Gathering intelligence from public sources: DNS records, Shodan, social media, Discord servers, and Aternos public server listings reveal critical infrastructure details.
# Shodan search for Bedrock servers
$ shodan search "MCPE" --fields ip_str,port,data
# DNS enumeration for Aternos subdomains
$ dig +short A servername.aternos.me
$ host -t SRV _minecraft._udp.target.com
# Reverse IP lookup
$ curl "https://api.shodan.io/shodan/host/{IP}?key=API_KEY"
# Check Aternos server status via API
$ curl -s "https://mcapi.us/server/status?ip=server.aternos.me&port=19132"