Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EclecticIQ responder #1258

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions responders/EclecticIQIndicator/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:2

WORKDIR /worker
COPY . EclecticIQIndicator
RUN pip install --no-cache-dir -r EclecticIQIndicator/requirements.txt
ENTRYPOINT EclecticIQIndicator/EclecticIQIndicator.py
35 changes: 35 additions & 0 deletions responders/EclecticIQIndicator/EclecticIQIndicator.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "EclecticIQ_Indicator_API",
"version": "1.0",
"author": "EclecticIQ",
"url": "https://eclecticiq.com",
"license": "MIT",
"description": "Submit indicators to the EclecticIQ Intelligence Center api",
"dataTypeList": ["thehive:case_artifact", "thehive:case"],
"command": "EclecticIQIndicator/EclecticIQIndicator.py",
"baseConfig": "EclecticIQIndicator",
"configurationItems": [
{
"name": "eiq_host_url",
"description": "EclecticIQ Intelligence Center host url",
"type": "string",
"multi": false,
"required": true
},
{
"name": "eiq_api_key",
"description": "EclecticIQ Intelligence Center API key",
"type": "string",
"multi": false,
"required": true
},
{
"name": "group_name",
"description": "EclecticIQ Intelligence Center Group Name",
"type": "string",
"multi": false,
"required": true,
"defaultValue": "Testing Group"
}
]
}
Loading