From a161ce13d1ec742caa5c61c7c8dac3a53d9d1a70 Mon Sep 17 00:00:00 2001 From: "Mike K." <42292967+Crypt0Fox@users.noreply.github.com> Date: Tue, 20 Jan 2026 11:21:29 +0200 Subject: [PATCH] Fix formatting in README.md headings and lists --- Shellcode/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Shellcode/README.md b/Shellcode/README.md index 77ca6fc..8ad34d1 100644 --- a/Shellcode/README.md +++ b/Shellcode/README.md @@ -1,4 +1,4 @@ -# SimpleMessageBox — Build Guide and Educational Notes +# SimpleMessageBox - Build Guide and Educational Notes This folder contains a tiny Windows program that shows a classic message box. It’s a minimal, benign example used to demonstrate compiling a Windows PE and to provide high‑level (non‑actionable) educational context about “shellcode” and tooling discussed in security research. @@ -21,7 +21,7 @@ int main() { - Windows 10/11 - One of the following build toolchains: - - Microsoft Visual C++ (MSVC) — e.g., Visual Studio or Build Tools + - Microsoft Visual C++ (MSVC) - e.g., Visual Studio or Build Tools - MinGW-w64 (for `gcc`) ## Build @@ -212,7 +212,7 @@ unsigned char shellcode[] = { }; ``` -## EDR/AV Evasion — Not Covered in This Repository +## EDR/AV Evasion - Not Covered in This Repository ### What Is EDR/AV Evasion?