FlyFar

non-destructive-payload32.asm

Jun 18th, 2023 (edited)
1,325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASM (NASM) 0.40 KB | Cybersecurity | 0 0
  1.     global _start
  2.     section .text
  3.  
  4. _start:
  5.     jmp message
  6.  
  7. message:
  8.     call shellcode
  9.     db "Religion is the sigh of the oppressed creature, the heart of a heartless world, and the soul of soulless conditions. It is the opium of the people - Karl Marx", 0xa
  10.  
  11. shellcode:
  12.     pop ecx
  13.     mov ebx, 1
  14.     mov edx, 0x2a
  15.     mov eax, 4
  16.     int 0x80
  17.  
  18.     ;mov eax, 1
  19.     ;mov ebx, 0
  20.     ;int 0x80
Add Comment
Please, Sign In to add comment