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

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

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

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

工具目录

分类

查看所有分类
Loading categories
voidsec-proxy — 用于SOCKS5代理链、端口扫描、DNS枚举、哈希破解、反向shell生成、隐写术和匿名化的多模块攻击性安全工具包。 | Kitploit
工具/GitHubGitHub/voidsecsoftwares/voidsec-proxy
密码破解侦察加密/解密工具端口扫描DNS和子域名枚举数据泄露Web安全隐写术数字取证渗透测试Shellcode 生成
GitHub
312天前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
voidsecsoftwares/voidsec-proxy

voidsec-proxy

用于SOCKS5代理链、端口扫描、DNS枚举、哈希破解、反向shell生成、隐写术和匿名化的多模块攻击性安全工具包。

查看仓库

voidsec-proxy


root@kitploit:~
 ██╗   ██╗ ██████╗ ██╗██████╗ ███████╗███████╗ ██████╗
 ██║   ██║██╔═══██╗██║██╔══██╗██╔════╝██╔════╝██╔════╝
 ██║   ██║██║   ██║██║██║  ██║███████╗█████╗  ██║     
 ╚██╗ ██╔╝██║   ██║██║██║  ██║╚════██║██╔══╝  ██║     
  ╚████╔╝ ╚██████╔╝██║██████╔╝███████║███████╗╚██████╗
   ╚═══╝   ╚═════╝ ╚═╝╚═════╝ ╚══════╝╚══════╝ ╚═════╝

v3.0.0 | 18 个模块 | 50+ 条命令 | 零依赖

License: MIT Python: 3.8+ Platform: Linux Version: 3.0.0


不是又一个脚本小子工具。这个是真能干活的。



目录

  • 安装
  • 快速开始
  • 命令参考
    • proxy — SOCKS5 链轮换
    • scan — 端口扫描器
    • dns — DNS 工具包
    • crack — 哈希破解
    • password — 密码生成器
    • mutate — 字典变异器
    • recon — 网络侦察
    • web — Web 指纹识别
    • exfil — 隐蔽信道与编码
    • encrypt — AES-GCM 文件加密
    • shred — 安全文件删除
    • stego — 隐写术
    • shell — 反弹 shell 生成器
    • forensic — 文件分析
    • anon — 匿名化
    • plugin — 插件管理
    • config — 配置
  • 代理文件格式
  • 插件 API
  • 许可证

安装

root@kitploit:~
# Clone the repository
git clone https://github.com/VoidSecSoftwares/voidsec-proxy.git

# Enter the directory
cd voidsec-proxy

# Install (basic)
pip install -e .

# Install with crypto support (AES-GCM, ChaCha20, steganography)
pip install -e ".[crypto]"

要求: Python 3.8+ | 零强制依赖


快速开始

root@kitploit:~
# Start a SOCKS5 proxy chain
voidsec-proxy proxy -f proxies.txt

# Scan a target
voidsec-proxy scan -t 10.0.0.1

# Resolve DNS
voidsec-proxy dns example.com

# Generate a password
voidsec-proxy password -l 20 -c 5

# Full recon on a target
voidsec-proxy recon -t 10.0.0.1

命令参考


proxy

带自动轮换的 SOCKS5 代理链。

root@kitploit:~
# Basic usage
voidsec-proxy proxy -f proxies.txt

# Custom listen address and port
voidsec-proxy proxy -f proxies.txt -l 0.0.0.0 -p 1080

# Shuffle proxy order on start
voidsec-proxy proxy -f proxies.txt -s

scan

多线程 TCP 端口扫描器,支持 banner 抓取。

root@kitploit:~
# Scan common ports
voidsec-proxy scan -t 10.0.0.1

# Scan specific ports
voidsec-proxy scan -t 10.0.0.1 -p 22,80,443,3389

# Scan port range, export to JSON
voidsec-proxy scan -t 10.0.0.1 -r 1-1000 -o results.json -f json

dns

DNS 解析、反向查询和子域名枚举。

root@kitploit:~
# Resolve A records
voidsec-proxy dns example.com

# Multiple record types
voidsec-proxy dns example.com -t A -t MX -t TXT

# Reverse DNS lookup
voidsec-proxy dns 8.8.8.8 -r

# Subdomain enumeration
voidsec-proxy dns example.com -e -w wordlist.txt

crack

支持字典的哈希破解。

root@kitploit:~
# Crack MD5 hash
voidsec-proxy crack --hash 5f4dcc3b5aa765d61d8327deb882cf99 -t md5 -w rockyou.txt

# Hash text with SHA256
voidsec-proxy crack --hash-text "hello" -t sha256

# Hash file
voidsec-proxy crack --hash-file secret.bin -t sha512

password

带强度审计的密码生成器。

root@kitploit:~
# Generate 5 passwords, 20 chars each
voidsec-proxy password -l 20 -c 5

# Audit a password
voidsec-proxy password -a "MyP@ssw0rd"

# Generate 6-word passphrase
voidsec-proxy password --passphrase -l 6

mutate

字典变异引擎。

root@kitploit:~
# Apply all mutations
voidsec-proxy mutate -w wordlist.txt -o mutated.txt -m leet,upper,append_num,dups

# Leet speak + numbers
voidsec-proxy mutate -w wordlist.txt -o out.txt -m leet,append_num

recon

完整的网络侦察。

root@kitploit:~
# Full recon (IP, geo, ASN, open ports)
voidsec-proxy recon -t 10.0.0.1

# WHOIS lookup
voidsec-proxy recon --whois example.com

# IP geolocation
voidsec-proxy recon --geo 8.8.8.8

# ASN lookup
voidsec-proxy recon --asn 8.8.8.8

# Traceroute
voidsec-proxy recon --traceroute 8.8.8.8

web

Web 应用指纹识别和目录爆破。

root@kitploit:~
# Full fingerprint
voidsec-proxy web -u https://target.com

# Header analysis
voidsec-proxy web --headers https://target.com

# Directory brute-force
voidsec-proxy web --dirbust https://target.com -w wordlist.txt

exfil

隐蔽信道与数据编码。

root@kitploit:~
# Encode data
voidsec-proxy exfil --encode "secret data" -m base64
voidsec-proxy exfil --encode "secret data" -m morse
voidsec-proxy exfil --encode "secret data" -m dns

# Decode data
voidsec-proxy exfil --decode "dGVzdA==" -m base64

# Vigenere cipher
voidsec-proxy exfil --vigenere "encrypted" --key "secret"

encrypt

AES-GCM 文件加密。

root@kitploit:~
# Encrypt a file
voidsec-proxy encrypt -i secret.txt -o secret.enc -p "mypassword"

# Decrypt a file
voidsec-proxy encrypt -i secret.enc -o secret.txt -p "mypassword" -d
参数描述
-i, --input输入文件(必填)
-o, --output输出文件(必填)
-p, --password加密密码(必填)

shred

多遍覆写的安全文件删除。

root@kitploit:~
# Shred file with 5 passes
voidsec-proxy shred -f file.txt -n 5
参数描述默认值
-f, --file要粉碎的文件(必填)—
-n, --passes覆写遍数3

stego

PNG 隐写术 — 在图像中隐藏和提取数据。

root@kitploit:~
# Hide data in image
voidsec-proxy stego -i image.png -f secret.txt -o stego.png

# Extract hidden data
voidsec-proxy stego -i stego.png -e -o extracted.txt
参数描述
-i, --imagePNG 图像文件
-f, --secret要隐藏的机密文件
-o, --output输出文件
-e, --extract

shell

带 payload 编码的反弹 shell 生成器。

root@kitploit:~
# Python reverse shell
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t python

# Bash with base64 encoding
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t bash -e base64

# PowerShell reverse shell
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t powershell

forensic

文件分析与取证。

root@kitploit:~
# Full file metadata
voidsec-proxy forensic -f suspicious.exe

# Entropy analysis
voidsec-proxy forensic --entropy unknown_file

# Extract strings
voidsec-proxy forensic --strings binary.bin

# Hexdump
voidsec-proxy forensic --hexdump file.bin

# Compare two files
voidsec-proxy forensic --compare file1.txt --file2 file2.txt

anon

匿名化工具。

root@kitploit:~
# Spoof MAC address
voidsec-proxy anon --spoof-mac eth0

# Set random hostname
voidsec-proxy anon --hostname

# Start TOR proxy
voidsec-proxy anon --tor --start --port 9050

# Clear system tracks
voidsec-proxy anon --clear

# Full anonymization
voidsec-proxy anon --interface eth0

plugin

插件管理。

root@kitploit:~
# List installed plugins
voidsec-proxy plugin list

# Create example plugin
voidsec-proxy plugin create -n myplugin

# Execute a plugin
voidsec-proxy plugin execute -n myplugin

config

配置管理。

root@kitploit:~
# Show all config
voidsec-proxy config show

# Set a value
voidsec-proxy config set -k scanner.threads 200

# Get a value
voidsec-proxy config get -k listen

# Reset to defaults
voidsec-proxy config reset
参数描述
actionshow、、、

代理文件格式

root@kitploit:~
# One proxy per line
# Format: host:port

10.0.0.1:1080
proxy.example.com:9050

# With authentication: user:pass:host:port

admin:secret:192.168.1.5:9050

插件 API

在 ~/.voidsec/plugins/ 中创建一个 Python 文件:

root@kitploit:~
PLUGIN_NAME = "myplugin"
PLUGIN_DESC = "My custom plugin"
PLUGIN_VERSION = "1.0"

def run(*args, **kwargs):
    print("Hello from my plugin!")
    return "Success"

然后运行:

root@kitploit:~
voidsec-proxy plugin execute -n myplugin

Windows 武器库

在找 Windows 工具?我们有一个单独的仓库,包含 8 个 PowerShell GUI 工具:

→ VoidSec Windows Arsenal


许可证

MIT 许可证 — 详见 LICENSE。

下载工具
参数描述默认值
-f, --file代理文件(必填)—
-l, --listen监听地址127.0.0.1
-p, --port监听端口9050
-s, --shuffle打乱代理顺序false
参数描述默认值
-t, --target目标主机(必填)—
-p, --ports逗号分隔的端口常见端口
-r, --port-range端口范围(例如 1-1000)—
-o, --output输出文件stdout
-f, --format输出格式(text、json、csv)text
参数描述默认值
domain目标域名(必填)—
-t, --type记录类型(可重复)A
-r, --reverse反向 DNS 查询false
-e, --enumerate子域名枚举false
-w, --wordlist用于枚举的字典—
参数描述默认值
--hash要破解的哈希—
--hash-text要哈希的文本—
--hash-file要哈希的文件—
-t, --type哈希类型(md5、sha1、sha256、sha512)md5
-w, --wordlist用于破解的字典—
参数描述默认值
-l, --length密码长度 / 单词数量16
-c, --count要生成的密码数量5
-a, --audit审计密码强度—
--passphrase改为生成口令短语false
--separator口令短语单词分隔符-
--no-upper排除大写字母false
--no-lower排除小写字母false
--no-digits排除数字false
--no-symbols排除符号false
参数描述默认值
-w, --wordlist输入字典(必填)—
-o, --output输出文件(必填)—
-m, --mutations逗号分隔:leet、upper、append_num、prepend_num、dups、reverse、append_sym全部
参数描述
-t, --target用于完整侦察的目标主机
--whoisWHOIS 查询
--geoIP 地理位置
--asnASN 查询
--traceroute到目标的 Traceroute
参数描述
-u, --url目标 URL
--headers获取并分析响应头
--fingerprint技术指纹识别
--dirbust目录爆破
-w, --wordlist用于爆破的字典
参数描述
--encode要编码的文本
--decode要解码的文本
-m, --methodbase32、base64、hex、morse、binary、rot13、caesar、dns
-s, --shift凯撒密码位移
--vigenere维吉尼亚密码文本
--key密码密钥
--decrypt解密而非加密
-d, --decrypt
解密而非加密
提取而非隐藏
参数描述默认值
--lhost监听主机(必填)—
--lport监听端口(必填)—
-t, --typeShell 类型:python、bash、perl、php、ruby、java、powershell、netcat、socat、lua、cpython
-e, --encodingPayload 编码:base64、hex、url、double_base64、base64_bash、base64_python、rot13—
参数描述
-f, --file目标文件
--entropy计算熵值
--compare与 --file2 比较
--strings提取可打印字符串
--hexdump前 N 字节的十六进制转储
--min-length最小字符串长度
参数描述
--spoof-mac要伪造 MAC 的接口
--new-mac指定 MAC 地址(省略则随机)
--hostname设置随机主机名
--torTOR 操作
--start启动 TOR
--stop停止 TOR
--portTOR SOCKS 端口
--clear清除 bash/zsh 历史、日志、/tmp
--random-hostname打印随机主机名
--interface用于完整匿名化的网络接口
set
get
reset
-k, --key配置键(支持点号表示法)
--value要设置的值
工具描述
VoidCryptAES-256-GCM 文件加密
GhostProcess进程查看与操作
NetPhantom网络侦察
RegGhost注册表分析器
StealthLog系统痕迹清理器
HashVault密码与哈希工具包
SysPhantom系统侦察
AntiForensics证据销毁