document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Section .text
  2.   global  _start
  3.  
  4. _start:
  5.   mov eax, 1  ; Syscall 1 - _exit
  6.   mov ebx, 0  ; Exit status
  7.   int 0x80    ; Switch to kernel mode
');