Successful AMQP Multi-Queue Purge Burst
editSuccessful AMQP Multi-Queue Purge Burst
editIdentifies multiple successful AMQP queue purge operations issued by the same client to the same broker within a short period. The AMQP queue.purge method removes all messages from a queue that are not awaiting acknowledgment. Purging several distinct queues can indicate deliberate message destruction or disruption after broker credentials are compromised.
Rule type: esql
Rule indices: None
Severity: high
Risk score: 73
Runs every: 5m
Searches indices from: now-9m (Date Math format, see also Additional look-back time)
Maximum alerts per execution: 100
References:
Tags:
- Domain: Network
- Use Case: Network Security Monitoring
- Use Case: Threat Detection
- Tactic: Impact
- Data Source: Network Packet Capture
- Resources: Investigation Guide
Version: 2
Rule authors:
- Elastic
Rule license: Elastic License v2
Investigation guide
editTriage and analysis
Investigating Successful AMQP Multi-Queue Purge Burst
The AMQP queue.purge method removes every ready message from the selected queue. This rule requires successful purge responses for at least three distinct queues from one client-to-broker pair, reducing noise from isolated administrative operations while identifying activity capable of causing broad message loss and application disruption.
Possible investigation steps
-
Review
client.ip,server.ip,Esql.purge_count,Esql.queue_count,Esql.queues,Esql.first_purge, andEsql.last_purgeto determine the scope and timing of the activity. -
Search the underlying
logs-network_traffic.amqp-*events and confirm that each transaction hasnetwork_traffic.amqp.method: "queue.purge",network_traffic.amqp.no-wait: false, andnetwork_traffic.status: "OK". Together, these values indicate that Packetbeat observed the broker’squeue.purge-okresponse. - Use RabbitMQ audit and application logs to identify the authenticated user associated with the client connection. AMQP message properties are not authoritative authentication identities.
- Determine whether the source is approved administration or maintenance automation and whether a documented change authorized purging all affected queues.
- Assess message loss and application impact. Review queue-depth metrics, dead-letter queues, publisher errors, consumer lag, and service availability around the alert.
-
Correlate the client and account with
queue.delete,exchange.delete, binding changes, unusual consumers, authentication anomalies, and endpoint alerts.
False positive analysis
- Queue maintenance, integration testing, disaster-recovery exercises, and application reset workflows may intentionally purge several queues.
-
Treat confirmed recurring activity as a benign true positive and scope exceptions to approved client-to-broker pairs or queue names. Broadly excluding
queue.purgewould conceal the destructive behavior this rule is intended to detect.
Response and remediation
- Revoke or restrict unauthorized RabbitMQ credentials and block the client if the purge was not approved.
- Preserve broker, network, and application evidence before restarting affected services.
- Restore or replay messages from upstream systems, backups, or dead-letter infrastructure where possible.
- Review RabbitMQ permissions and remove unnecessary queue-configuration rights from application accounts.
- Investigate the client host and associated account for credential theft and additional destructive activity.
Setup
editSetup
This rule requires the Elastic Network Packet Capture integration with the AMQP protocol analyzer enabled and cleartext AMQP 0.9.1 visibility. AMQP header and method-argument parsing must remain enabled so the method, queue, and transaction status are populated. AMQP over TLS is opaque to passive capture. RabbitMQ audit logs are required to map the observed client connection to an authenticated broker identity.
Rule query
editFROM logs-network_traffic.amqp-*
| WHERE
data_stream.dataset == "network_traffic.amqp" AND
network_traffic.amqp.method == "queue.purge" AND
network_traffic.amqp.`no-wait` == false AND
network_traffic.status == "OK" AND
client.ip IS NOT NULL AND
server.ip IS NOT NULL AND
network_traffic.amqp.queue IS NOT NULL
| STATS
Esql.purge_count = COUNT(*),
Esql.queue_count = COUNT_DISTINCT(network_traffic.amqp.queue),
Esql.queues = VALUES(network_traffic.amqp.queue),
Esql.first_purge = MIN(@timestamp),
Esql.last_purge = MAX(@timestamp)
BY client.ip, server.ip
| WHERE Esql.purge_count >= 3 AND Esql.queue_count >= 3
| SORT Esql.queue_count DESC, Esql.purge_count DESC
| KEEP client.ip, server.ip, Esql.purge_count, Esql.queue_count, Esql.queues, Esql.first_purge, Esql.last_purge
Framework: MITRE ATT&CKTM
-
Tactic:
- Name: Impact
- ID: TA0040
- Reference URL: https://attack.mitre.org/tactics/TA0040/
-
Technique:
- Name: Data Destruction
- ID: T1485
- Reference URL: https://attack.mitre.org/techniques/T1485/