mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-16 23:30:09 -07:00
Kaj Forney
f7da7f3982
Former-commit-id: d5258c85bc
Former-commit-id: aaf57e63c1976b3960fee717c68c3b09dc1a94ff
17 lines
239 B
NASM
17 lines
239 B
NASM
global _start
|
|
|
|
section .text
|
|
|
|
_start:
|
|
mov eax, 0x4
|
|
mov ebx, 0x1
|
|
mov ecx, message
|
|
mov edx, 0xF
|
|
int 0x80
|
|
|
|
mov eax, 0x1
|
|
mov ebx, 0x0
|
|
int 0x80
|
|
|
|
section .data
|
|
message: db "give me a bottle of rum!", 0dh, 0ah
|