char shellcode[] =	"\x31\xc0\x31\xdb\x31\xc9\xb0\x46\xcd\x80\x31\xc0\x50" //ls
			"\x68\x2f\x2f\x6c\x73\x68\x2f\x62\x69\x6e\x89\xe3"
			 "\x50\x53\x89\xe1\x31\xd2\xb0\x0b\xcd\x80";
//char shellcode[] = "\x41\x41\x41";

main()
{
 
 int *ret;
 ret=(int *)&ret + 2;
 (*ret) = (int)shellcode;
}
 
 
