mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
增加字段解释的说明文档
This commit is contained in:
@@ -116,6 +116,8 @@ pipenv run python oneforall.py --target example.com --burte True run
|
|||||||
|
|
||||||
其中类似`example_com_now_result`表存放现在子域收集结果,一般情况关注这张表就可以了。
|
其中类似`example_com_now_result`表存放现在子域收集结果,一般情况关注这张表就可以了。
|
||||||
|
|
||||||
|
结果具体字段的解释说明请查看。
|
||||||
|
|
||||||
**🤔使用帮助**
|
**🤔使用帮助**
|
||||||
|
|
||||||
命令行参数只提供了一些常用参数,更多详细的参数配置请见[config.py](https://github.com/shmilylty/OneForAll/tree/master/config/setting.py),如果你认为有些参数是命令界面经常使用到的或缺少了什么参数等问题非常欢迎反馈。由于众所周知的原因,如果要使用一些被墙的收集接口请先到[config.py](https://github.com/shmilylty/OneForAll/tree/master/config/setting.py)配置代理,有些收集模块需要提供API(大多都是可以注册账号免费获取),如果需要使用请到[api.py](https://github.com/shmilylty/OneForAll/tree/master/config/api.py)配置API信息,如果不使用请忽略有关报错提示。(详细模块请阅读[收集模块说明](https://github.com/shmilylty/OneForAll/tree/master/docs/collection_modules.md))
|
命令行参数只提供了一些常用参数,更多详细的参数配置请见[config.py](https://github.com/shmilylty/OneForAll/tree/master/config/setting.py),如果你认为有些参数是命令界面经常使用到的或缺少了什么参数等问题非常欢迎反馈。由于众所周知的原因,如果要使用一些被墙的收集接口请先到[config.py](https://github.com/shmilylty/OneForAll/tree/master/config/setting.py)配置代理,有些收集模块需要提供API(大多都是可以注册账号免费获取),如果需要使用请到[api.py](https://github.com/shmilylty/OneForAll/tree/master/config/api.py)配置API信息,如果不使用请忽略有关报错提示。(详细模块请阅读[收集模块说明](https://github.com/shmilylty/OneForAll/tree/master/docs/collection_modules.md))
|
||||||
|
|||||||
+119
@@ -0,0 +1,119 @@
|
|||||||
|
### id
|
||||||
|
|
||||||
|
标识作用无意义
|
||||||
|
|
||||||
|
### type
|
||||||
|
|
||||||
|
DNS记录类型
|
||||||
|
|
||||||
|
### new
|
||||||
|
|
||||||
|
标记是否是新发现的子域名
|
||||||
|
|
||||||
|
### alive
|
||||||
|
|
||||||
|
是否存活,不存活的判定情况包含:无法解析IP、网络不可达、400、5XX等
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
记录HTTP请求是否成功字段,为空是无法解析IP,为0是网络不可达,为1是成功请求
|
||||||
|
|
||||||
|
### resolve
|
||||||
|
|
||||||
|
记录DNS解析是否成功
|
||||||
|
|
||||||
|
### url
|
||||||
|
|
||||||
|
请求的url链接
|
||||||
|
|
||||||
|
### subdomain
|
||||||
|
|
||||||
|
子域名
|
||||||
|
|
||||||
|
### level
|
||||||
|
|
||||||
|
是几级子域名
|
||||||
|
|
||||||
|
### cname
|
||||||
|
|
||||||
|
cname记录
|
||||||
|
|
||||||
|
### content
|
||||||
|
|
||||||
|
解析到的IP
|
||||||
|
|
||||||
|
### public
|
||||||
|
|
||||||
|
是否是公网IP
|
||||||
|
|
||||||
|
### port
|
||||||
|
|
||||||
|
请求的网络端口
|
||||||
|
|
||||||
|
### status
|
||||||
|
|
||||||
|
HTTP响应的状态码
|
||||||
|
|
||||||
|
### reason
|
||||||
|
|
||||||
|
网络连接情况及详情
|
||||||
|
|
||||||
|
###title
|
||||||
|
|
||||||
|
网站标题
|
||||||
|
|
||||||
|
### banner
|
||||||
|
|
||||||
|
网站指纹信息
|
||||||
|
|
||||||
|
### times
|
||||||
|
|
||||||
|
在爆破中ip重复出现的次数
|
||||||
|
|
||||||
|
### ttl
|
||||||
|
|
||||||
|
DNS解析返回的TTL值
|
||||||
|
|
||||||
|
### cidr
|
||||||
|
|
||||||
|
IP2LOCATION-ASN库查询出的CIDR
|
||||||
|
|
||||||
|
### asn
|
||||||
|
|
||||||
|
IP2LOCATION-ASN库查询出的ASN
|
||||||
|
|
||||||
|
### ip2region
|
||||||
|
|
||||||
|
ip2region库查询出的物理地址
|
||||||
|
|
||||||
|
### ip2location
|
||||||
|
|
||||||
|
ip2location库查询出的物理地址
|
||||||
|
|
||||||
|
### resolver
|
||||||
|
|
||||||
|
所使用的DNS解析服务器
|
||||||
|
|
||||||
|
### module
|
||||||
|
|
||||||
|
发现本子域名所使用的模块
|
||||||
|
|
||||||
|
### source
|
||||||
|
|
||||||
|
发现本子域名的具体来源
|
||||||
|
|
||||||
|
### elapse
|
||||||
|
|
||||||
|
当前模块发现用时
|
||||||
|
|
||||||
|
### find
|
||||||
|
|
||||||
|
当前子域名收集模块找到子域的个数
|
||||||
|
|
||||||
|
### brute
|
||||||
|
|
||||||
|
爆破枚举子域名时所用的字典大小
|
||||||
|
|
||||||
|
### valid
|
||||||
|
|
||||||
|
爆破枚举子域名时中发现的有效子域个数
|
||||||
Reference in New Issue
Block a user