Skip to content

Commit

Permalink
Merge pull request #1258 from deepanshu-eiq/eiq-responder
Browse files Browse the repository at this point in the history
EclecticIQ responder
  • Loading branch information
nusantara-self authored Sep 18, 2024
2 parents 5902b1a + c320dff commit ee1e423
Show file tree
Hide file tree
Showing 4 changed files with 404 additions and 0 deletions.
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

0 comments on commit ee1e423

Please sign in to comment.