网络安全领域论文搜索的确实很少,推荐一个项目便于大学生和网安从业者查询论文相关资料。
1►介绍
一个搜索网络安全领域顶会论文的小工具
使用python3编写,数据库内容将不定期更新,目前收录了2016~2022,以及部分2023的文章,包含:
- Computer and Communications Security (CCS)
- IEEE Symposium on Security and Privacy (S&P)
- International Security Protocols Workshop (SPW)(这个不是CCF A,是SP的Workshop)
- USENIX Security Symposium (USS)
- CSET @ USENIX Security Symposium (CEST)(非CCF A, USENIX Workshop)
- FOCI @ USENIX Security Symposium (FOCI)(非CCF A, USENIX Workshop)
- SOUPS @ USENIX Security Symposium (SOUPS)(CCF C?, USENIX Workshop)
- WOOT @ USENIX Security Symposium (WOOT)(非CCF A, USENIX Workshop)
- IEEE Transactions on Dependable and Secure Computing (TDSC)
- IEEE Transactions on Information Forensics and Security (TIFS)
- Network and Distributed System Security Symposium (NDSS) (CCF A)
- Annual Computer Security Applications Conference (ACSAC)(CCF B)
- ACM Computing Surveys (CSUR)(CCF None,但是质量比较高,也收录了)
- European Symposium on Research in Computer Security (ESORICS) (CCF B)
- IEEE Computer Security Foundations Symposium (CSFW) (CCF B)
- Dependable Systems and Networks (DSN) (CCF B)
- Computers & Security (COMPSEC) (CCF B)
- International Symposium on Recent Advances in Intrusion Detection (RAID) (CCF B)
- Journal of Computer Security (JCS) (CCF B)
- ACM Transactions on Privacy and Security (CCF 列表显示为 TOPS, DBLP显示为 TISSEC) (CCF B)
- IEEE International Symposium on Reliable Distributed Systems (SRDS) (CCF B)
- IEEE Communications Surveys and Tutorials (COMSUR) (CCF None, 但是质量比较高,也收录了)
- IEEE Journal of Selected Areas in Communications (JSAC) (CCF A)
- IEEE Transactions on Mobile Computing (TMC) (CCF A)
- IEEE/ACM Transactions on Networking (TON) (CCF A)
- ACM Conference on Applications, Technologies, Architectures, and Protocols for Computer Communication (SIGCOMM) (CCF A)
- ACM/IEEE International Conference on Mobile Computing and Networking (MobiCom) (CCF A)
- IEEE Conference on Computer Communications (INFOCOM) (CCF A)
- Symposium on Networked Systems Design and Implementation (NSDI) (CCF A)
- The Web Conference (WWW) (CCF A)
使用Flask作为基础框架,写的比较简单,主要为实现功能,代码很丑(一下午撸完前后端,凑合看)
有些功能应该放后端做比较好,当时写的时候脑子有点抽,后面有时间再慢慢改吧
git clone https://github.com/mactavishmeng/paperSearcher.git
cd paperSearcher
pip3 install -r requirements.txt
python3 website.py
默认开放在 http://127.0.0.1:5000
,可以修改webpage.py中的最后一行,来指定监听的IP和端口:
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80, debug=False)
建议仅在本地使用,不要开在0.0.0.0(因为查询接口可能有SQL注入,写的匆忙……没有做太多防护)
查询逻辑非常简单,通过 +
与 |
分割关键字。
比如:
- 关键字为
blockchain+security
,查询结果则在 title 和 abstract 中搜索同时包含blockchain
和security
的文章。 - 关键字为
security | internet of things | evaluation
,表示只要任意出现security
,internet of things
,evaluation
这三个关键词的任意一个,就会返回该条记录。
4►项目获取
https://github.com/mactavishmeng/paperSearcher
原文始发于微信公众号(李白你好):一个搜索网络安全领域论文的工具
免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉。
- 左青龙
- 微信扫一扫
-
- 右白虎
- 微信扫一扫
-
评论