Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
OpenVAS-Vulnerability-Analysis-Incident-Response-Report — Real-World Simulation: FTP Service Exploitation (ProFTPD CVE-2015-3306) | Kitploit
Tools/GitHubGitHub/bcononugbor-source/openvas-vulnerability-analysis-incident-response-report
ReconnaissanceVulnerability ScannersVulnerability AnalysisExploitationNetwork SecurityPenetration TestingLearning & EducationIncident ResponseLabs & Practice

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHubbcononugbor-source/openvas-vulnerability-analysis-incident-response-report

OpenVAS-Vulnerability-Analysis-Incident-Response-Report

Real-World Simulation: FTP Service Exploitation (ProFTPD CVE-2015-3306)

View Repository
12 months agoNot yet reviewed

OpenVAS-Vulnerability-Analysis-Incident-Response-Report

Real-World Simulation: FTP Service Exploitation (ProFTPD CVE-2015-3306)

Real-World Simulation: FTP Service Exploitation (ProFTPD CVE-2015-3306)

📌 Overview

This project demonstrates a full-cycle vulnerability assessment and incident response workflow using OpenVAS (Greenbone Vulnerability Manager) in a controlled lab environment.

The objective was to identify a known FTP vulnerability (vsftpd backdoor). However, through real analysis and validation, a different critical vulnerability was discovered and investigated — showcasing real-world analyst decision-making rather than assumption-based reporting.

Key Outcomes

  • Identified a critical vulnerability (CVE-2015-3306) in ProFTPD
  • Validated findings through manual verification (Netcat)
  • Performed risk-based analysis and remediation planning
  • Mapped activity to MITRE ATT&CK techniques
  • Produced a structured incident response report

Why This Project Matters

In real-world environments, vulnerabilities don’t always match expectations.

This project demonstrates:

  • Evidence-based analysis over assumptions
  • Validation of scan results with manual techniques
  • Translation of technical findings into business risk
  • Clear and professional reporting for stakeholders

🖥️ Lab Environment

ComponentDescription
Attacker MachineKali Linux
Target SystemMetasploitable (192.168.56.123)
ScannerOpenVAS (Greenbone)

🔍 Vulnerability Identified

CVE-2015-3306 – ProFTPD mod_copy Unauthenticated File Copy

📊 Details

  • Service: FTP (ProFTPD)
  • Port: 21/tcp
  • Severity: Critical
  • Exploit Type: Unauthenticated file access

⚠️ Impact

  • Unauthorized file copying (e.g., /etc/passwd)
  • Potential data exposure
  • Possible escalation to remote code execution (RCE)

Detection & Validation

OpenVAS Detection

  • Vulnerability confirmed via mod_copy exploitation test

  • File copy attempt executed:

    root@kitploit:~
    /etc/passwd → /tmp/passwd.copy
    

Manual Verification

root@kitploit:~
nc 192.168.56.123 21

Result:

root@kitploit:~
220 ProFTPD 1.3.5 Server

Confirms the system is running ProFTPD, not vsftpd

Key Insight (Critical Thinking)

Although the lab expected detection of the vsftpd backdoor, it was not present.

Instead of forcing alignment with expected results, this project:

  • Identified the actual running service
  • Investigated the real vulnerability present
  • Reported based on evidence, not assumption

This reflects real SOC analyst behaviour.

MITRE ATT&CK Mapping

TacticTechniqueID
Initial AccessExploit Public-Facing ApplicationT1190
CollectionData from Local SystemT1005
Command & ControlIngress Tool TransferT1105

Containment Actions

  • Restricted FTP access (port 21)
  • Applied firewall rules to block unsafe commands
  • Limited exposure to internal network
  • Initiated log monitoring for suspicious activity

Remediation

  • Disabled vulnerable mod_copy module
  • Updated/patch ProFTPD
  • Replaced FTP with secure alternative (SFTP)
  • Enforced authentication controls
  • Re-scanned system to validate fix

Lessons Learned

  • Never rely on expected vulnerabilities — validate everything
  • Service enumeration is critical before analysis
  • Default or misconfigured services create major risk
  • Vulnerability scanning must be paired with manual validation

Recommendations

Tactical

  • Patch critical vulnerabilities within 72 hours
  • Disable insecure services like FTP
  • Restrict unnecessary external exposure

Strategic

  • Implement authenticated vulnerability scanning
  • Integrate SIEM (e.g., Splunk) for monitoring
  • Apply network segmentation
  • Establish vulnerability management lifecycle

Supporting Evidence

  • OpenVAS scan results
  • Netcat service verification
  • CVE documentation (CVE-2015-3306)
  • Detection OID: 1.3.6.1.4.1.25623.1.0.105254

Final Thought

This project goes beyond tool usage — it demonstrates the ability to:

Think like an analyst, validate like an engineer, and communicate like a professional.

Next Steps

  • Integrate Splunk for log correlation
  • Simulate exploitation + detection workflow
  • Expand into full threat hunting scenario

Author

Cybersecurity Analyst (in constant training) Focused on SOC Operations, Threat Detection, and Vulnerability Management

Download Tool
Verification ToolNetcat
Service IdentifiedProFTPD 1.3.5