-
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 branch 'jonashergenhahn-master' into develop
- Loading branch information
Showing
4 changed files
with
84 additions
and
34 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 |
---|---|---|
@@ -1,25 +1,51 @@ | ||
{ | ||
"name": "HIBP_Query", | ||
"version": "1.0", | ||
"author": "Matt Erasmus", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"license": "AGPL-V3", | ||
"description": "Query haveibeenpwned.com for a compromised email address", | ||
"dataTypeList": ["mail"], | ||
"baseConfig": "HIBP", | ||
"config": { | ||
"service": "query", | ||
"url": "https://haveibeenpwned.com/api/v2/breachedaccount/" | ||
"name": "HIBP_Query", | ||
"version": "2.0", | ||
"author": "Matt Erasmus, Jonas Hergenhahn", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"license": "AGPL-V3", | ||
"description": "Query haveibeenpwned.com for a compromised email address", | ||
"dataTypeList": [ | ||
"mail" | ||
], | ||
"baseConfig": "HIBP", | ||
"config": { | ||
"service": "query", | ||
"url": "https://haveibeenpwned.com/api/v3/breachedaccount/" | ||
}, | ||
"command": "HIBP/hibpquery_analyzer.py", | ||
"configurationItems": [ | ||
{ | ||
"name": "unverified", | ||
"description": "Include unverified breaches", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": true | ||
}, | ||
"command": "HIBP/hibpquery_analyzer.py", | ||
"configurationItems": [ | ||
{ | ||
"name": "unverified", | ||
"description": "Include unverified breaches", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": true | ||
} | ||
] | ||
{ | ||
"name": "truncate", | ||
"description": "Truncated response means only the name of data breaches", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": false | ||
}, | ||
{ | ||
"name": "api_key", | ||
"description": "Api key for hibp", | ||
"type": "string", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": "" | ||
}, | ||
{ | ||
"name": "retries", | ||
"description": "Retries to request api while getting status code 429", | ||
"type": "number", | ||
"multi": false, | ||
"required": false, | ||
"defaultValue": 5 | ||
} | ||
] | ||
} |
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
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
File renamed without changes.