├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── cve_flow.py ├── data ├── img │ ├── 20-CWE趋势图.png │ ├── 2020-07-CWE趋势图.png │ ├── 2020-08-CWE趋势图.png │ ├── 2020-09-CWE趋势图.png │ └── 2020-CWE趋势图.png └── model │ ├── nlp.h5 │ └── textcnn.h5 ├── doc ├── 1999-2020年CVE数据分析、监控、EXP预警和全局自动化【1】.md ├── 1999-2020年CVE数据分析、监控、EXP预警和全局自动化【2】.md └── design.md ├── lib ├── cve_feeds.py ├── exp_label.py ├── exp_predict.py ├── exploitdb_crawler.py ├── json2sqlite3.py ├── seebug_crawler.py ├── sqlite3_operate.py ├── utils.py └── visualization.py ├── report_20.md ├── report_2020-07.md ├── report_2020-08.md ├── report_2020-09.md ├── report_2020.md ├── requirements.txt ├── run.py └── 项目管理.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/README.md -------------------------------------------------------------------------------- /cve_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/cve_flow.py -------------------------------------------------------------------------------- /data/img/20-CWE趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/img/20-CWE趋势图.png -------------------------------------------------------------------------------- /data/img/2020-07-CWE趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/img/2020-07-CWE趋势图.png -------------------------------------------------------------------------------- /data/img/2020-08-CWE趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/img/2020-08-CWE趋势图.png -------------------------------------------------------------------------------- /data/img/2020-09-CWE趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/img/2020-09-CWE趋势图.png -------------------------------------------------------------------------------- /data/img/2020-CWE趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/img/2020-CWE趋势图.png -------------------------------------------------------------------------------- /data/model/nlp.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/model/nlp.h5 -------------------------------------------------------------------------------- /data/model/textcnn.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/data/model/textcnn.h5 -------------------------------------------------------------------------------- /doc/1999-2020年CVE数据分析、监控、EXP预警和全局自动化【1】.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/doc/1999-2020年CVE数据分析、监控、EXP预警和全局自动化【1】.md -------------------------------------------------------------------------------- /doc/1999-2020年CVE数据分析、监控、EXP预警和全局自动化【2】.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/doc/1999-2020年CVE数据分析、监控、EXP预警和全局自动化【2】.md -------------------------------------------------------------------------------- /doc/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/doc/design.md -------------------------------------------------------------------------------- /lib/cve_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/cve_feeds.py -------------------------------------------------------------------------------- /lib/exp_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/exp_label.py -------------------------------------------------------------------------------- /lib/exp_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/exp_predict.py -------------------------------------------------------------------------------- /lib/exploitdb_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/exploitdb_crawler.py -------------------------------------------------------------------------------- /lib/json2sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/json2sqlite3.py -------------------------------------------------------------------------------- /lib/seebug_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/seebug_crawler.py -------------------------------------------------------------------------------- /lib/sqlite3_operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/sqlite3_operate.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/utils.py -------------------------------------------------------------------------------- /lib/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/lib/visualization.py -------------------------------------------------------------------------------- /report_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/report_20.md -------------------------------------------------------------------------------- /report_2020-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/report_2020-07.md -------------------------------------------------------------------------------- /report_2020-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/report_2020-08.md -------------------------------------------------------------------------------- /report_2020-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/report_2020-09.md -------------------------------------------------------------------------------- /report_2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/report_2020.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/run.py -------------------------------------------------------------------------------- /项目管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404notf0und/CVE-Flow/HEAD/项目管理.md --------------------------------------------------------------------------------