Files
PySpider-ICS/README.md

46 lines
1.3 KiB
Markdown
Raw Normal View History

2019-03-08 13:57:29 +08:00
# PySpider-ICS
2019-03-08 14:07:18 +08:00
2020-09-03 14:37:43 +08:00
## 对大佬有帮助的话就给个Star吧
2019-03-08 14:07:18 +08:00
### 说明
此项目用来记录使用pyspider爬虫框架爬取工控相关数据(漏洞、预警、安全事件等)
2019-03-08 14:42:40 +08:00
数据来源如下
2019-03-08 14:07:18 +08:00
#### 美国工控系统网络应急响应小组(*ICS-CERT*)
https://ics-cert.us-cert.gov/advisories
2019-03-08 14:42:40 +08:00
![1552026920160](assets/1552026920160.png)
![1552026977010](assets/1552026977010.png)
2019-03-08 14:07:18 +08:00
#### CNVD-工控系统行业漏洞
http://ics.cnvd.org.cn
2019-03-08 14:42:40 +08:00
![1552027006406](assets/1552027006406.png)
![1552027042387](assets/1552027042387.png)
2019-03-08 14:07:18 +08:00
#### Siemens ProductCERT
https://new.siemens.com/global/en/products/services/cert.html#SecurityPublications
2019-03-08 14:42:40 +08:00
![1552027071451](assets/1552027071451.png)
2020-09-03 14:37:43 +08:00
针对西门子CERT直接对其https://cert-portal.siemens.com/productcert/json/advisories.json 的json数据接口进行解析额外查询了pyspider对json数据解析的方法http://docs.pyspider.org/en/latest/apis/self.send_message/
2019-03-08 14:42:40 +08:00
2020-09-03 14:37:43 +08:00
**利用send_message将单个页面的多个结果for循环后每个dict结果都调用send_message去发送message给自己的项目在收到message的地方再返回dict结果。**
2019-03-08 14:42:40 +08:00
2019-03-08 14:07:18 +08:00
#### 工业互联网安全应急响应中心
https://www.ics-cert.org.cn/
2019-03-08 14:42:40 +08:00
![1552027329515](assets/1552027329515.png)
2020-09-03 14:37:43 +08:00
暂时这么多,其他需要再添加