Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
NORM-EDR — Experimental kernel-mode EDR research project focused on explainable detection of suspicious in-memory execution patterns, producing human-readable alerts instead of opaque scoring or blocking. | Kitploit
Tools/GitHubGitHub/amberchalia/norm-edr
Defensive ToolsMemory ForensicsMalware AnalysisBinary AnalysisLearning & EducationIncident ResponseLabs & Practice
GitHubamberchalia/norm-edr

NORM-EDR

Experimental kernel-mode EDR research project focused on explainable detection of suspicious in-memory execution patterns, producing human-readable alerts instead of opaque scoring or blocking.

View Repository
1136 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

NORM-EDR

NORM (Normal EDR) is an experimental kernel-mode EDR research project focused on explainable detection rather than silent blocking.

Instead of assigning scores or killing processes, NORM answers one question:

Why does this binary look suspicious?

This project is built step-by-step in public as a learning and research journey into how modern EDRs reason about behavior.


v0.3 – Kernel Memory Scanner Update

This release introduces a memory scanning routine capable of detecting a common in-memory execution pattern used by many commodity malware samples.

The driver now enumerates process memory regions and identifies suspicious memory with the following characteristics:

  • MEM_PRIVATE
  • AllocationProtect = PAGE_READWRITE
  • Protect = PAGE_EXECUTE_READ

This pattern is commonly observed when shellcode is written to memory and later marked executable.


Detection Flow

The driver performs the following steps:

  1. A thread creation event triggers the memory scan.
  2. The driver attaches to the target process using KeStackAttachProcess.
  3. The process address space is enumerated using ZwQueryVirtualMemory.
  4. Suspicious regions matching the RW → RX transition pattern are reported.

Example detection output

[ALERT] PID 4120 AllocationProtect: RW Protect: RX Type: PRIVATE


🧠 What Makes NORM Different

  • No scoring engine
  • No silent blocking
  • No opaque decisions

Instead, NORM produces clear, human-readable kernel alerts such as:

🔧 Build & Lab Setup

NORM is a kernel-mode driver and requires a dedicated lab environment.

A complete walkthrough covering:

  • VM setup
  • Test signing
  • Driver compilation
  • Driver loading

is available here:

📺 How to Compile & Run NORM (Kernel Lab Setup)
👉 YouTube: https://www.youtube.com/watch?v=8NHgK_OSKj8

Written build steps are intentionally omitted to keep documentation in sync with the video series.

📜 Disclaimer

This project is:

  • For learning
  • For research
  • For educational labs

Not production-ready. Do not deploy on real systems.


☕ Support

If you find this project useful and want to support continued development, you can help by buying me a coffee.

Your support helps cover:

  • Lab infrastructure and VM crashes
  • Kernel debugging time
  • Writing documentation and blog posts
  • Creating educational YouTube content

👉 Support me on Buy Me a Coffee

Learn More

Read about my challenges and technical insights on my blog: rootfu.in.

Download Tool