Set the target
Use a variable so your commands are clear and consistent.
export TARGET=blackstridecyberlab.online
Authorized Enumeration Lab
A beginner-friendly guide for observing web ports, service behavior, HTTP headers, and evidence collection against the BlackStride Cyber Lab only.
Scope
This lab is for authorized learning only. The goal is to understand how basic enumeration works, how defenders document what is exposed, and how to write clear observations without exaggerating risk.
Lab Guide
Use these steps to observe safely and collect evidence for a beginner-friendly finding.
Use a variable so your commands are clear and consistent.
export TARGET=blackstridecyberlab.online
Identify the public IP address behind the hostname.
nslookup $TARGET
Review browser-facing headers before scanning ports.
curl -I https://$TARGET
Check common web-facing ports. Keep the scan limited.
nmap -Pn -p 80,443 $TARGET
Use reason output to understand how Nmap reached its result.
nmap -Pn --reason -p 80,443 $TARGET
Use light version detection for class demos to reduce scan time.
nmap -sV --version-light -p 80,443 $TARGET
Create an evidence folder and save your scan output.
mkdir -p evidence
Save Nmap output for your lab report.
nmap -Pn -p 80,443 -oN evidence/nmap-web-ports.txt $TARGET
Document what you observed, why it matters, and how to improve it.
Finding = Evidence + Risk + Fix
Submission Format
Good documentation is more important than running many commands.
Name the observation clearly.
Example: Only Web Ports 80 and 443 Are Exposed
Paste the exact command and relevant output.
nmap -Pn -p 80,443 blackstridecyberlab.online
Explain what the result means in simple language.
The public lab exposes web services only, which is expected for this target.
Recommend a practical defensive action.
Continue limiting public exposure and monitor logs for repeated probing.