To establish a baseline developer environment, learn core terminal navigation, and deploy a Python script that gathers host system metrics for basic IT asset auditing.
- Operating System: Windows 11
- IDE: Visual Studio Code
- Language: Python 3.x
- Version Control: Git & GitHub
- Command Executed:
ping google.com - Filter Applied in Wireshark:
icmp
- Layer 2 (Data Link): MAC Addresses (Source Host MAC -> Local Router Gateway MAC)
- Layer 3 (Network):
- Source IP:
192.168.1.88 - Destination IP:
142.251.211.110
- Source IP:
- Layer 4 (Transport): ICMP Protocol (Echo Request Type 8 / Echo Reply Type 0)
- DNS Resolution: Captured initial domain name resolution on Port 53 (UDP) prior to ICMP ping echo.
- Verified encapsulation process across the OSI model layers.
- Confirmed DNS translates human-readable hostnames (
google.com) to Layer 3 IP addresses before establishing ICMP communication.
| Port Number | Protocol | State | Service | Discovered Version |
|---|---|---|---|---|
| 22 | TCP | Open | SSH | OpenSSH 6.6.1p1 Ubuntu 2ubuntu2.13 (Ubuntu Linux; protocol 2.0) |
| 80 | TCP | Open | HTTP | Apache httpd 2.4.7 ((Ubuntu)) |
- Port Discovery: Identified active services exposed on public target infrastructure.
- Banner Grabbing (
-sV): Extracted service versions necessary for patch management and threat analysis.
grep -i "failed" auth.log | grep -oE "([0-9]{1,3}\.){3}[0-9]{1,3}" | sort | uniq -c | sort -nr
| Attempt Count | Source IP Address | Incident Type |
|---|---|---|
| 46 | 163.27.187.39 | Potential SSH Brute Force |
- Log Triage: Leveraged Linux CLI piping (
grep,awk,sort,uniq) to extract actionable security metrics from raw system logs. - Threat Detection: Identified top offender IP addresses exhibiting brute-force indicators for firewalls or SIEM blocklists.
cyber-lab-notes/
├── README.md
├── captures/
│ └── ping_dns_baseline.pcapng
├── scans/
│ ├── scanme_basic.txt
│ └── scanme_services.txt
├── scripts/
│ └── system_auditor.py
└── screenshots/
├── vscode_setup.png
├── git_verify.png
├── python_output.png
└── wireshark_icmp.png