chg: [blog] FlowIntel blog post added

new
Alexandre Dulaunoy 2024-12-09 15:38:28 +01:00
parent 36ba37cc05
commit 098114f672
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
9 changed files with 162 additions and 0 deletions

View File

@ -0,0 +1,67 @@
---
title: FlowIntel 1.3.1 released and MISP integration
banner: /img/flowintel-case.png
author:
- MISP Project team
date: 2024-12-09
tags: ["MISP", "Threat Intelligence", "release", "case management", "FlowIntel"]
layout: post
---
# FlowIntel 1.3.1 released and MISP integration
[FlowIntel](https://github.com/flowintel/flowintel) is a lightweight and flexible platform built to help teams manage their tasks and cases efficiently. It offers a range of features, from detailed documentation tools to integration with external platforms, ensuring that workflows remain seamless and adaptable to various needs.
With this release, FlowIntel introduces robust integration with MISP, enabling the export of indicators and TTPs from FlowIntel to MISP. It also includes full support for all MISP taxonomies and galaxies, ensuring consistent labeling and categorization. Additionally, the integration with [MISP Modules](https://misp.github.io/misp-modules/expansion/) allows for extended capabilities through expansion modules.
## FlowIntel Main features
### Cases and tasks
A case in FlowIntel includes detailed notes, a history of all actions performed as well as a list of tasks. Tasks represent specific actions required to progress or resolve a case. These tasks may include subtasks as well as have users assigned to the individual (sub-)tasks. They also support multiple Markdown-based notes, and allow for file attachments. Notes within tasks can also be exported in either PDF or DOCX formats for documentation or reporting purposes.
#### Case view
![Case view in FlowIntel](/img/flowintel-case.png)
#### Task view
![Task view in FlowIntel](/img/flowintel-task.png)
### Template
A case and its tasks can be converted into a reusable template. Individual tasks can also be turned into templates. These templates can then be used to create new cases, complete with pre-created tasks, notes, tags, and other associated details.
![Template in FlowIntel](/img/flowintel-template.png)
### MISP
In one of the [latest releases](https://github.com/flowintel/flowintel/releases/tag/1.2.0), support for MISP-Objects was introduced, expanding FlowIntel's integration capabilities with MISP. MISP-Objects can now be stored within a case and sent to MISP through connectors. This functionality allows users to either create new MISP events or enrich existing ones directly from FlowIntel.
#### MISP Objects
![MISP Objects and FlowIntel](/img/flowintel-objects.png)
#### Connectors for MISP Objects
![Connectors and MISP Objects](/img/flowintel-connectors.png)
### Analyzer
Cases and tasks in FlowIntel support notes that can be sent to analyzers for processing. The analyzers' results can then be received and stored as either MISP-Objects or additional notes within the platform. This feature was developed with the help of the [MISP-Modules website](https://github.com/MISP/misp-modules/tree/main/website).
![Analyzer in FlowIntel](/img/flowintel-analyzer.png)
![Analyzer in FlowIntel](/img/flowintel-analyzer2.png)
## Availability
[FlowIntel](https://github.com/flowintel/flowintel) is free and open-source, released under the AGPLv3 license! Sharing, liking, or providing feedback about your experience are valuable ways to contribute and support the project. By contributing, you become a co-owner and help ensure the long-term viability of the project as an open-source initiative.
## Funding
The [FETTA (Federated European Team for Threat Analysis)](https://www.circl.lu/pub/press/20240131/) project aims to address this issue by creating a federated team that spans across borders, providing Cyber Threat Intelligence (CTI) products and tooling. FlowIntel is co-funded by CIRCL and the FETTA project under the Digital Europe Program, European Union is co-funding the project through the European Cybersecurity Competence Centre (ECCC).

View File

@ -0,0 +1,95 @@
---
title: MISP 2.4.198 released with many bugs fixed, security fixes and improvements.
date: 2024-09-17
layout: post
tags: ["MISP", "Threat Intelligence", "release" ]
banner: /img/blog/object-collapse.png
---
# MISP v2.4.198 (2024-09-13)
Based on a set of fixes including a security fix, we are pleased to announce the immediate availability of MISP 2.4.198. You can find a list of the detailed changes along with new features further below. As with any security release, we highly encourage everyone to update their instance as soon as possible.
## New
- **[attribute type]** `dom-hash` is a structural fingerprint of HTML's Document Object Model. [Alexandre Dulaunoy]
`dom-hash` is a structural fingerprint of the HTML's Document Object Model (DOM) originally developed by CERT.PL.
The fingerprint is calculated by extracting all the tag names (ignoring the content itself as well as attributes of the HTML Page). The tag names are concatenated with a pipe value `|`, hashed using the SHA-256 algorithm, and truncated to the first 32 characters.
Software such as LookyLoo[1] has implemented the algorithm, which can be used in MISP to share and correlate information about similar web pages (e.g., phishing pages).
[1] https://github.com/Lookyloo/lookyloo/commit/466a3c56148f2ddb911620fd24e4f0c9d602a6a3
## Changes
- **[version]** bump. [iglocska]
- **[PyMISP]** Bump. [Raphaël Vinot]
- **[internal]** Simplified `cake.php` and load dispatcher from absolute path. [Jakub Onderka]
- **[internal]** Server sync debug message when pushing events. [Jakub Onderka]
- **[PyMISP]** Updated to the latest version. [Alexandre Dulaunoy]
- **[ui]** Better description for server settings. [Jakub Onderka]
## Fixes
- **[event-report:edit]** Take first Attribute value from an object if unable to get the priority value. [Sami Mokaddem]
- **[security]** Ensure proper sanitization of sensitive fields in user-login-profiles. [Sami Mokaddem]
Prevents other org-admins (from the same org) from viewing sensitive fields of other org-admins when they confirm their login session.
- [CVE-2024-45509](https://vulnerability.circl.lu/vuln/cve-2024-45509) as been assigned for this vulnerability.
- Reported by Sharad Kumar Dahal of Green Tick Nepal Pvt. Ltd
- **[users:view_login_history]** Column not found error when not being a site-admin. [Sami Mokaddem]
Ensured the user's Role is included in the result.
- **[users:index]** Redact autkey visibility to other org-admins in the same organization. [Sami Mokaddem]
- Since by design, org admins can already change the password of other org-admins (from the same org), this is considered a fix.
- **[security]** ACL ignored on GUI attribute search. [iglocska]
- CVE allocation is pending.
- Reported by KZ-CERT, the National CERT Team of Kazakhstan.
- **[attribute search]** Fixes for invalid returns on `deleted = [0,1]`, fixes #9866. [iglocska]
- Object-level deleted field check blocked the inclusion of non-object attributes.
- **[feed]** Old path replaced with official MISP website path. [Alexandre Dulaunoy]
- **[baseurl]** Preference changed to `MISP.baseurl`, fixes #9895. [iglocska]
- `external_baseurl` no longer used as a preferred source.
- Now intended to be informational only for sharing groups.
- **[internal]** Throw exception in `GpgTool` if `GnuPG.homedir` is empty. [Jakub Onderka]
- **[internal]** Throw exception in `EncryptedValue` invalid state. [Jakub Onderka]
## Other
- Merged branch `develop` into `2.4`. [iglocska]
- Merged branch `develop` from `github.com:MISP/MISP` into `develop`. [iglocska]
- Merged branch `2.4` into `develop`. [Alexandre Dulaunoy]
- Merged branch `fix/authkey-visibility` into `develop`. [Sami Mokaddem]
- Merged pull request #9903 from JakubOnderka/shell-dispatcher. [Jakub Onderka]
- **[internal]** Simplified `cake.php` and loaded dispatcher from absolute path.
- Merged branch `2.4` into `develop`. [iglocska]
- Merged pull request #9685 from JakubOnderka/push-server-sync-debug. [Jakub Onderka]
- **[internal]** Server sync debug message when pushing events.
- Merged branch `2.4` into `develop`. [iglocska]
- Merged pull request #9890 from JakubOnderka/log-unpublished. [Jakub Onderka]
- **[ui]** Better description for server settings.
- Merged pull request #9896 from JakubOnderka/encrypt-exception. [Jakub Onderka]
- Encrypt exception fix.
For a complete list of updates, please refer to the [changelog pages](https://www.misp-project.org/Changelog.txt). Many thanks to all the diligent contributors that ensure that MISP keeps improving rapidly!

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB