├── .gitignore ├── README.md ├── README ├── 1722824139064.png ├── Athena&type=Date.svg+xml ├── Athena-17223224382131.svg+xml ├── Athena-17223224382132.svg+xml ├── Athena.svg+xml ├── afrog-17223242727202.svg+xml ├── afrog-17223242727203.svg+xml ├── afrog-17223242727204.svg+xml ├── afrog.svg+xml ├── afrogfilename=go.svg+xml ├── athena.png ├── crush&type=Date.svg+xml ├── flow.png ├── image-20240730151729463.png ├── image-20240730151753318.png ├── image-20240730151807137.png ├── image-20240730174957206.png ├── image-20240731172901942.png ├── image-20240801233643812.png ├── image-20240801234222860.png ├── image-20240802000129644.png ├── image-20240806170011362.png ├── image-20240806170051695.png ├── image-20240806170139600.png ├── image-20240806170211117.png ├── image-20240806170249731.png ├── image-20240806170448471.png ├── image-20240806170631700.png ├── image-20240806171017939.png └── total.svg+xml ├── banner.py ├── collectors ├── __init__.py ├── base_collector.py ├── collector_afrog.py ├── collector_ali.py ├── collector_edb.py ├── collector_github.py ├── collector_msf.py ├── collector_oscs.py ├── collector_packetstorm.py ├── collector_poc.py ├── collector_qax.py ├── collector_seebug.py ├── collector_threatbook.py ├── collector_vulhub.py ├── decorators.py ├── manager.py └── utils.py ├── config.py ├── config.yaml ├── database ├── db_class.py ├── init.py ├── models.py └── utils.py ├── flaskr ├── app.py ├── static │ ├── css │ │ └── style.css │ ├── img │ │ └── logo.png │ └── js │ │ └── scripts.js └── templates │ ├── 404.html │ ├── daily.html │ ├── index.html │ └── vuls.html ├── main.py ├── notifications ├── dingtalk.py ├── email_template.html ├── feishu.py ├── mail.py ├── notifier.py └── wxwork.py ├── processing ├── filter.py └── utils.py ├── putty.md ├── requirements.txt ├── test.py └── tests ├── test_collectors.py └── test_processing.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .venv/ 3 | __pycache__/ 4 | tests/ 5 | todo* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README.md -------------------------------------------------------------------------------- /README/1722824139064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/1722824139064.png -------------------------------------------------------------------------------- /README/Athena&type=Date.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/Athena&type=Date.svg+xml -------------------------------------------------------------------------------- /README/Athena-17223224382131.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/Athena-17223224382131.svg+xml -------------------------------------------------------------------------------- /README/Athena-17223224382132.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/Athena-17223224382132.svg+xml -------------------------------------------------------------------------------- /README/Athena.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/Athena.svg+xml -------------------------------------------------------------------------------- /README/afrog-17223242727202.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/afrog-17223242727202.svg+xml -------------------------------------------------------------------------------- /README/afrog-17223242727203.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/afrog-17223242727203.svg+xml -------------------------------------------------------------------------------- /README/afrog-17223242727204.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/afrog-17223242727204.svg+xml -------------------------------------------------------------------------------- /README/afrog.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/afrog.svg+xml -------------------------------------------------------------------------------- /README/afrogfilename=go.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/afrogfilename=go.svg+xml -------------------------------------------------------------------------------- /README/athena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/athena.png -------------------------------------------------------------------------------- /README/crush&type=Date.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/crush&type=Date.svg+xml -------------------------------------------------------------------------------- /README/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/flow.png -------------------------------------------------------------------------------- /README/image-20240730151729463.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240730151729463.png -------------------------------------------------------------------------------- /README/image-20240730151753318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240730151753318.png -------------------------------------------------------------------------------- /README/image-20240730151807137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240730151807137.png -------------------------------------------------------------------------------- /README/image-20240730174957206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240730174957206.png -------------------------------------------------------------------------------- /README/image-20240731172901942.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240731172901942.png -------------------------------------------------------------------------------- /README/image-20240801233643812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240801233643812.png -------------------------------------------------------------------------------- /README/image-20240801234222860.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240801234222860.png -------------------------------------------------------------------------------- /README/image-20240802000129644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240802000129644.png -------------------------------------------------------------------------------- /README/image-20240806170011362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170011362.png -------------------------------------------------------------------------------- /README/image-20240806170051695.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170051695.png -------------------------------------------------------------------------------- /README/image-20240806170139600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170139600.png -------------------------------------------------------------------------------- /README/image-20240806170211117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170211117.png -------------------------------------------------------------------------------- /README/image-20240806170249731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170249731.png -------------------------------------------------------------------------------- /README/image-20240806170448471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170448471.png -------------------------------------------------------------------------------- /README/image-20240806170631700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806170631700.png -------------------------------------------------------------------------------- /README/image-20240806171017939.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/image-20240806171017939.png -------------------------------------------------------------------------------- /README/total.svg+xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/README/total.svg+xml -------------------------------------------------------------------------------- /banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/banner.py -------------------------------------------------------------------------------- /collectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/base_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/base_collector.py -------------------------------------------------------------------------------- /collectors/collector_afrog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_afrog.py -------------------------------------------------------------------------------- /collectors/collector_ali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_ali.py -------------------------------------------------------------------------------- /collectors/collector_edb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_edb.py -------------------------------------------------------------------------------- /collectors/collector_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_github.py -------------------------------------------------------------------------------- /collectors/collector_msf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_msf.py -------------------------------------------------------------------------------- /collectors/collector_oscs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_oscs.py -------------------------------------------------------------------------------- /collectors/collector_packetstorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_packetstorm.py -------------------------------------------------------------------------------- /collectors/collector_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_poc.py -------------------------------------------------------------------------------- /collectors/collector_qax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_qax.py -------------------------------------------------------------------------------- /collectors/collector_seebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_seebug.py -------------------------------------------------------------------------------- /collectors/collector_threatbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_threatbook.py -------------------------------------------------------------------------------- /collectors/collector_vulhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/collector_vulhub.py -------------------------------------------------------------------------------- /collectors/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/decorators.py -------------------------------------------------------------------------------- /collectors/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/manager.py -------------------------------------------------------------------------------- /collectors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/collectors/utils.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/config.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/config.yaml -------------------------------------------------------------------------------- /database/db_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/database/db_class.py -------------------------------------------------------------------------------- /database/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/database/init.py -------------------------------------------------------------------------------- /database/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/app.py -------------------------------------------------------------------------------- /flaskr/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/static/css/style.css -------------------------------------------------------------------------------- /flaskr/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/static/img/logo.png -------------------------------------------------------------------------------- /flaskr/static/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskr/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/templates/404.html -------------------------------------------------------------------------------- /flaskr/templates/daily.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/templates/daily.html -------------------------------------------------------------------------------- /flaskr/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/templates/index.html -------------------------------------------------------------------------------- /flaskr/templates/vuls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/flaskr/templates/vuls.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/main.py -------------------------------------------------------------------------------- /notifications/dingtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/dingtalk.py -------------------------------------------------------------------------------- /notifications/email_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/email_template.html -------------------------------------------------------------------------------- /notifications/feishu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/feishu.py -------------------------------------------------------------------------------- /notifications/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/mail.py -------------------------------------------------------------------------------- /notifications/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/notifier.py -------------------------------------------------------------------------------- /notifications/wxwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/notifications/wxwork.py -------------------------------------------------------------------------------- /processing/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/processing/filter.py -------------------------------------------------------------------------------- /processing/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /putty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/putty.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leesinz/Athena/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_collectors.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_processing.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------