Systemsicherheit/Assignment 5 - Software Security - Teil 1/shellcode/shellcode.asm

9 lines
166 B
NASM
Raw Normal View History

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