← Back to SOC feed Coverage →

ThreatFox: NetWire RC IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-netwire
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-22T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity involving the specific indicators of compromise (IOCs) linked to the NetWire RC remote access tool, which is frequently leveraged by threat actors for command and control or lateral movement. The SOC team should proactively search for these signals in Azure Sentinel to identify early-stage infections or active compromises that may evade standard signature-based detections due to the tool’s legitimate appearance.

IOC Summary

Malware Family: NetWire RC Total IOCs: 24 IOC Types: md5_hash, sha1_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
md5_hash6c255ef0b62a23e7828f04054e8f3896payload2026-08-2295%
md5_hashdf94520df3d218bd7982a7fc40e92530payload2026-08-2295%
sha256_hashedc73cf039196893ce93018f5fef4057f90a80447c9b7bf55b91a91b423abde1payload2026-08-2295%
sha1_hash22c9f62d38f274eddf7b38a7f63d9d6c926f8c35payload2026-08-2295%
sha1_hashd684d14082b121f32ce1f6b9df8d173d4daee35cpayload2026-08-2295%
sha256_hashc6bfb0d885265012930ecd07a5bc2eb2e1c2db218ced4416839af5761f24f927payload2026-08-2295%
sha256_hash99d5dbbcec96cc84ac22c077680420e70315e19703667e5c8d9f2ec76af1acadpayload2026-08-2295%
sha1_hash1fba1be772a9cc5ec1359949e28fb1a97fad53depayload2026-08-2295%
md5_hasha67819c12c69894357adbec5d970085dpayload2026-08-2295%
sha1_hash0f9aeb923449eec7d1f5f1382c69bebf68cbb908payload2026-08-2295%
md5_hashee1ed321e64aee5b57ad715a43c23835payload2026-08-2295%
sha1_hashb9826e3da49b12448a57cd37175e01fc776fc38epayload2026-08-2295%
md5_hash9f6cf57a2791b8c53733f410804dcd1apayload2026-08-2295%
sha256_hash355c5ee15bdc6e13d52a6c2551ebffd4932bcb7b93b3f3c7584e6e3a2c420830payload2026-08-2295%
sha1_hashe2a6345a9ab066c8d230f10505e564914ed5fab8payload2026-08-2295%
md5_hashbce4944eabdb55b2b42df2c5a7bd7683payload2026-08-2295%
sha256_hashc2e63d8266f7c297f0303eecb4cb18dd9151ada99c13ca1683794eb8d6db8217payload2026-08-2295%
sha256_hash137d06e4b5009f494fd546fc87eb9fa1dcadf35664cecaeb36416c359f803a86payload2026-08-2295%
md5_hash1a24321c2ee34cabd7b610da455ea11dpayload2026-08-2295%
sha256_hash0bdb81149b22afe5219c75aa9679a6a8cb577f9d5659857646b2db7bf3728af1payload2026-08-2295%
sha1_hashc71c4ee0d5a579a86ba59c8d12052c74a9d54abapayload2026-08-2295%
sha1_hash4e76ad7a895a31a99f44a376e364ce0018e04763payload2026-08-2295%
md5_hashb69cc5426070fb399791ce6bdc621049payload2026-08-2295%
sha256_hashb34d9f8bb178e1521ba4d62ee575563872e09153c5741a3f454bfa03083498adpayload2026-08-2295%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - NetWire RC
let malicious_hashes = dynamic(["6c255ef0b62a23e7828f04054e8f3896", "df94520df3d218bd7982a7fc40e92530", "edc73cf039196893ce93018f5fef4057f90a80447c9b7bf55b91a91b423abde1", "22c9f62d38f274eddf7b38a7f63d9d6c926f8c35", "d684d14082b121f32ce1f6b9df8d173d4daee35c", "c6bfb0d885265012930ecd07a5bc2eb2e1c2db218ced4416839af5761f24f927", "99d5dbbcec96cc84ac22c077680420e70315e19703667e5c8d9f2ec76af1acad", "1fba1be772a9cc5ec1359949e28fb1a97fad53de", "a67819c12c69894357adbec5d970085d", "0f9aeb923449eec7d1f5f1382c69bebf68cbb908", "ee1ed321e64aee5b57ad715a43c23835", "b9826e3da49b12448a57cd37175e01fc776fc38e", "9f6cf57a2791b8c53733f410804dcd1a", "355c5ee15bdc6e13d52a6c2551ebffd4932bcb7b93b3f3c7584e6e3a2c420830", "e2a6345a9ab066c8d230f10505e564914ed5fab8", "bce4944eabdb55b2b42df2c5a7bd7683", "c2e63d8266f7c297f0303eecb4cb18dd9151ada99c13ca1683794eb8d6db8217", "137d06e4b5009f494fd546fc87eb9fa1dcadf35664cecaeb36416c359f803a86", "1a24321c2ee34cabd7b610da455ea11d", "0bdb81149b22afe5219c75aa9679a6a8cb577f9d5659857646b2db7bf3728af1", "c71c4ee0d5a579a86ba59c8d12052c74a9d54aba", "4e76ad7a895a31a99f44a376e364ce0018e04763", "b69cc5426070fb399791ce6bdc621049", "b34d9f8bb178e1521ba4d62ee575563872e09153c5741a3f454bfa03083498ad"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios and corresponding exclusions for the ThreatFox: NetWire RC IOCs detection rule in an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/win.netwire/