Systemsicherheit/Assignment 5 - Software Security - Teil 1/shellcode/shellcode.asm
2024-06-08 18:13:36 +02:00

8 lines
166 B
NASM

; SHELLCODE: "\x90\x90\x90..."
global _start
_start:
;----------------------------------
nop; <YOUR CODE HERE>
; ------------ End of file ------------