Obsess over every detail. Ask why it works. Ask why it isn’t built another way.

3 min read

TOC

Arcana – Curated List of Useful Offensive Tradecraft Resources

Low-Level Languages

Low-Level Concepts

Build core knowledge around system internals, cryptography, and debugging.

Windows Internals

Project Ideas

Try to replicate a malware behavior and ask:

Content Creators

Blogs

GitHub Repositories

Books & Papers

References

Operational Security

Detection Awareness

Useful Pages

Training

Books

Practical EDR Evasion

Deploy the client’s EDR in a lab and test your payload against it. When something gets detected, identify the behavior or artifact that triggered the alert, research the detection mechanism, then modify your tradecraft to address it.

The workflow is essentially:

Deploy EDR → Run payload → Observe detection → Identify the cause → Research → Address the detection surface → Retest

Don’t blindly apply evasion techniques. Understand what is being detected and why, then solve that specific detection problem. Keep useful telemetry such as Sysmon, ETW, Windows Event Logs, memory and call-stack visibility, and network telemetry available so you can correlate EDR alerts with what actually happened.

For example, if a loader is detected, determine whether the signal came from the executable itself, process behavior, memory characteristics, call stacks, or network activity. Address the relevant detection surface rather than changing unrelated parts of the payload.

The same principle applies to techniques such as Kerberoasting: understand the underlying telemetry and expected baseline first, then determine what behavior distinguishes your activity from normal operations.

Resources from Colleagues

Archives


Reverse Engineering & Pwn Resources

Foundational Learning

Applied Reverse Engineering

Advanced & Kernel Exploitation

Hands-On Practice

Challenge-based platforms and exercises to reinforce your skills.

Blogs

Contributors

Thanks to the following people:

» top