Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/expzhizhuo/cnvd_general_assets
配合爱企查和fofa实现注册资本大于5000w公司的公网通用资产查询搜索,方便证书挖掘
https://github.com/expzhizhuo/cnvd_general_assets
Last synced: 3 months ago
JSON representation
配合爱企查和fofa实现注册资本大于5000w公司的公网通用资产查询搜索,方便证书挖掘
- Host: GitHub
- URL: https://github.com/expzhizhuo/cnvd_general_assets
- Owner: expzhizhuo
- Created: 2022-10-28T01:17:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-29T10:25:05.000Z (about 2 years ago)
- Last Synced: 2023-10-10T03:30:25.812Z (about 1 year ago)
- Language: Python
- Size: 437 KB
- Stars: 65
- Watchers: 2
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - expzhizhuo/cnvd_general_assets - 配合爱企查和fofa实现注册资本大于5000w公司的公网通用资产查询搜索,方便证书挖掘 (Python)
README
# 使用说明
配合爱企查和fofa实现注册资本大于5000w公司的公网通用资产查询搜索,方便证书挖掘
## 使用爱企查筛选出来注册资本大于5000w的公司
![image-20221028092000750](images/image-20221028092000750.png)
然后将结果导出来
![image-20221028092235398](images/image-20221028092235398.png)
在导出记录中下载即可
## 脚本配置
首先安装依赖
```
pip3 install -r requirements.txt
```启动命令
```
python3 bat.py -f 文件名.xls
```fofa会员配置
```
config = {
'email': '', # fofa的登录邮箱
'key': '', # fofa个人中心的key
'size': '10', # 公网资产的数量默认是10,可以根据自己的习惯进行调整,
'base_url': 'https://fofa.info/api/v1/search/stats', # fofa api接口地址
'user_url': 'https://fofa.info/api/v1/info/my', # fofa 账户信息接口
}
```## 结果
其中程序内置有关键词过滤
![image-20221028093452878](images/image-20221028093452878.png)
可以根据自己的习惯进行修改,配置。其中保存导出的数据结果是公网资产大于10的,当然了也可以自己修改
![image-20221028093731748](images/image-20221028093731748.png)
系统会自动生成结果文件,保存的文件为result.txt和result.csv两种文件格式,方便大家筛选数据
![image-20221028093341232](images/image-20221028093341232.png)
![image-20221028093415578](images/image-20221028093415578.png)