← All Threat Hunting ReportsThreat Hunting Exercise

Threat Hunting Exercise: Analyzing USB Removable Media Mass File Copy Dataset

This hunt covers the classic insider-threat/physical-exfil vector: a simulated Windows Security + Sysmon dataset (usb_removable_media_massfilecopy_2022-07-11T164500.json) capturing T1052.001: Exfiltration Over Physical Medium - Exfiltration over USB, where a user copies a large volume of sensitive files to an external USB drive shortly before an expected departure - a scenario every SOC eventually has to investigate for HR/legal reasons, not just external-attacker reasons.

Step 1: Hypothesis Formation

Hypothesis: A user connects a previously-unseen USB mass storage device, and within a short window copies an abnormally large number of files (or an abnormally large total byte volume) from sensitive network shares/local folders to the device, outside their normal file-access baseline. Indicators:

Null Hypothesis: Legitimate backup or authorized data-transfer task (e.g., IT imaging a machine, or an approved offline-work data pull). Invalidate via lack of a change ticket, the specific targeting of sensitive share paths rather than the user's own working directory, and timing correlated with HR-flagged departure/performance events if available.

Rationale: Not every hunt in this series is an external-attacker scenario - physical/insider exfiltration via USB remains one of the most common real-world DLP investigations, and Windows' native USB device and file-creation logging is often sufficient without a dedicated DLP product.

Step 2: Data Sources and Scope

Step 3: Key Findings

Parsed events (9 shown) confirm a first-seen USB device followed by a sustained, high-volume copy operation from R&D source-code and design-document shares, ending with device removal.

Timestamp (UTC)Event IDChannel/SourceKey DetailsIOC/Why Suspicious?
2022-07-11 16:45:026416 (Device Connect)SecurityDeviceDescription="SanDisk Ultra USB Device"; SerialNumber=4C531001471122117743; ClassName=DiskDrive; SubjectUserName=tchen.Core IOC: Device serial has zero prior history in the asset inventory for tchen or this host - first-seen external storage.
2022-07-11 16:45:101 (Proc Create)SysmonImage=explorer.exe; CommandLine references new volume E:\ mount.User navigates to the newly mounted drive via Explorer.
2022-07-11 16:46:0011 (File Create) x1SysmonTargetFilename=E:\RD_Backup\readme.txt (48 bytes).Innocuous-looking first file - could be a decoy or simply the first item copied.
2022-07-11 16:46:05 - 17:04:4011 (File Create) x812SysmonTargetFilenames under E:\RD_Backup\ mirror source tree \\FILESERVER01\R&D\ProjectPhoenix\ and \\FILESERVER01\R&D\PatentDrafts\*; extensions: .sldprt, .docx, .pdf, .py, .c.Volume IOC: 812 files copied in ~18 minutes (baseline for tchen: ~15 file accesses/day) - includes CAD design files, patent drafts, and proprietary source code.
2022-07-11 16:50:0011 (File Create)SysmonTargetFilename=\\FILESERVER01\R&D\ProjectPhoenix\ - accessed (read) immediately prior to each corresponding E:\ write, per matching timestamps.Source IOC: Direct read-then-write pairing confirms the share-to-USB copy path, not a legitimate local-to-USB backup of tchen's own files.
2022-07-11 17:04:4511 (File Create)SysmonTargetFilename=E:\RD_Backup\ProjectPhoenix.zip (1.2GB).Final action: entire copied tree compressed into a single archive on the USB device - consolidation step typical of deliberate exfil, not casual file-dragging.
2022-07-11 17:05:301 (Proc Create)SysmonImage=explorer.exe; CommandLine shows deletion of the uncompressed E:\RD_Backup\ subfolder, leaving only the ZIP.Cleanup step - reduces the chance of casual discovery if the device is later inspected superficially.
2022-07-11 17:06:306423 (Device Disconnect)SecuritySerialNumber=4C531001471122117743; SubjectUserName=tchen.Device removed ~21 minutes after connection - "smash and grab" timing consistent with a planned, deliberate action rather than routine backup work spread across a normal workday.

Validation:

Step 4: Recommendations & Next Steps

Hypothesis confirmed - large-scale proprietary data exfiltration to USB ahead of employee departure! This hunt is a reminder that not every "threat" wears an external attacker's face - Windows-native logging was fully sufficient to build the case here.