一个搜索网络安全领域论文的工具

admin 2024年1月6日09:55:22评论27 views字数 2581阅读8分36秒阅读模式
免责声明:由于传播、利用本公众号李白你好所提供的信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,公众号李白你好及作者不为此承担任何责任,一旦造成后果请自行承担!如有侵权烦请告知,我们会立即删除并致歉。谢谢!

 

网络安全领域论文搜索的确实很少,推荐一个项目便于大学生和网安从业者查询论文相关资料。

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.gitcd paperSearcherpip3 install -r requirements.txtpython3 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,表示只要任意出现 securityinternet of thingsevaluation这三个关键词的任意一个,就会返回该条记录。

4项目获取

https://github.com/mactavishmeng/paperSearcher

 

原文始发于微信公众号(李白你好):一个搜索网络安全领域论文的工具

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2024年1月6日09:55:22
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   一个搜索网络安全领域论文的工具http://cn-sec.com/archives/2366618.html

发表评论

匿名网友 填写信息