| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Write your shellcode in Assembly (NASM) and compile it on Windows x64 with one command!
This script helps automate the shellcode development and testing process. It takes your Assembly file with the payload (shellcode.asm) and generates a bunch of useful executable files (read below).
You don't have to repeat all these tedious activities anymore to make your shellcode executable! Keep your focus on shellcoding 🔥🐚🔥
The following software must be installed on your system:
No Python dependencies are necessary! You are ready to go.
The output files of this script are stored in out/ directory:
[bits 64]
section .text:
global _start
_start:
[...YOUR CODE HERE...]The best way to debug your assembly code is to take out/shellcode.exe file and load it into your favorite debugger.
Finally you should run out/malware.exe to be sure that your payload works as intended after memory injection.
| Back | FazBrowse Home | New Git URL |