T The Triage ManualTechnical Guides for IT Emergencies
P2 · Cyber Incident Response

Signed PUP Supply Chain Attack Deploys AV Killers with SYSTEM Privileges (Dragon Boss Solutions)

Dragon Boss Solutions' digitally signed Potentially Unwanted Program (PUP) was found to contain an insecure update mechanism exploitable for approximately $10, allowing attackers to deliver AV killer payloads with SYSTEM-level privileges to any endpoint running the software. The trusted digital signature allowed the PUP to bypass security tool heuristics, and the hijackable update infrastructure represents a scalable supply chain risk. Remediation requires immediate endpoint isolation, removal of all associated executables and persistence mechanisms, restoration of disabled security tooling, and perimeter blocking of Dragon Boss Solutions infrastructure.

Indicators

Likely causes

Diagnostic steps

  1. Identify Dragon Boss Solutions signed executables on the endpoint using PowerShell: Get-AuthenticodeSignature -FilePath <path> | Select SignerCertificate, Status — or use Sysinternals Sigcheck across suspect directories: sigcheck.exe -accepteula -c <directory>
  2. Enumerate SYSTEM-level processes spawned by PUP or adware parents using Process Monitor (filter: User = SYSTEM, Parent process = known PUP executable) or via EDR process tree telemetry
  3. Review Windows System Event Log for AV/EDR service stop events: Get-WinEvent -LogName System | Where-Object { $_.Id -eq 7036 } | Where-Object { $_.Message -like '*stopped*' } — correlate timestamps with PUP update activity
  4. Inspect scheduled tasks and services created by the PUP installer: schtasks /query /fo LIST /v | findstr /i 'dragon' and sc query type= all | findstr /i 'dragon' — document all matches for removal
  5. Monitor network traffic for outbound connections to Dragon Boss Solutions update servers using Wireshark or endpoint telemetry; flag binary downloads over plain HTTP or from recently registered or low-reputation domains
  6. Run Sysinternals Autoruns to enumerate all persistence mechanisms (scheduled tasks, services, registry Run keys) associated with Dragon Boss Solutions software: autoruns.exe -accepteula -a *
  7. Query EDR telemetry or Microsoft Defender for Endpoint Advanced Hunting for known AV killer tool hashes, BYOVD driver loads, or service manipulation events originating from PUP processes
  8. Validate integrity of any auto-update binaries by comparing file hashes against vendor-published values: CertUtil -hashfile <downloaded_file> SHA256 — and verify digital signatures using Get-AuthenticodeSignature or Sigcheck

Resolution path

Prevention

Tools

References

PUPadwaresupply-chain-attackAV-killerSYSTEM-privilegescode-signing-abuseDragon-Boss-Solutionsmalwareupdate-hijackingendpoint-securityHuntressWindowsBYOVDthreat-intelligence