diff --git a/analyzers/StopForumSpam/Dockerfile b/analyzers/StopForumSpam/Dockerfile new file mode 100644 index 000000000..b08a9f860 --- /dev/null +++ b/analyzers/StopForumSpam/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3-alpine + +LABEL author="Marc-Andre Doll, STARC by EXAPROBE" \ + description="Query http://www.stopforumspam.com to check if an IP or email address is a known spammer." \ + license="AGPL-V3" \ + source="https://github.com/TheHive-Project/Cortex-Analyzers" \ + title="StopForumSpam" \ + url="https://github.com/TheHive-Project/Cortex-Analyzers" \ + vendor="TheHive" \ + version="1.0.0" + +WORKDIR /worker + +COPY . StopForumSpam +RUN pip install --no-cache-dir -r StopForumSpam/requirements.txt + +ENTRYPOINT StopForumSpam/stopforumspam_analyzer.py \ No newline at end of file diff --git a/analyzers/StopForumSpam/StopForumSpam.json b/analyzers/StopForumSpam/StopForumSpam.json index b8c3b6be6..daf9e2115 100644 --- a/analyzers/StopForumSpam/StopForumSpam.json +++ b/analyzers/StopForumSpam/StopForumSpam.json @@ -3,7 +3,7 @@ "author": "Marc-Andre Doll, STARC by EXAPROBE", "license": "AGPL-V3", "url": "https://github.com/TheHive-Project/Cortex-Analyzers", - "version": "1.0", + "version": "1.0.0", "baseConfig": "StopForumSpam", "config": { "check_tlp": true,