-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1258 from deepanshu-eiq/eiq-responder
EclecticIQ responder
- Loading branch information
Showing
4 changed files
with
404 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |
Oops, something went wrong.