diff --git a/AUTHORS b/AUTHORS index 27de4530b7..7db3412333 100644 --- a/AUTHORS +++ b/AUTHORS @@ -11,6 +11,11 @@ Contributors * CERT Banque de France (CERT-BDF) * Nabil Adouani +Contributed Analyzers +--------------------- + +* URLCategory: Eric Capuano + Copyright (C) 2014-2016 Thomas Franco Copyright (C) 2014-2016 Saâd Kadhi Copyright (C) 2014-2016 Jérôme Leonard diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..ab2ca13705 --- /dev/null +++ b/CHANGELOG.md @@ -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)* \ No newline at end of file diff --git a/README.md b/README.md index 7597b15d4c..673d0e29f8 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,14 @@ TheHive is written in Scala and uses ElasticSearch 2.x for storage. Its REST API  ## Analyzers -The first public release of TheHive is provided with 7 analyzers: +TheHive 2.9.1 is provided with 8 analyzers: + DNSDB*: leverage Farsight's [DNSDB](https://www.dnsdb.info/) for pDNS. + DomainTools*: look up domain names, IP addresses, WHOIS records, etc. using the popular [DomainTools](http://domaintools.com/) service API. + Hippocampe: query threat feeds through [Hippocampe](https://github.com/CERT-BDF/Hippocampe), a FOSS tool that centralizes feeds and allows you to associate a confidence level to each one of them (that can be changed over time) and get a score indicating the data quality. + MaxMind: geolocation. + Olevba: parse OLE and OpenXML files using [olevba](http://www.decalage.info/python/olevba) to detect VBA macros, extract their source code etc. + Outlook MsgParser: this analyzer allows to add an Outlook message file as an observable and parse it automatically. ++ URLCategory: checks the Fortinet categories of URLs. + VirusTotal*: look up files, URLs and hashes through [VirusTotal](https://www.virustotal.com/). The star (*) indicates that the analyzer needs an API key to work correctly. We do not provide API keys. You have to use your own. diff --git a/analyzers/MaxMind/report/success_short.html b/analyzers/MaxMind/report/success_short.html index 2289ffa02c..b0b410cbdb 100644 --- a/analyzers/MaxMind/report/success_short.html +++ b/analyzers/MaxMind/report/success_short.html @@ -1 +1 @@ -IP location: {{content.country.names.fr}} / {{content.continent.names.fr}} \ No newline at end of file +IP location: {{content.country.name}} / {{content.continent.name}} diff --git a/analyzers/URLCategory/report/success_long.html b/analyzers/URLCategory/report/success_long.html new file mode 100644 index 0000000000..a48ebbb6da --- /dev/null +++ b/analyzers/URLCategory/report/success_long.html @@ -0,0 +1,18 @@ +
This field is required
diff --git a/ui/app/views/partials/case/case.details.html b/ui/app/views/partials/case/case.details.html index 087c1c8f0b..9574c2a44c 100644 --- a/ui/app/views/partials/case/case.details.html +++ b/ui/app/views/partials/case/case.details.html @@ -134,6 +134,7 @@