-
Notifications
You must be signed in to change notification settings - Fork 384
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
4 changed files
with
24 additions
and
6 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,11 +1,29 @@ | ||
{ | ||
"name": "Fortiguard_URLCategory", | ||
"version": "2.0", | ||
"version": "2.1", | ||
"author": "Eric Capuano", | ||
"url": "https://github.com/TheHive-Project/Cortex-Analyzers", | ||
"license": "AGPL-V3", | ||
"dataTypeList": ["domain", "url"], | ||
"description": "Check the Fortiguard category of a URL or a domain.", | ||
"description": "Check the Fortiguard category of a URL or a domain. Check the full available list at https://fortiguard.com/webfilter/categories", | ||
"baseConfig": "Fortiguard", | ||
"command": "Fortiguard/urlcategory.py" | ||
"command": "Fortiguard/urlcategory.py", | ||
"configurationItems": [ | ||
{ | ||
"name": "malicious_categories", | ||
"description": "List of FortiGuard categories to be considered as malicious", | ||
"type": "string", | ||
"multi": true, | ||
"required": true, | ||
"defaultValue": ["Malicious Websites", "Phishing", "Spam URLs"] | ||
}, | ||
{ | ||
"name": "suspicious_categories", | ||
"description": "List of FortiGuard categories to be considered as suspicious", | ||
"type": "string", | ||
"multi": true, | ||
"required": true, | ||
"defaultValue": ["Newly Observed Domain", "Newly Registered Domain", "Dynamic DNS", "Proxy Avoidance", "Hacking"] | ||
} | ||
] | ||
} |
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.
File renamed without changes.