Files
SnakeAppleSecurityFiles/X. NU/custom/mach_call_demo.c
T
2024-11-22 19:20:41 +01:00

9 lines
205 B
C

#include <mach/mach.h>
int main() {
mach_port_t port;
mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port);
return 0; // Port allocation directly interacts with kernelspace
}