Tag: SIEM

Rule Deployment into a Data Plane
Rule Deployment into a Data Plane

How It Works Uncoder AI supports native integration with Microsoft Sentinel, Google SecOps, and Elastic Stack, enabling users to deploy detection rules directly from the platform. Once a rule is authored or translated within Uncoder AI, the user can instantly push it into their SIEM’s data plane without exporting files or manual upload. In the […]

Read More
Translate from Sigma into 48 Languages
Translate from Sigma into 48 Languages

How It Works Uncoder AI makes it easy to translate Sigma rules into detection formats used by 48 different platforms. Users simply select the desired output language—like Splunk, Sentinel, or CrowdStrike Falcon—and Uncoder AI instantly generates a syntactically valid detection in the chosen format. The translation happens entirely within SOC Prime’s infrastructure, ensuring privacy and […]

Read More
OpenSearch Circuit Breakers
OpenSearch Circuit Breakers

OpenSearch employs circuit breakers to prevent nodes from running out of Java Virtual Machine (JVM) heap memory, which could lead to crashes. These circuit breakers estimate the memory required for operations and compare it to the available heap size. If an operation exceeds the configured limit, OpenSearch throws a CircuitBreakerException to avoid potential OutOfMemoryErrors. Types of Circuit […]

Read More
Splunk: How to Write a Query to Monitor Multiple Sources and Send Alert if they Stop Coming
Splunk: How to Write a Query to Monitor Multiple Sources and Send Alert if they Stop Coming

Step 1:Write a Query to Monitor Multiple Sources Identify the log sources you want to monitor. Create a Splunk search query that checks for events from those sources within a specific timeframe. Example query: Query without additional fields Query with additional fields “message” For example, on the screenshot, I set two hosts to monitor and […]

Read More
Handling the Dynamic Pruning Failure in Cardinality Aggregations in Elasticsearch
Handling the Dynamic Pruning Failure in Cardinality Aggregations in Elasticsearch

When working with Elasticsearch, you may encounter the following error during complex queries involving cardinality aggregations: This error typically occurs when Elasticsearch’s dynamic pruning mechanism, designed to optimize aggregation queries, struggles to handle high cardinality (i.e., a large number of unique terms or values). Let’s dive into what this means and how to resolve it. […]

Read More
Calculating Session Duration in Logstash Using Ruby
Calculating Session Duration in Logstash Using Ruby

When processing event streams with Logstash, you may encounter a need to calculate the duration of a session — the difference between its start and end times. This is a common scenario when analyzing time-sensitive data.Logstash provides the flexibility to perform such operations by embedding custom Ruby code into your pipeline configuration. Here’s how you […]

Read More
How to Update GeoLite2 Database in ArcSight Manager
How to Update GeoLite2 Database in ArcSight Manager

To update the GeoLite2 database in your ArcSight Manager environment, follow these steps: 1. Register on the MaxMind Portal Visit the MaxMind Portal and log into your account. If you don’t have an account, register for one. 2. Download the GeoLite2 Database Once logged in, navigate to the Account Portal. In the sidebar menu, select “Download Files”. This will take […]

Read More
Configuring Elasticsearch Authentication with LDAPS
Configuring Elasticsearch Authentication with LDAPS

LDAP (Lightweight Directory Access Protocol) is a popular method for centralizing user authentication and access control across an organization. Configuring Elasticsearch to use LDAP over a secure connection (LDAPS) adds an additional layer of security by encrypting communication between Elasticsearch and the LDAP server. This article provides a step-by-step guide to setting up LDAPS for […]

Read More
Get started with ISM (Index State Management)
Get started with ISM (Index State Management)

To start with Index State Management, first of all, you need to set up policies.You can use Visual Editor or Dev-tools. If you choose Visual Editor, then do the following:In Index Management > State management policies, choose Create policy and click Continue: Inside the Create policy, you need to set the policy info:        Policy ID       Description (optional) Set Error […]

Read More
Addressing read_only_allow_delete After Disk Space Issues
Addressing read_only_allow_delete After Disk Space Issues

Occasionally, Elasticsearch administrators may encounter a situation where all indices are automatically set to read_only_allow_delete=true, preventing write operations. This typically occurs when the cluster runs out of available disk space. In this article, we’ll explain why this happens, how to resolve it, and how to prevent it in the future. Why Do Indices Become read_only_allow_delete=true Elasticsearch includes […]

Read More