blob: 0d3b5e0cc0ca4e2e4a2577e5ea564e55136dbf25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
BITS 64
call get_string
got_string:
pop rsi
xor rax,rax
xor rdx,rdx
mov byte al,0x1
mov byte dl,0x7
syscall
jmp short done
get_string:
jmp short got_string
db 'blablubb'
done:
|