-
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.
Merge branch 'develop-th4' into feature-taxonomy
- Loading branch information
Showing
128 changed files
with
2,230 additions
and
1,030 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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
 | ||
|
||
|
||
[](https://gitter.im/TheHive-Project/TheHive?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
<div> | ||
<p align="center"> | ||
<img src="images/thehive-logo.png"width="600"/> | ||
</p> | ||
</div> | ||
<div> | ||
<p align="center"> | ||
<a href="https://chat.thehive-project.org" target"_blank"><img src="https://img.shields.io/badge/chat-on%20discord-7289da.svg?sanitize=true" alt="Discord"></a> | ||
<a href><img src="https://drone.strangebee.com/api/badges/TheHive-Project/TheHive/status.svg?ref=refs/heads/master-th4" alt="Build status"></a> | ||
<a href="./LICENSE" target"_blank"><img src="https://img.shields.io/github/license/TheHive-Project/TheHive" alt="License"></a> | ||
</p> | ||
</div> | ||
|
||
[TheHive](https://thehive-project.org/) is a scalable 3-in-1 open source and free Security Incident Response Platform designed to make life easier for SOCs, CSIRTs, CERTs and any information security practitioner dealing with security incidents that need to be investigated and acted upon swiftly. It is the perfect companion to [MISP](http://www.misp-project.org/). You can synchronize it with one or multiple MISP instances to start investigations out of MISP events. You can also export an investigation's results as a MISP event to help your peers detect and react to attacks you've dealt with. Additionally, when TheHive is used in conjunction with [Cortex](https://github.com/TheHive-Project/Cortex/), security analysts and researchers can easily analyze tens if not hundred of observables. | ||
|
||
|
@@ -106,7 +114,7 @@ Information, news and updates are regularly posted on [TheHive Project Twitter a | |
Please see our [Code of conduct](code_of_conduct.md). We welcome your contributions. Please feel free to fork the code, play with it, make some patches and send us pull requests via [issues](https://github.com/TheHive-Project/TheHive/issues). | ||
|
||
# Support | ||
Please [open an issue on GitHub](https://github.com/TheHive-Project/TheHive/issues) if you'd like to report a bug or request a feature. We are also available on [Gitter](https://gitter.im/TheHive-Project/TheHive) to help you out. | ||
Please [open an issue on GitHub](https://github.com/TheHive-Project/TheHive/issues) if you'd like to report a bug or request a feature. We are also available on [Discord](https://chat.thehive-project.org) to help you out. | ||
|
||
If you need to contact the project team, send an email to <[email protected]>. | ||
|
||
|
Submodule ScalliGraph
updated
6 files
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
13 changes: 13 additions & 0 deletions
13
cortex/connector/src/main/resources/play/reference-overrides.conf
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 @@ | ||
akka { | ||
actor { | ||
serializers { | ||
cortex-schema-updater = "org.thp.thehive.connector.cortex.models.SchemaUpdaterSerializer" | ||
cortex-jobs = "org.thp.thehive.connector.cortex.services.CortexSerializer" | ||
} | ||
|
||
serialization-bindings { | ||
"org.thp.thehive.connector.cortex.models.SchemaUpdaterMessage" = cortex-schema-updater | ||
"org.thp.thehive.connector.cortex.services.CortexActorMessage" = cortex-jobs | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -22,4 +22,4 @@ cortex = { | |
// # HTTP client configuration (SSL and proxy) | ||
// # ws {} | ||
// }] | ||
} | ||
} |
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
4 changes: 2 additions & 2 deletions
4
cortex/connector/src/main/scala/org/thp/thehive/connector/cortex/models/Job.scala
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
25 changes: 25 additions & 0 deletions
25
...ctor/src/main/scala/org/thp/thehive/connector/cortex/models/SchemaUpdaterSerializer.scala
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,25 @@ | ||
package org.thp.thehive.connector.cortex.models | ||
|
||
import akka.serialization.Serializer | ||
|
||
import java.io.NotSerializableException | ||
|
||
class SchemaUpdaterSerializer extends Serializer { | ||
override def identifier: Int = -639734235 | ||
|
||
override def includeManifest: Boolean = false | ||
|
||
override def toBinary(o: AnyRef): Array[Byte] = | ||
o match { | ||
case RequestDB => Array(0) | ||
case DBReady => Array(1) | ||
case _ => throw new NotSerializableException | ||
} | ||
|
||
override def fromBinary(bytes: Array[Byte], manifest: Option[Class[_]]): AnyRef = | ||
bytes(0) match { | ||
case 0 => RequestDB | ||
case 1 => DBReady | ||
case _ => throw new NotSerializableException | ||
} | ||
} |
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.