├── Dockerfile ├── LICENSE ├── README.md ├── app ├── config-sample.json ├── main.py └── plugins │ ├── __init__.py │ ├── hybrid_analysis.py │ ├── malshare.py │ ├── virusbay.py │ └── virustotal.py ├── docker-compose.yml └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/README.md -------------------------------------------------------------------------------- /app/config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/config-sample.json -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/main.py -------------------------------------------------------------------------------- /app/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/plugins/hybrid_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/plugins/hybrid_analysis.py -------------------------------------------------------------------------------- /app/plugins/malshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/plugins/malshare.py -------------------------------------------------------------------------------- /app/plugins/virusbay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/plugins/virusbay.py -------------------------------------------------------------------------------- /app/plugins/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/app/plugins/virustotal.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSec/metasearch-public/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | requests 3 | redis --------------------------------------------------------------------------------