Skip to main content
T1657Impacthard difficulty

Financial Theft

Financial Theft (T1657) is MITRE's Impact-tactic umbrella for the payout stage of an intrusion: BEC wire fraud, ransomware extortion, and direct account-fund theft. There is no single artifact to alert on, since the objective is realized through other techniques. The detectable signal is the BEC mailbox rule, the payment-redirect email, or the extortion note that precedes the loss.

Practice detecting Financial Theft on realistic SIEM alerts in SOCSimulator Operations.

SIEM

What is Financial Theft?

Financial Theft is documented as technique T1657 in MITRE ATT&CK® v19.1 under the Impact tactic. Detection requires visibility into SIEM telemetry.

Financial Theft is not a technical intrusion step so much as the goal that other techniques serve, so 'how it works' varies by the payout mechanism. In business email compromise, an attacker who already holds valid credentials for a finance-adjacent mailbox, usually through phishing or credential stuffing, does not need malware at all: they create an inbox rule with New-InboxRule or modify one with Set-InboxRule, adding a ForwardTo or RedirectTo parameter that silently copies incoming mail to an address they control, or a MoveToFolder that shunts specific senders into RSS Feeds or Conversation History where the real user never looks.

With visibility into the mailbox, the attacker watches for an active invoice or payroll thread, then either replies from inside it (so the message inherits the thread's legitimacy) or registers a lookalike domain and sends a fresh message claiming updated banking details. The ask is always the same shape: change the destination account for a payment already in motion. Because the request rides on real context, subject lines, invoice numbers, vendor names pulled straight from the compromised mailbox, it reads as routine correspondence rather than a cold phishing attempt.

Ransomware-driven extortion realizes the same Impact objective through a different chain: Inhibit System Recovery (T1490) removes the backups, Data Encrypted for Impact (T1486) locks the files, and the ransom note is the financial-theft instrument, demanding cryptocurrency payment for a decryption key or to prevent a leak-site publication. Direct account compromise, logging into a banking or crypto-exchange portal with stolen credentials and initiating a transfer, is the third path, and it depends entirely on Valid Accounts (T1078) rather than any email trickery.

Where Financial Theft fits in an attack

BEC-style financial theft sits at the very end of a short chain: credential phishing or password-spray gets the attacker into a mailbox (Valid Accounts, T1078), the inbox rule (T1114.003 or T1564.008) establishes persistence and visibility without ever touching the endpoint, and the fraudulent payment request is the last message sent before the attacker moves on. There is rarely lateral movement or privilege escalation involved, which is precisely why EDR-centric detection strategies miss it: the entire operation happens inside a SaaS mailbox.

MITRE's own procedure notes place SilverTerrier's BEC campaigns against high-tech, higher-education, and manufacturing targets in this category, and groups like Scattered Spider are called out specifically for the mailbox-hiding-rule pattern that Splunk's T1564.008 analytic detects. On the extortion side, Akira, Medusa, Play, and Storm-0501 all run double-extortion chains where the financial-theft demand follows exfiltration and encryption rather than preceding it, which is why a shadow-copy-deletion alert should be read as a financial-theft precursor, not just a data-integrity event.

Detection Strategies

The following detection strategies help SOC analysts identify Financial Theft activity. These methods apply across SIEM environments and can be implemented as detection rules, correlation queries, or behavioral analytics in your security platform.

SIEM detection

SPL
`o365_management_activity` (Operation=New-InboxRule OR Operation=set-InboxRule)
| eval match1=mvfind('Parameters{}.Name', "ForwardTo")
| eval match2=mvfind('Parameters{}.Name', "ForwardAsAttachmentTo")
| eval match3=mvfind('Parameters{}.Name', "RedirectTo")
| where match1>=0 OR match2>=0 OR match3>=0
| eval ForwardTo=coalesce(ForwardTo, ForwardAsAttachmentTo, RedirectTo)
| stats count min(_time) as firstTime max(_time) as lastTime values(Name) as Name by dest user ForwardTo
| `o365_new_email_forwarding_rule_created_filter`

Splunk Security Content's 'O365 New Email Forwarding Rule Created' analytic. It catches any inbox rule that adds ForwardTo, ForwardAsAttachmentTo, or RedirectTo, the exact primitive LAPSUS$, Scattered Spider, and Star Blizzard have used to silently copy a compromised mailbox out to an attacker address.

SPL
`o365_management_activity` Workload=Exchange Operation IN ("New-InboxRule", "Set-InboxRule")
| stats min(_time) as firstTime, max(_time) as lastTime, latest(Name) as Name, latest(MarkAsRead) as MarkAsRead, latest(MoveToFolder) as MoveToFolder by object_id user
| lookup ut_shannon_lookup word as Name
| eval entropy_score=if(ut_shannon<=2, 1, 0)
| eval len_score=if(len(Name)<=3, 1, 0)
| eval read_score=if(MarkAsRead="True", 1, 0)
| eval folder_score=if(match(MoveToFolder, "^(RSS|Conversation History|Archive)"), 1, 0)
| eval suspicious_score=entropy_score+len_score+read_score+folder_score
| where suspicious_score>2
| `o365_bec_email_hiding_rule_created_filter`

Splunk Security Content's 'O365 BEC Email Hiding Rule Created' analytic (mapped to T1564.008, associated with Scattered Spider). It scores rule-name entropy, name length, auto-read-marking, and hidden-folder targeting rather than any single field, because the hiding pattern is combinatorial, not a fixed string.

Simulated example generated by SOCSimulator Research
RecordType: ExchangeAdmin
CreationTime: 2026-07-16 09:41:07
Operation: New-InboxRule
Workload: Exchange
UserId: ap-clerk@corp.com
ClientIP: 41.203.88.14
Parameters:
  Name: "Invoice Routing"
  ForwardTo: "invoice-support@corp-finance-updates.com"
  StopProcessingRules: True
ResultStatus: Success

Tuning and false positives

Legitimate inbox rules forward mail constantly: an employee setting up a personal Gmail forward, an out-of-office delegate rule, a shared-mailbox routing rule maintained by IT, or a vacation auto-forward all trigger the same New-InboxRule or Set-InboxRule operation the BEC detections watch. A rule pointed at a known partner domain, created through a documented change-management ticket, or matching an existing delegation policy is routine, not an indicator of compromise.

The tuning that holds up is scoring, not the raw event. Splunk's entropy-and-length approach exists because a single field (rule exists, forwards externally) drowns analysts in normal traffic; requiring multiple suspicious attributes together, short random rule name, auto-mark-as-read, a hidden destination folder, and an external forward, cuts the false-positive rate sharply. Allow-list forwards to verified partner and personal domains employees have registered through IT, and treat any rule touching a finance, executive, or HR mailbox as inherently higher-priority regardless of score.

Example Alerts

These realistic alert examples show what Financial Theft looks like in your security tools. Use them to tune detection rules and train analysts to recognize true positives versus false positives in live environments.

HighSIEM

New Inbox Rule Forwards Finance Mailbox to External Domain

Exchange Online audit log recorded New-InboxRule on mailbox ap-clerk@corp.com with ForwardTo set to invoice-support@corp-finance-updates.com, a domain registered nine days earlier and unrelated to any known vendor.

CriticalSIEM

Hiding Rule Created on CFO Mailbox

Set-InboxRule executed against cfo@corp.com created a rule named 'zx1' that marks matching mail read and moves it to RSS Feeds. Entropy and length scoring flagged the rule as a probable email-hiding technique consistent with BEC account takeover.

HighSIEM

Wire Approval Email Followed by Bank Detail Change

Mail-flow logs show an inbound message referencing invoice INV-88231 requesting updated ACH routing details, sent eleven minutes after a forwarding rule redirected the original thread to an external address. Accounts payable approved the change without a callback verification.

Responding to Financial Theft

When a suspicious mailbox rule fires, the first question is who created it and from where: pull the ClientIP and compare it against the user's normal sign-in geography and device. A rule created from an unfamiliar IP right after a sign-in from the same IP is a compromised-account chain, not a self-service change. Next, read the rule's actual parameters, ForwardTo, RedirectTo, MoveToFolder, MarkAsRead, to understand exactly what mail the attacker is capturing or hiding, and search the mailbox for any thread involving invoices, wire transfers, or vendor payment details that the rule would have touched.

If a fraudulent payment instruction went out or a transfer is pending, this becomes a race against the banking cutoff window, not a routine ticket: notify the finance team and the bank immediately to attempt a recall, since wire fraud recovery windows are measured in hours. Reset the compromised account's credentials, revoke all active sessions and app passwords, and remove the malicious rule rather than just disabling it (attackers sometimes re-enable disabled rules). For extortion-driven theft, treat the recovery-inhibition or encryption alert as the escalation trigger and isolate affected hosts immediately, since by the time a ransom note appears the financial-theft outcome is already close to locked in.

Frequently Asked Questions

How do SOC analysts detect Financial Theft?
Detection centers on SIEM telemetry for the impact phase of the attack. Alert on Exchange Online audit events where Operation is New-InboxRule or Set-InboxRule and the Parameters array contains ForwardTo, ForwardAsAttachmentTo, or RedirectTo pointing at a domain outside the tenant: this is the mechanical core of BEC email-forwarding fraud. Score every New-InboxRule or Set-InboxRule event on rule-name entropy and length, whether MarkAsRead is set true, and whether MoveToFolder targets RSS Feeds, Conversation History, or Archive, since attackers name hiding rules short random strings and mark the forwarded original read so the victim never notices.
What does a Financial Theft alert look like?
A representative SIEM detection is "New Inbox Rule Forwards Finance Mailbox to External Domain" (high severity): Exchange Online audit log recorded New-InboxRule on mailbox ap-clerk@corp.com with ForwardTo set to invoice-support@corp-finance-updates.com, a domain registered nine days earlier and unrelated to any known vendor.
Which tools detect Financial Theft, and how can I practice?
Financial Theft (T1657) is best surfaced with SIEM telemetry, which exposes the impact signals described above. Practice detecting it on those exact consoles in SOCSimulator Operations, free.
Glossary

What is Ransomware? SOC Glossary

Ransomware is malware that encrypts victim data or systems and demands payment, typically cryptocurrency, for the decryp…

Read more
Glossary

What is Incident Response? SOC Glossary

Incident response (IR) is the structured, repeatable process an organization follows before, during, and after a securit…

Read more
Glossary

What is Containment? SOC Glossary

Containment is the incident response phase focused on limiting the spread and impact of a confirmed security incident: i…

Read more
Glossary

What is Recovery? SOC Glossary

Recovery is the final phase of the incident response lifecycle, where affected systems are restored to normal, validated…

Read more
Career Path

Incident Responder Career Guide: Salary & Skills

Incident Responders lead the technical response when confirmed breaches happen. You coordinate containment, run forensic…

Read more
Career Path

SOC Manager Career Guide: Salary & Skills

SOC Managers run the operation. You own staffing, playbook development, tool selection, performance metrics, and executi…

Read more
Tool

SIEM Training Console: SOCSimulator

The SIEM console in SOCSimulator replicates the workflow of enterprise platforms like Splunk Enterprise Security, Micros…

Read more
Comparison

SOCSimulator Vs. Letsdefend: Platform Comparison

SOCSimulator wins on operational realism. You get multi-tool shift simulation with SLA pressure, noise injection, and al…

Read more
Glossary

SOC Glossary: Security Operations Terminology

Complete glossary of Security Operations Center terminology for aspiring SOC analysts.

Read more
Feature

Shift Mode: Real-Time SOC Simulation

Practice alert triage under realistic time pressure with SLA timers and noise injection.

Read more
Feature

Operations: Guided Training Operations

Structured CTF-style investigation operations covering real-world attack scenarios.

Read more
Blog

SOCSimulator Blog: Security Training Insights

Articles on SOC analyst skills, detection engineering, and career development.

Read more