You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
11 lines
187 B
C
11 lines
187 B
C
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/prctl.h>
|
|
|
|
int main(){
|
|
int32_t result = 0;
|
|
prctl(0xdeadbeef, 0, 0, 0, &result);
|
|
system("/system/bin/sh");
|
|
return 0;
|
|
}
|