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