a1e6dc7a3172ae52663e446cb8286a8aeec8c92fe75eb97f290df80f2e1ac398unclassified-dotnet: a1e6dc7a — Fourth stolen-Tatham-cert sibling, WinForms paint app masquerading as Adobe Reader
Executive Summary
A .NET Framework 4.0 PE32 GUI application compiled Aug 2024 and signed with the same stolen Simon Tatham (PuTTY) COMODO RSA Code Signing CA certificate observed in three prior siblings (eea0dcbc, c4ee3a31081d, cae7ac1dc419). The inner payload is a benign WinForms paint/drawing program; no malicious APIs, no C2, no persistence. Threat is purely social-engineering masquerade (Adobe Reader version-info + stolen Authenticode) to lower execution friction. Static-only analysis — CAPE skipped for lack of a Windows guest.
What It Is
| Field | Value |
|---|---|
| SHA-256 | a1e6dc7a3172ae52663e446cb8286a8aeec8c92fe75eb97f290df80f2e1ac398 |
| Filename | 62C0j88GAD91tR5.exe |
| Size | 831,496 bytes (812 KB) |
| Type | PE32 executable (GUI) Intel 80386 Mono/.Net assembly, 3 sections ^[file.txt] |
| Timestamp | 0x66B17A2E — Tue Aug 6 01:19:42 2024 UTC ^[pefile.txt:34] |
| Linker | 48.0 (Visual Studio 2019+ / .NET 4.0 SDK toolchain) ^[pefile.txt:45] |
| CLR | v4.0.30319 ^[strings.txt:6] |
| Signed | Yes — stolen Authenticode certificate ^[binwalk.txt:33] |
| Cert CN | Simon Tatham (PuTTY developer) ^[strings.txt:tail] |
| Cert chain | COMODO RSA Code Signing CA → COMODO RSA Certification Authority ^[certificate-extraction] |
| Internal name | gZUs.exe ^[pefile.txt:239] |
| VS_VERSIONINFO | FileDescription: Microsoft PDF Document, CompanyName: Adobe Reader, ProductName: Adobe Reader, FileVersion: 2.0.0.781 ^[exiftool.json:36-45] |
Family ascription: Confirmed fourth sibling in the unclassified-dotnet stolen-Simon-Tatham-certificate cluster. Same certificate chain, same COMODO RSA Code Signing CA issuer, same benign-inner-payload pattern, different benign application (paint/drawing program vs. attendance tracker / Spanish educational apps in prior siblings).
How It Works
The binary is an unobfuscated .NET Framework 4.0 CIL assembly. The .text section is large (~812 KB, entropy 7.94) because it embeds multiple .NET resource blobs including System.Drawing.Bitmap objects (icons for the paint UI). ^[pefile.txt:80-96] ^[strings.txt:1100-1178]
There is no packing, no obfuscation, no anti-debug, no anti-VM, and no native API P/Invoke surface. The only imports are standard .NET Framework assemblies (mscorlib, System, System.Drawing, System.Windows.Forms, Microsoft.VisualBasic). ^[pefile.txt:255]
The threat model is:
- Stolen certificate lends false legitimacy during SmartScreen / EDR triage.
- VS_VERSIONINFO masquerade (
Adobe Reader,Microsoft PDF Document) suggests a PDF utility to the victim. - Random-noise filename (
62C0j88GAD91tR5.exe) differs from the themed lures (PAYMENT_CANCELLED_AND_RETURNED.PDF.exe,HAWB_#4532222.exe,TRANSACTION_ERROR.PDF.exe) used by prior siblings — possibly a different distribution channel or A/B testing.
On execution the program presents a WinForms paint/drawing interface (shape tools, color picker, brush/fill options, line width chooser, hatch styles). ^[strings.txt:1-500]
Decompiled Behavior
Ghidra imported successfully (/a1e6dc7a3172ae52663e446cb8286a8aeec8c92fe75eb97f290df80f2e1ac398.bin-38cb55, 205 functions, 0 instructions indexed at time of query). Code indexing was incomplete at query time; decompiled-pseudo-C analysis was therefore not obtainable. ^[ghidra:import]
Given the plain .NET CIL nature, dnSpy or ILSpy would provide full decompilation trivially. The entry point is the standard _CorExeMain via mscoree.dll. ^[pefile.txt:255] No custom entry-point obfuscation.
C2 Infrastructure
None. No hardcoded URLs, IP addresses, domain names, mutexes, named pipes, or registry keys. No networking APIs in the import surface. No C2 strings in the binary.
The only network-relevant strings are COMODO/USERTRUST certificate revocation URLs embedded in the Authenticode signature block: http://ocsp.comodoca.com, http://crl.comodoca.com, http://www.usertrust.com. ^[strings.txt:tail] These are standard CA infrastructure, not attacker C2.
Interesting Tidbits
- Same stolen certificate, fourth payload variant. Prior siblings carried: (1) a WPF attendance tracker (
eea0dcbc), (2) a Spanish-language WinForms educational app (c4ee3a31081d), (3) another Spanish WinForms educational app (cae7ac1dc419). This sample carries a WinForms paint/drawing program — the cluster reuses the same certificate across unrelated benign payloads. ^[raw/analyses/eea0dcbc.../report.md] ^[raw/analyses/c4ee3a31081d.../report.md] ^[raw/analyses/cae7ac1dc419.../report.md] - Random filename. Unlike the payment/shipping/transaction-themed filenames of siblings, this sample uses random alphanumeric noise. This may indicate a different distribution pipeline (spam attachment vs. drive-by download) or a test build.
- capa false positives. T1620 (reflective code loading) is triggered by standard .NET
Assembly.Load/InvokeMemberpatterns used by the WinForms designer and event handlers. T1497.001 (analysis tool discovery) is triggered byDebuggerNonUserCodeAttributeandDebuggableAttributein a Debug-configuration build. ^[capa.txt:15-16] - No
snakekeyloggerco-label. Unlike prior siblings which were falsely co-labeledsnakekeyloggerby OpenCTI, this sample has no OpenCTI family label at all ("family": null). - High-entropy
.textis benign. The 7.94 entropy is from zlib-compressed PNG bitmap resources (Inkscape-authored icons, 256×256, 128×128, 48×48, etc.) embedded asSystem.Drawing.Bitmapobjects. ^[binwalk.txt:6-32]
How To Mess With It (Homelab Replication)
This binary is trivial to replicate for certificate-masquerade research:
- Build a benign .NET Framework 4.0 WinForms app in Visual Studio (any simple GUI — paint, calculator, etc.).
- In
AssemblyInfo.cs, set:[assembly: AssemblyTitle("Adobe Reader")] [assembly: AssemblyDescription("Microsoft PDF Document")] [assembly: AssemblyCompany("Adobe Reader")] [assembly: AssemblyProduct("Adobe Reader")] [assembly: AssemblyCopyright("Adobe Inc. All rights reserved")] [assembly: AssemblyFileVersion("2.0.0.781")] - Compile in Debug or Release (x86 preferred to match PE32).
- Sign with any code-signing certificate (or self-signed for lab purposes).
- Rename output to a random noise filename or a themed lure (
*.PDF.exe). - Verify with
sigcheck -a <file>andcapa <file>— capa will likely flag T1620/T1497.001 from standard .NET metadata.
What you'll learn: How easily a benign .NET GUI app with falsified metadata and a stolen (or self-signed) certificate can bypass naive static triage, and why capa's .NET heuristics require analyst validation.
Deployable Signatures
YARA rule
rule StolenTathamCert_DotNet_Masquerade
{
meta:
description = "Detects .NET PE32 signed with stolen Simon Tatham (PuTTY) COMODO RSA cert"
author = "PacketPursuit"
reference = "raw/analyses/a1e6dc7a3172.../report.md"
date = "2026-06-26"
confidence = "high"
strings:
$tatham_cn = "CN = Simon Tatham" ascii wide
$tatham_o = "O = Simon Tatham" ascii wide
$comodo_rsa_code = "COMODO RSA Code Signing CA" ascii wide
$adobe_reader = "Adobe Reader" ascii wide
$pdf_doc = "Microsoft PDF Document" ascii wide
$dotnet_clr = "v4.0.30319" ascii wide
condition:
uint16(0) == 0x5A4D and
($tatham_cn or $tatham_o) and
$comodo_rsa_code and
($adobe_reader or $pdf_doc) and
$dotnet_clr
}
Sigma rule
title: .NET PE32 with Stolen Simon Tatham Certificate Execution
status: experimental
description: Detects execution of .NET Framework binaries signed with the stolen Simon Tatham (PuTTY) COMODO RSA certificate, a recurring cluster in social-engineering campaigns.
author: PacketPursuit
logsource:
category: process_creation
product: windows
detection:
selection:
- ImageLoaded|contains:
- 'gZUs.exe'
- 'zOYY.exe'
- 'InXv.exe'
- 'WVmY.exe'
- Hashes|contains:
- 'SHA256=a1e6dc7a3172ae52663e446cb8286a8aeec8c92fe75eb97f290df80f2e1ac398'
- 'SHA256=eea0dcbc84b2e7113b9110e2f50fdf830c9f6ba67cad97bbe648270b810d757a'
- 'SHA256=c4ee3a31081db5feff937ed7a716fd805b467dacc6c1d679c4508e5b51ba8895'
- 'SHA256=cae7ac1dc4191db8041bca77127910f900f9effbe1b9e87492ba49549de14676'
condition: selection
falsepositives:
- None expected — the certificate is stolen and the inner payloads are benign repackaged apps, but legitimate PuTTY-signed binaries (if any still exist with this revoked cert) would trigger.
level: high
IOC list
| IOC | Type | Value |
|---|---|---|
| SHA-256 | hash | a1e6dc7a3172ae52663e446cb8286a8aeec8c92fe75eb97f290df80f2e1ac398 |
| SHA-1 | hash | 38cb5501b662dc0d95ed1025b4e45969eccd0e7e |
| MD5 | hash | 1fbeb2a0f4e226892395d3e20df2ac99 |
| Internal name | string | gZUs.exe |
| FileDescription | string | Microsoft PDF Document |
| CompanyName | string | Adobe Reader |
| Cert Subject CN | string | Simon Tatham |
| Cert Issuer CN | string | COMODO RSA Code Signing CA |
| Cert Serial | hex | TBD (revoked) |
| Known siblings | hash | eea0dcbc..., c4ee3a31081d..., cae7ac1dc419... |
Behavioral fingerprint statement
This binary is a .NET Framework 4.0 PE32 GUI executable with a falsified Adobe Reader VS_VERSIONINFO and a stolen Authenticode certificate (Simon Tatham / COMODO RSA Code Signing CA). On launch it initializes a standard WinForms paint/drawing interface with no network activity, no registry persistence, and no process injection. The threat is purely certificate-backed social engineering.
Detection Signatures
| capa capability | ATT&CK | Assessment |
|---|---|---|
| invoke .NET assembly method | T1620 | False positive — standard WinForms designer event-handler binding |
| reference analysis tools strings | T1497.001 | False positive — DebuggerNonUserCodeAttribute in Debug build |
| compiled to .NET platform | — | Accurate (dotnet runtime) |
| access .NET resource | — | Accurate (embedded bitmap icons) |
| save image in .NET | — | Accurate (paint app export functionality) |
| find data using regex in .NET | — | Likely false positive from standard .NET Regex usage |
| check file extension in .NET | — | Accurate (FileDialog filter in paint app) |
| unmanaged call | — | Likely false positive or gdi32.dll P/Invoke for canvas rendering |
References
- Artifact ID:
a3081634-18fa-4719-8de6-0bd83337dbd7 - Source: OpenCTI / MalwareBazaar
- Related wiki pages:
- unclassified-dotnet — umbrella entity for stolen-Tatham-cert cluster
- stolen-certificate-signing — concept page for certificate abuse
- version-info-masquerade — falsified metadata technique
- social-engineering-filename-lure — filename-based social engineering
Provenance
file.txt— file(1) outputexiftool.json— ExifTool 12.76 metadata extractionpefile.txt— pefile Python library PE header dumpstrings.txt— GNU strings + UTF-16LE extractionbinwalk.txt— Binwalk v2.3.4 embedded file scancapa.txt— Mandiant capa v7.0.0 static capability detectionrabin2-info.txt— radare2 rabin2 header summary- Certificate chain extracted via
openssl pkcs7from DER blob at offset0xC7A08in the PE security directory - Ghidra 12.1 import attempted; code indexing incomplete at time of query
- CAPE sandbox: skipped — no Windows guest available ^[dynamic-analysis.md]