-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
1,374 additions
and
24 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 +1,2 @@ | ||
cortexutils | ||
requests |
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,65 @@ | ||
{ | ||
"name": "ONYPHE_ASM", | ||
"version": "1.0", | ||
"author": "Pierre Baudry, Adrien Barchapt, Andrea Garavaglia, Davide Arcuri, James Atack", | ||
"license": "AGPL-V3", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"description": "Retrieve results from ONYPHE Search API for a given ip, domain or fqdn from specified category", | ||
"dataTypeList": ["ip", "domain", "fqdn", "hash"], | ||
"command": "Onyphe/onyphe_analyzer.py", | ||
"baseConfig": "Onyphe", | ||
"config": { | ||
"service": "asm" | ||
}, | ||
"configurationItems": [ | ||
{ | ||
"name": "key", | ||
"description": "Define the API key to use to connect the service", | ||
"type": "string", | ||
"multi": false, | ||
"required": true | ||
}, | ||
{ | ||
"name": "time_filter", | ||
"description": "Specify ONYPHE time filter to be used for searches (see https://www.onyphe.io/docs/onyphe-query-language)", | ||
"type": "string", | ||
"multi": false, | ||
"required": false, | ||
"defaultValue": "-since:1M" | ||
}, | ||
{ | ||
"name": "fields_filter", | ||
"description": "[!!Advanced!!] Modify ONYPHE fields to return in raw data (see https://www.onyphe.io/docs/onyphe-query-language)", | ||
"type": "string", | ||
"multi": false, | ||
"required": false, | ||
"defaultValue": "ip,port,protocol,tag,tls,cpe,cve,hostname,domain,alternativeip,forward,url,organization,transport,organization,device.class,device.product,device.productvendor,device.productversion,product,productvendor,productversion" | ||
}, | ||
{ | ||
"name": "auto_import", | ||
"description": "Automatically import artifacts as observables (risks, cves, assets, ...)", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": true | ||
} | ||
], | ||
"registration_required": true, | ||
"subscription_required": true, | ||
"free_subscription": true, | ||
"service_homepage": "https://www.onyphe.io", | ||
"service_logo": { | ||
"path": "assets/onyphe_logo.png", | ||
"caption": "logo" | ||
}, | ||
"screenshots": [ | ||
{ | ||
"path": "assets/ONYPHE_ASM_long.png", | ||
"caption": "ONYPHE ASM report sample (IPs obscured) with click to expand accordion." | ||
}, | ||
{ | ||
"path": "assets/ONYPHE_ASM_short.png", | ||
"caption": "ONYPHE ASM mini report showing no. of risks" | ||
} | ||
] | ||
} |
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,65 @@ | ||
{ | ||
"name": "ONYPHE_Search", | ||
"version": "1.0", | ||
"author": "Pierre Baudry, Adrien Barchapt, Andrea Garavaglia, Davide Arcuri, James Atack", | ||
"license": "AGPL-V3", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"description": "Retrieve results from ONYPHE Search API for a given ip, domain, fqdn or hash (sha256 TLS fingerprint) from specified category", | ||
"dataTypeList": ["ip", "domain", "fqdn", "hash"], | ||
"command": "Onyphe/onyphe_analyzer.py", | ||
"baseConfig": "Onyphe", | ||
"config": { | ||
"service": "search" | ||
}, | ||
"configurationItems": [ | ||
{ | ||
"name": "key", | ||
"description": "Define the API key to use to connect the service", | ||
"type": "string", | ||
"multi": false, | ||
"required": true | ||
}, | ||
{ | ||
"name": "category", | ||
"description": "Specify ONYPHE category to be used for search API (default datascan)", | ||
"type": "string", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": "datascan" | ||
}, | ||
{ | ||
"name": "time_filter", | ||
"description": "Specify ONYPHE time filter to be used for searches (see https://www.onyphe.io/docs/onyphe-query-language)", | ||
"type": "string", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": "-since:1M" | ||
}, | ||
{ | ||
"name": "auto_import", | ||
"description": "Automatically import artifacts as observables (risks, cves, assets, ...)", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": false | ||
} | ||
], | ||
"registration_required": true, | ||
"subscription_required": true, | ||
"free_subscription": true, | ||
"service_homepage": "https://www.onyphe.io", | ||
"service_logo": { | ||
"path": "assets/onyphe_logo.png", | ||
"caption": "logo" | ||
}, | ||
"screenshots": [ | ||
{ | ||
"path": "assets/ONYPHE_Search_long.png", | ||
"caption": "ONYPHE Search report sample (IPs obscured)" | ||
}, | ||
{ | ||
"path": "assets/ONYPHE_Search_short.png", | ||
"caption": "ONYPHE Search mini report showing no. of open ports" | ||
} | ||
] | ||
} |
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,49 @@ | ||
{ | ||
"name": "ONYPHE_Summary_API", | ||
"version": "1.1", | ||
"author": "Pierre Baudry, Adrien Barchapt, Andrea Garavaglia, Davide Arcuri, James Atack", | ||
"license": "AGPL-V3", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"description": "Retrieve summary information Onyphe has for given ip, domain, or fqdn.", | ||
"dataTypeList": ["ip", "domain", "fqdn"], | ||
"command": "Onyphe/onyphe_analyzer.py", | ||
"baseConfig": "Onyphe", | ||
"config": { | ||
"service": "summary" | ||
}, | ||
"configurationItems": [ | ||
{ | ||
"name": "key", | ||
"description": "Define the API key to use to connect the service", | ||
"type": "string", | ||
"multi": false, | ||
"required": true | ||
}, | ||
{ | ||
"name": "verbose_taxonomies", | ||
"description": "Set true if you want detailed taxonomies for port, subnet, geoloc, domain", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": false | ||
} | ||
], | ||
"registration_required": true, | ||
"subscription_required": true, | ||
"free_subscription": true, | ||
"service_homepage": "https://www.onyphe.io", | ||
"service_logo": { | ||
"path": "assets/onyphe_logo.png", | ||
"caption": "logo" | ||
}, | ||
"screenshots": [ | ||
{ | ||
"path": "assets/Onyphe_Summary_long.png", | ||
"caption": "Onyphe_Summary long report sample" | ||
}, | ||
{ | ||
"path": "assets/Onyphe_Summary_short.png", | ||
"caption": "Onyphe_Summary mini report sample" | ||
} | ||
] | ||
} |
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,65 @@ | ||
{ | ||
"name": "ONYPHE_Vulnscan", | ||
"version": "1.0", | ||
"author": "Pierre Baudry, Adrien Barchapt, Andrea Garavaglia, Davide Arcuri, James Atack", | ||
"license": "AGPL-V3", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"description": "Retrieve vulnerability data from ONYPHE vulnscan category for a given ip, domain, fqdn or hash (sha256 TLS fingerprint)", | ||
"dataTypeList": ["ip", "domain", "fqdn", "hash"], | ||
"command": "Onyphe/onyphe_analyzer.py", | ||
"baseConfig": "Onyphe", | ||
"config": { | ||
"service": "vulnscan" | ||
}, | ||
"configurationItems": [ | ||
{ | ||
"name": "key", | ||
"description": "Define the API key to use to connect the service", | ||
"type": "string", | ||
"multi": false, | ||
"required": true | ||
}, | ||
{ | ||
"name": "time_filter", | ||
"description": "Specify ONYPHE time filter to be used for searches (see https://www.onyphe.io/docs/onyphe-query-language)", | ||
"type": "string", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": "-since:1M" | ||
}, | ||
{ | ||
"name": "only_vulnerable", | ||
"description": "Only return results where a CVE exists (-exists:cve)", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": true | ||
}, | ||
{ | ||
"name": "auto_import", | ||
"description": "Automatically import artifacts as observables (risks, cves, assets, ...)", | ||
"type": "boolean", | ||
"multi": false, | ||
"required": true, | ||
"defaultValue": false | ||
} | ||
], | ||
"registration_required": true, | ||
"subscription_required": true, | ||
"free_subscription": true, | ||
"service_homepage": "https://www.onyphe.io", | ||
"service_logo": { | ||
"path": "assets/onyphe_logo.png", | ||
"caption": "logo" | ||
}, | ||
"screenshots": [ | ||
{ | ||
"path": "assets/ONYPHE_Vulnscan_long.png", | ||
"caption": "ONYPHE Vulnscan report sample (IPs obscured)" | ||
}, | ||
{ | ||
"path": "assets/ONYPHE_Vulnscan_short.png", | ||
"caption": "ONYPHE Vulnscan mini report showing no. of CVEs" | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.