2个稳定版本
1.0.2 | 2022年2月2日 |
---|---|
1.0.1 | 2021年9月10日 |
1.0.0 |
|
0.2.1 |
|
0.2.0 |
|
#1730 in 密码学
12KB
218 行
SSLEnum
使用SSL证书数据(主题名称、主题替代名称)进行侦察 - 悬挂DNS记录 -
安装
- 从
crates.io
安装
cargo install sslenum --force
- 从
github
安装
git clone https://github.com/melbadry9/SSLEnum.git
cd SSLEnum
cargo install --path .
用法
- 帮助
SSLEnum [SSL Data Enumeration] 1.0.1
Mohamed Elbadry <[email protected]>
USAGE:
sslenum [OPTIONS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-d, --domain <DOMAIN> Sets domain to check
-p, --port <PORT> Sets port number [default: 443]
-t, --threads <THREADS> Sets number of threads [default: 5]
cat subdomains.list | sslenum -t 5 -p 443
- 输出
melbadry9@localhost:/test$ sslenum -d example.com | jq
{
"hostname": "example.com",
"ip": "93.184.216.34",
"org": [
"Internet Corporation for Assigned Names and Numbers"
],
"cn": [
"www.example.org"
],
"alt_names": [
"www.example.org",
"example.com",
"example.edu",
"example.net",
"example.org",
"www.example.com",
"www.example.edu",
"www.example.net"
],
"dangling": false
}
依赖项
~8–23MB
~449K SLoC