# HG changeset patch # User HackBot # Date 1490906976 0 # Node ID e7d860aee142f02198c815a225530165bc7e2c65 # Parent 11423d980e1c182e8f6bd8160589364b1ed029aa fetch https://pastebin.com/raw/5pEV4X5h diff -r 11423d980e1c -r e7d860aee142 5pEV4X5h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/5pEV4X5h Thu Mar 30 20:49:36 2017 +0000 @@ -0,0 +1,18 @@ +section .text +global _start + +_start: + + mov edx,len + mov ecx,msg + mov ebx,1 + mov eax,4 + int 0x80 + + mov eax,1 + int 0x80 + +section .data + +msg db 'Assembly is a land of segmentation faults and insanity',0xa ;the entry +len equ $ - msg \ No newline at end of file