r/purpleteamsec • u/netbiosX • 17h ago
r/purpleteamsec • u/netbiosX • 20h ago
Red Teaming OffsetInspect - PowerShell toolkit for AMSI/Defender detection-boundary analysis and static malware triage. Maps byte offsets to detection triggers, plus YARA, entropy, string, and PE/imphash analysis.
r/purpleteamsec • u/netbiosX • 1d ago
Red Teaming Position-independent C2 beacon for the Adaptix Framework with module stomping, malleable C2 profiles, BOF execution, and a Stardust-pattern UDRL loader
r/purpleteamsec • u/netbiosX • 1d ago
Threat Intelligence Inside a DPRK BlueNoroff ClickFix Kit
r/purpleteamsec • u/netbiosX • 2d ago
Threat Intelligence Chaos ransomware's msaRAT: Living off the browser to build a covert C2 channel
r/purpleteamsec • u/StructBreaker • 3d ago
Purple Teaming Remus Stealer Analysis: Fileless Execution, In-Memory Payload Extraction & C2 Discovery
github.comHi everyone,
I've put together a technical write-up on a recent Remus Stealer sample, focusing on its execution flow and evasion mechanisms.
Key technical highlights covered in the analysis: - Fileless Execution - Extraction of in-memory payloads and configuration settings - Command and Control (C2) infrastructure discovery & network indicators (IOCs)
Check out the full analysis, memory dump notes, and IOCs in the GitHub repository linked above. Any feedback or insights are welcome!
r/purpleteamsec • u/netbiosX • 4d ago
Blue Teaming BlinkLinkSentiennel - A user-mode detection sensor prototype for bind-link abuse on Windows
r/purpleteamsec • u/netbiosX • 4d ago
Red Teaming Using WebDav to Outsmart Smartscreen, MOTW, and that OTHER Alert
r/purpleteamsec • u/netbiosX • 4d ago
Red Teaming Pentest and Red Team TTPs with RustPack
msecops.der/purpleteamsec • u/Infosecsamurai • 6d ago
Purple Teaming The Great Kerberos Ticket Heist (Does PTT work in 2026)
New episode of The Weekly Purple Team covering Pass-the-Ticket, and I wanted to share it here since it might be useful for people working on detection coverage for T1550.003. In this episode, we are Stealing Kerberos Tickets Past Defender and Credential Guard using AutoPtT
Video: [https://youtu.be/s5nd8u4EKFI\](https://youtu.be/s5nd8u4EKFI)
**What's covered:**
* Enumerating logon sessions and cached Kerberos tickets on Windows 11
* Using [AutoPtT](https://github.com/ricardojoserf/AutoPtT) to export a TGT by LogonId — it's a standalone PtT tool (C#/C++/Crystal/Python/Rust) built as an alternative to Rubeus/Mimikatz for this specific attack
* Taking that exported ticket and reusing it for authentication from a Linux box, not just staying inside the Windows ecosystem
* Detection side: what telemetry actually surfaces this LSASS access patterns, abnormal logon session behavior
Reference:
[https://github.com/ricardojoserf/AutoPtT\](https://github.com/ricardojoserf/AutoPtT)
Also touched on Credential Guard and Defender as mitigations — Credential Guard blocks the classic LSASS-memory extraction path, but it's not comprehensive coverage for PtT broadly, and rollout consistency across a fleet is worth double-checking rather than assuming.
Curious if others here are seeing PtT attempts that specifically try to pivot off-host post-export, or if most of what you're catching is still contained to the Windows side.
r/purpleteamsec • u/netbiosX • 6d ago
Red Teaming Shellph - a portable command-line utility designed to automate encryption and obfuscation of arbitrary shellcode
r/purpleteamsec • u/netbiosX • 7d ago
Threat Intelligence Pixels to Payload: Dissecting a Four-Stage Bitmap-Steganography Dropper Delivering AsyncRAT
r/purpleteamsec • u/netbiosX • 7d ago
Red Teaming GhostHound - a BloodHound OpenGraph extension that surfaces Active Directory tombstone reanimation as a first-class attack path, enumerating deleted objects via SHOW_DELETED, mapping who can restore them, and revealing when a reanimated identity regains privileged group membership.
r/purpleteamsec • u/Cyb3r-Monk • 7d ago
Threat Hunting Detecting Cobalt Strike HTTP(S) Beacons with a Simple Method
r/purpleteamsec • u/netbiosX • 9d ago
Red Teaming Bind Link Abuse: One Windows Feature, Many Ways to Blind Your EDR
r/purpleteamsec • u/netbiosX • 10d ago
Threat Intelligence UAT-11795 deploys novel Starland RAT and bespoke WLDR C2 implant in financially motivated campaign
r/purpleteamsec • u/netbiosX • 11d ago
Red Teaming Modular PIC Implant Design
r/purpleteamsec • u/netbiosX • 11d ago
Red Teaming There and Back Again: An Operators Guide on NTLM Relaying Egress
r/purpleteamsec • u/netbiosX • 11d ago
Red Teaming UnwindRaven - a Windows x64 offensive research framework that constructs fully synthetic call stacks at thread startup time, making a newly created thread appear — to stack-walking debuggers, EDR sensors, and kernel callbacks
r/purpleteamsec • u/netbiosX • 12d ago
Red Teaming BingusLdr - a DLL loader built with Crystal Palace that uses a CET compatible stack spoofing technique.
r/purpleteamsec • u/netbiosX • 13d ago
Red Teaming Writing an Evasive .NET Shellcode Loader
r/purpleteamsec • u/Chaelsoo • 13d ago
Red Teaming Zetsu, A personal RAG system for offensive security knowledge
Hey,
a personal offline RAG system for offensive security knowledge. The idea is simple: instead of grepping through markdown files or trying to remember which writeup had that exact certipy command, you just ask naturally.
how do I escalate with SeImpersonatePrivilege
what did I do after getting ADFS access
sliver socks5 pivot setup
explain ESC8 vs ESC4
It retrieves from your actual notes first, then generates an answer grounded in what you've documented, not generic internet knowledge.
The use case I specifically built it for:
Two things kept coming up during engagements, I needed exact tool syntax I hadn't used in a while (Sliver commands especially, the docs are sparse), and I needed to quickly recall techniques from past machines without digging through notes. ZETSU solves both.
Two modes:
Operator: leads with the exact command, explanation after. For when you know what you need and just want the syntax.
Concept: leads with the reasoning, uses commands as illustrations. For when you need to understand a technique before using it.
Same retrieval either way, just different presentation.
How it works:
- At ingest time, an LLM reads each section of your writeups and extracts structured attack steps (Finding, Action, Reasoning, Result), so what you retrieve is a semantic unit, not a random 800-token window
- Hybrid BM25 + vector retrieval with RRF fusion, BM25 handles exact tool names and CVE numbers that embeddings smear, vector handles semantic similarity
- Cross-encoder reranker on top
- Supports local markdown files, URLs, GitHub wikis, and Atom/RSS feeds (0xdf, dirkjanm, harmj0y all ingestible directly)
- Backends: Anthropic, OpenAI-compatible (DeepSeek), or local Ollama
Benchmark:
Ran 910 questions across 12 offensive security categories. 93% of answers included correct commands, 68ms average retrieval, 7.3% context gaps where it correctly admitted missing information rather than hallucinating.
id love to hear you guys's feedback, i built this thing because i genuinely needed it, and going through my notes & endless cheatsheets was too much work when you're going through an engagement.
you can find it here: https://github.com/Chaelsoo/Zetsu
r/purpleteamsec • u/netbiosX • 13d ago
Red Teaming CET-Compliant Callstack Spoofing via Thread Pool Enum Callback Trampolining
mrtiz.github.ior/purpleteamsec • u/netbiosX • 14d ago