免责声明:由于传播、利用本公众号李白你好所提供的信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,公众号李白你好及作者不为此承担任何责任,一旦造成后果请自行承担!如有侵权烦请告知,我们会立即删除并致歉。谢谢!
网络安全领域论文搜索的确实很少,推荐一个项目便于大学生和网安从业者查询论文相关资料。
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作为基础框架,写的比较简单,主要为实现功能,代码很丑(一下午撸完前后端,凑合看)
有些功能应该放后端做比较好,当时写的时候脑子有点抽,后面有时间再慢慢改吧
2►
安装方法
安装完Python3之后,将本仓库clone到本地,使用pip安装flask即可。
git clone https://github.com/mactavishmeng/paperSearcher.git
cd paperSearcher
pip3 install -r requirements.txt
python3 website.py
3►
使用方法
默认开放在 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►
项目获取
点击关注下方名片进入公众号
回复关键字【240105】获取下载链接
5►
往期精彩
公众号文案推广诈骗套路|分析一波这个背后的秘密
攻击面发现平台对比
高效的 Web 渗透测试:Mitmdump 和 Burp Suite 整合详解