init
This commit is contained in:
14
x86_64/Example_Code/exit.asm
Normal file
14
x86_64/Example_Code/exit.asm
Normal file
@@ -0,0 +1,14 @@
|
||||
; shellcode lab 64Bit
|
||||
; exit example as it should be ;)
|
||||
; dsah@hack4.org
|
||||
;
|
||||
BITS 64
|
||||
global _start
|
||||
|
||||
_start:
|
||||
|
||||
xor rax,rax
|
||||
xor rdx,rdx
|
||||
mov al,0x3C
|
||||
mov dil,4
|
||||
syscall
|
||||
Reference in New Issue
Block a user