Skip to content

Instantly share code, notes, and snippets.

View absolutegoaat's full-sized avatar
🐐

absolutegoat absolutegoaat

🐐
View GitHub Profile
@absolutegoaat
absolutegoaat / exec.asm
Created April 30, 2026 17:13
execute stuff using asm wtv im lazy to write actual shell code atm
extern WinExec
extern ExitProcess
section .data
cmd db "cmd.exe /c echo Hello from ASM", 0 ; const char cmd[] = "cmd.exe /c echo Hello from ASM";
section .text
global main
main: