Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shadowabi/AutoDomain
自动提取主域名/IP,并调用fofa、quake、hunter等网络资产测绘系统搜集子域名,可配合指纹扫描工具达到快速资产整理
https://github.com/shadowabi/AutoDomain
Last synced: 22 days ago
JSON representation
自动提取主域名/IP,并调用fofa、quake、hunter等网络资产测绘系统搜集子域名,可配合指纹扫描工具达到快速资产整理
- Host: GitHub
- URL: https://github.com/shadowabi/AutoDomain
- Owner: shadowabi
- License: apache-2.0
- Created: 2022-06-08T13:35:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-10T07:04:24.000Z (5 months ago)
- Last Synced: 2024-08-05T17:44:07.648Z (4 months ago)
- Language: Go
- Homepage:
- Size: 115 KB
- Stars: 61
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - shadowabi/AutoDomain - 自动提取主域名/IP,并调用fofa、quake、hunter等网络资产测绘系统搜集子域名,可配合指纹扫描工具达到快速资产整理 (Go)
README
# AutoDomain
自动提取域名/IP,并调用 fofa、quake、hunter 等测绘工具搜集子域名,可配合指纹扫描工具达到快速资产整理本项目所使用的 fofa、quake API 参考自https://github.com/EASY233/Finger
hunter API 参考自https://github.com/W01fh4cker/hunter-to-excel/## 安装
下载 release 中的二进制文件使用
或使用 Makefile 进行编译二进制文件后使用
## 配置
当首次运行 AutoDomain 时,会检测 config.yaml 文件是否存在,不存在则会自动创建
填入的对应内容可使用对应的指定模块
## 用法
```
Usage:AutoDomain [flags]
AutoDomain [command]Available Commands:
all search domain from all engine
daydaymap search domain from daydaymap
fofa search domain from fofa
help Help about any command
hunter search domain from hunter
netlas search domain from netlas
pulsedive search domain from pulsedive
quake search domain from quake
virustotal search domain from virustotal
zoomeye search domain from zoomeyeFlags:
-f, --file string 从文件中读取目标地址 (Input FILENAME)
-h, --help help for AutoDomain
--logLevel string 设置日志等级 (Set log level) [trace|debug|info|warn|error|fatal|panic] (default "info")
-o, --output string 输入结果文件输出的位置 (Enter the location of the scan result output) (default "./result.txt")
-t, --timeout int 输入每个 http 请求的超时时间 (Enter the timeout period for every http request) (default 15)
-u, --url string 输入目标地址 (Input [ip|domain|url])Use "AutoDomain [command] --help" for more information about a command.
```## 功能列表
1. 多种网络资产测绘,自动识别 ip 和域名,分别采用对应语法
2. 文件输出时为:http(s):// + ip(域名)+端口号格式,方便指纹识别
3. 可识别 URL,自动提取域名、ip
4. 自动去重(http 与 https 不去重)
5. 阶段性保存,当使用 all 模块时,每完成一个模块均会自动写入到文件,防止结果丢失## 旧版本
python 版本在 old 分支
旧的 go 版本在 go-old 分支