
Analysis of network scan results, service vulnerabilities, OS fingerprinting, and critical Nessus findings including Ghostcat (CVE-2020-1938).
Here's the normal Markdown format without columns, just like your Lian_Yu code:
markdown
| Course Code | IKB21004 & IKB21403 |
| Task | File Analysis - Scanning Result |
| Difficulty | Intermediate |
| Category | Vulnerability Assessment, Network Analysis |
| Techniques Used | Packet Analysis, OS Fingerprinting, Vulnerability Interpretation, Nessus Analysis |
| Tools Used | Wireshark, Nmap, Nessus |
This lab focuses on analyzing network scan results, interpreting Nmap outputs to identify vulnerable services, performing OS fingerprinting using TTL values, and analyzing Nessus scan findings including the critical Ghostcat vulnerability.
Instructions: Open packet1.pcap in Wireshark and analyze the captured packets to locate the flag.
Steps:
Instructions: Open packet2.pcap in Wireshark and analyze the captured packets to locate the flag.
Steps:
PORT STATE SERVICE VERSION
21/tcp open ftp vsftpd 2.3.4
22/tcp open ssh OpenSSH 5.3p1
80/tcp open http Apache 2.2.8
139/tcp open netbios-ssn
445/tcp open microsoft-ds Windows 7 Professional 7601 Service Pack 1
Port 21 (FTP) is the most dangerous. The backdoor is simple to exploit, requires no credentials, and provides instant shell access.
Screenshot - Nmap Analysis
Answer: Linux OS
Answer: Windows 7
Answer: Windows 10/11
| TTL Value | Typical OS |
|---|---|
| 64 | Linux / Unix |
| 128 | Windows 7 / 8 / 10 / 11 |
| 255 | Cisco / Solaris |
Screenshot - OS Fingerprinting
Upload Network_Scan.nessus to Nessus and analyze the findings. Focus on critical or high findings identified in the analysis named "Ghostcat".
1. What is the affected Port number?
Port 6667/tcp/icp
2. What is the affected protocol?
AJP (Apache JServ Protocol) / TCP
3. What is the CVSS Score of vulnerability found?
10.0 (Critical) - CVSS v3.0 Base score
4. Can you find any exploit related to this vulnerability?
Yes - Public exploits available on:
5. Find CVE for this vulnerability.
CVE-2020-1938 (also related: CVE-2020-1745)
| Attribute | Value |
|---|---|
| Vulnerability Name | Ghostcat |
| Affected Component | Apache Tomcat AJP Protocol |
| CVSS Score | 10.0 (Critical) |
Wireshark - Packet analysisNmap - Network scanning and OS fingerprintingNessus - Vulnerability scanningTTL Analysis - OS identification| Port | Service | Version | Attack Vector |
|---|
| 21/tcp | FTP | vsftpd 2.3.4 | Backdoor Command Execution: Sending a username with :) grants shell access |
| 22/tcp | SSH | OpenSSH 5.3p1 | Brute Force: User enumeration and credential brute-forcing |
| 80/tcp | HTTP | Apache 2.2.8 | Web Exploitation: Path traversal, directory listing, CGI exploits |
| 139/445 | SMB | Windows 7 SP1 | Remote Code Execution: EternalBlue (MS17-010) and SMB relay attacks |
| CVE ID | CVE-2020-1938 |
| Impact | File reading, Remote Code Execution |
| Question | Task | Key Findings |
|---|
| Q1 | packet1.pcap Analysis | Flag found |
| Q2 | packet2.pcap Analysis | Flag found |
| Q3 | Nmap Interpretation | vsftpd backdoor, EternalBlue vulnerability |
| Q4 | OS Fingerprinting | Linux (TTL=64), Windows (TTL=128) |
| Q5 | Nessus Analysis | Ghostcat (CVE-2020-1938), CVSS 10.0 |
| Vulnerability | Affected Service | CVSS | Remediation |
|---|
| vsftpd Backdoor | FTP 21/tcp | Critical | Update vsftpd or remove service |
| EternalBlue (MS17-010) | SMB 139/445 | Critical | Apply KB4012212, disable SMBv1 |
| HTTP Request Smuggling | HTTP 80/tcp | Medium | Update Apache to latest version |
| Ghostcat | AJP 6667/tcp | Critical (10.0) | Update Tomcat, disable AJP if unused |