8 lines
166 B
NASM
8 lines
166 B
NASM
|
|
; SHELLCODE: "\x90\x90\x90..."
|
|
|
|
global _start
|
|
_start:
|
|
;----------------------------------
|
|
nop; <YOUR CODE HERE>
|
|
; ------------ End of file ------------
|