-
Notifications
You must be signed in to change notification settings - Fork 640
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
51 changed files
with
932 additions
and
150 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
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,42 @@ | ||
# Change Log | ||
|
||
## [2.9.1](https://github.com/CERT-BDF/TheHive/tree/2.9.1) | ||
|
||
**Implemented enhancements:** | ||
|
||
- Update logo and favicon [\#45](https://github.com/CERT-BDF/TheHive/issues/45) | ||
- Inconsistent wording between the login and user management pages [\#44](https://github.com/CERT-BDF/TheHive/issues/44) | ||
- MaxMind Analyzer 'Short Report' has hard-coded language [\#23](https://github.com/CERT-BDF/TheHive/issues/23) | ||
- Don't update imported case from MISP if it is deleted or merged [\#22](https://github.com/CERT-BDF/TheHive/issues/22) | ||
|
||
**Fixed bugs:** | ||
|
||
- NPE occurs at startup if conf directory doesn't exists [\#41](https://github.com/CERT-BDF/TheHive/issues/41) | ||
- Resource not found by Assets controller [\#38](https://github.com/CERT-BDF/TheHive/issues/38) | ||
- Systemd startup script does not work [\#29](https://github.com/CERT-BDF/TheHive/issues/29) | ||
- MISP event parsing error when it doesn't contain any attribute [\#25](https://github.com/CERT-BDF/TheHive/issues/25) | ||
- Phantom tabs [\#18](https://github.com/CERT-BDF/TheHive/issues/18) | ||
- The Action button of observables list is blank [\#15](https://github.com/CERT-BDF/TheHive/issues/15) | ||
- Description becomes empty when you cancel an edition [\#13](https://github.com/CERT-BDF/TheHive/issues/13) | ||
- Metric Labels Not Showing in Case View [\#10](https://github.com/CERT-BDF/TheHive/issues/10) | ||
- chrome on os x - header alignment [\#5](https://github.com/CERT-BDF/TheHive/issues/5) | ||
- Tags not saving when creating observable. [\#4](https://github.com/CERT-BDF/TheHive/issues/4) | ||
|
||
**Closed issues:** | ||
|
||
- Statistics based on Tags [\#37](https://github.com/CERT-BDF/TheHive/issues/37) | ||
- Statistics on a per case template name / prefix basis [\#31](https://github.com/CERT-BDF/TheHive/issues/31) | ||
- Observable Viewing Page [\#17](https://github.com/CERT-BDF/TheHive/issues/17) | ||
- Case merging [\#14](https://github.com/CERT-BDF/TheHive/issues/14) | ||
- Give us something to work with! [\#2](https://github.com/CERT-BDF/TheHive/issues/2) | ||
|
||
**Merged pull requests:** | ||
|
||
- New analyzer to check URL categories [\#24](https://github.com/CERT-BDF/TheHive/pull/24) ([ecapuano](https://github.com/ecapuano)) | ||
- Fix "Run from Docker" [\#9](https://github.com/CERT-BDF/TheHive/pull/9) ([2xyo](https://github.com/2xyo)) | ||
- Fixing a Simple Typo [\#6](https://github.com/CERT-BDF/TheHive/pull/6) ([swannysec](https://github.com/swannysec)) | ||
- Fixed broken link to Wiki [\#1](https://github.com/CERT-BDF/TheHive/pull/1) ([Neo23x0](https://github.com/Neo23x0)) | ||
|
||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<span class="label label-info">IP location: {{content.country.names.fr}} / {{content.continent.names.fr}}</span> | ||
<span class="label label-info">IP location: {{content.country.name}} / {{content.continent.name}}</span> |
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,18 @@ | ||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
URL Categories of <strong>{{artifact.data}}</strong> | ||
</div> | ||
<div class="panel-body"> | ||
<dl class="dl-horizontal" ng-if="content.fortinet_category"> | ||
<dt>Fortinet URL Category: </dt> | ||
<dd class="wrap">{{content.fortinet_category}} | ||
<i class="fa fa-search"></i> | ||
<a ng-href="http://www.fortiguard.com/iprep?data={{artifact.data}}&lookup=Lookup" target="_blank"> | ||
View Full Report</a> | ||
<i class="fa fa-recycle"></i> | ||
<a ng-href="http://www.fortiguard.com/iprep_form?data={{artifact.data}}" target="_blank"> | ||
Request Recategorization</a> | ||
</dd> | ||
</dl> | ||
</div> | ||
</div> |
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,4 @@ | ||
<span class="label label-info"> | ||
URLCat: | ||
<span ng-if="content.fortinet_category">{{content.fortinet_category}} </span> | ||
</span> |
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,85 @@ | ||
#!/usr/bin/env python | ||
# encoding: utf-8 | ||
import sys | ||
import os | ||
import json | ||
import codecs | ||
import time | ||
import re | ||
import requests | ||
|
||
if sys.stdout.encoding != 'UTF-8': | ||
if sys.version_info.major == 3: | ||
sys.stdout = codecs.getwriter('utf-8')(sys.stdout.buffer, 'strict') | ||
else: | ||
sys.stdout = codecs.getwriter('utf-8')(sys.stdout, 'strict') | ||
if sys.stderr.encoding != 'UTF-8': | ||
if sys.version_info.major == 3: | ||
sys.stderr = codecs.getwriter('utf-8')(sys.stderr.buffer, 'strict') | ||
else: | ||
sys.stderr = codecs.getwriter('utf-8')(sys.stderr, 'strict') | ||
|
||
# load artifact | ||
artifact = json.load(sys.stdin) | ||
|
||
def error(message): | ||
print('{{"errorMessage":"{}"}}'.format(message)) | ||
sys.exit(1) | ||
|
||
def get_param(name, default=None, message=None, current=artifact): | ||
if isinstance(name, str): | ||
name = name.split('.') | ||
if len(name) == 0: | ||
return current | ||
else: | ||
value = current.get(name[0]) | ||
if value == None: | ||
if message != None: | ||
error(message) | ||
else: | ||
return default | ||
else: | ||
return get_param(name[1:], default, message, value) | ||
|
||
def debug(msg): | ||
#print >> sys.stderr, msg | ||
pass | ||
|
||
def fortinet_category(data): | ||
debug('>> fortinet_category ' + str(data)) | ||
pattern = re.compile("(?:Category: )([\w\s]+)") | ||
baseurl = 'http://www.fortiguard.com/iprep?data=' | ||
tailurl = '&lookup=Lookup' | ||
url = baseurl + data + tailurl | ||
r = requests.get(url) | ||
category_match = re.search(pattern, r.content, flags=0) | ||
return category_match.group(1) | ||
|
||
http_proxy = get_param('config.proxy.http') | ||
https_proxy = get_param('config.proxy.https') | ||
max_tlp = get_param('config.max_tlp', 1) | ||
tlp = get_param('tlp', 2) # amber by default | ||
data_type = get_param('dataType', None, 'Missing dataType field') | ||
service = get_param('config.service', None, 'Service parameter is missing') | ||
|
||
# run only if TLP condition is met | ||
if tlp > max_tlp: | ||
error('Error with TLP value ; see max_tlp in config or tlp value in input data') | ||
|
||
# setup proxy | ||
if http_proxy != None: | ||
os.environ['http_proxy'] = http_proxy | ||
if https_proxy != None: | ||
os.environ['https_proxy'] = https_proxy | ||
|
||
if service == 'query': | ||
if data_type == 'url' or data_type == 'domain': | ||
data = get_param('data', None, 'Data is missing') | ||
json.dump({ | ||
'fortinet_category': fortinet_category(data) | ||
}, sys.stdout, ensure_ascii=False) | ||
else: | ||
error('Invalid data type') | ||
else: | ||
error('Invalid service') | ||
|
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,13 @@ | ||
{ | ||
"name": "URLCategory", | ||
"version": "1.0", | ||
"report": "URLCategory/report", | ||
"description": "URL Category query: checks the category of a specific URL or domain", | ||
"dataTypeList": ["url", "domain"], | ||
"baseConfig" : "URLCategory", | ||
"config": { | ||
"service": "query", | ||
"max_tlp": 10 | ||
}, | ||
"command": "URLCategory/urlcategory.py" | ||
} |
Empty file.
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
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
Oops, something went wrong.