The Attack: Ransomware Plus Data Theft
On June 16, 2026, attackers compromised River Financial Corporation’s network, deployed ransomware across their server environment, and exfiltrated an unknown amount of data. The company took systems offline, disabled compromised admin accounts, and brought in forensic investigators.
Weeks later, they’re still trying to determine what data was stolen. They’ve filed regulatory disclosures. Multiple lawsuits have been filed. And they’re in the uncomfortable position of having obtained “representations from the threat actor that the stolen data had been deleted” — a statement that should never appear in any incident report.
This is the modern ransomware playbook: get in, steal data, encrypt systems, extort payment with threats to expose what was stolen. Even if backups let you restore operations, the stolen data creates ongoing legal, regulatory, and reputational risk.
The article correctly points out that you can’t verify what happens to data once it leaves your environment. True. But here’s the better question: why did it leave in the first place?
What Actually Happened at the File System Level
Every phase of this attack required Windows file system operations:
Initial payload delivery: The ransomware executable had to be written to disk somewhere on River’s network before it could run. That’s a file write operation.
Data exfiltration: Attackers had to read customer data, financial records, and other sensitive files from disk before transmitting them out. Those are file read operations.
Encryption: Ransomware works by reading your original files and writing encrypted versions back to disk. More file operations.
Lateral movement: Moving from the initial compromised system to “portions of River’s server environment” typically involves writing files to remote shares via SMB. File operations again.
FileSure Defend operates at the Windows kernel level via a filter driver. It intercepts every file operation — open, read, write, delete, create, rename — before it completes. You define which users, programs, and machines are authorized to perform which operations. Everything else gets blocked and logged.
How FileSure Would Have Stopped This Attack
Block the payload before it lands: Define a rule that unauthorized programs cannot write executable files (.exe, .dll, .bat, .ps1, etc.) to your server systems. When the attacker tries to drop the ransomware payload, the write operation is intercepted and blocked at the kernel level. The file never touches your disk. The ransomware never executes.
Prevent data exfiltration: Define which authorized applications can read your customer database files, financial records, and other sensitive data. If an unauthorized process — including one running under a compromised admin account — tries to open those files, the operation is blocked. The data never gets read, so it can’t be transmitted out.
Stop encryption before it starts: Even if ransomware somehow executed, it still has to write encrypted versions of your files to disk. FileSure blocks unauthorized write operations. The encryption process fails immediately.
Here’s a specific FileSure rule configuration that would apply to a core banking server:
File filter: *.mdb, *.accdb, *.db, customer_data\*
Allowed programs: *\CoreBankingApp.exe, *\BackupService.exe, *\AuthorizedAdminTool.exe
Allowed operations: Read, Write (for authorized programs only)
Blocked operations: All operations from unauthorized programs
Action: Block and log
Any program not on that list — including ransomware, data theft tools, or scripts run by a compromised admin — gets blocked when it tries to touch those files.
The Upstream Intervention That Matters
The article offers good advice: segment networks, protect privileged accounts, monitor data movement, maintain backups. All useful.
But none of that stops the ransomware payload from being written to disk in the first place. And once it’s on disk, you’re in a race: can your detection tools recognize it and kill it before it executes? Can your EDR platform catch it before it starts encrypting files?
FileSure doesn’t play that game. It controls file operations at the kernel level. Unauthorized programs don’t get to write executables to your servers. They don’t get to read your customer data. They don’t get to encrypt your files. The attack stops at the first unauthorized file operation — before the payload lands, before anything executes, before you have an incident to investigate.
River Bank is now managing lawsuits, regulatory filings, forensic investigations, and the impossible task of verifying what an attacker did with stolen data. All of that stems from unauthorized file operations that should have been blocked.
FileSure Defend runs on all Windows versions — including the legacy systems running your core banking infrastructure. See it block a simulated ransomware attack in under five minutes. Start your free trial at bystorm.com.
Category: Ransomware
Tags: ransomware, data exfiltration, financial services, double extortion, kernel filter driver, file system security, banking