Docker Lab - Snowboundport37/champlain GitHub Wiki
- Basic system and network commands for reconnaissance.
- Tracing routes and analyzing network hops.
- Querying Active Directory for system and user enumeration.
- Checking DNS records and reverse lookups.
Objective: Use basic system commands to gather information about the local machine and its network configuration.
- Identify the currently logged-in user:
whoami
- Check the system hostname:
hostname
- Test external connectivity with a single ping:
ping -n 1 google.com
- Display IP address and network configuration:
ipconfig
Deliverable:
- Screenshot of command outputs showing system and network details.
Objective: Verify connectivity and analyze the route to champlain.edu.
- Ping Champlain’s domain:
ping champlain.edu
- Trace the route and identify network hops:
tracert champlain.edu
- Record the number of hops and note any unusual delays.
Deliverable:
- Screenshot of the
tracertoutput with the number of hops recorded.
Objective: Enumerate Windows machines and domain users from the Active Directory.
- List all Windows computers in the domain:
Get-ADComputer -Filter *
- Enumerate domain users:
Get-ADUser -Filter *
Deliverable:
- List of retrieved domain computers and users.
Objective: Identify DNS A records and perform a reverse lookup for PTR records.
- Find the A record for Champlain.edu:
nslookup champlain.edu
- Perform a reverse lookup for an IP address (PTR record):
nslookup <IP-ADDRESS>
Deliverable:
- Screenshot of DNS queries and PTR lookup results.
- Tracing network routes helps identify latency and potential bottlenecks.
- Active Directory enumeration provides insight into domain structure.
- DNS records are crucial for verifying domain configurations.