Created
January 29, 2022 15:38
-
-
Save DosAmp/371836b65e03ec2e7a22fcc3450e74c6 to your computer and use it in GitHub Desktop.
Minimal vulnerable example for 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
// cc -o pkexamp pkexamp.c $(pkg-config --cflags --libs glib-2.0) && \ | |
// sudo sh -c "chown 0:0 pkexamp && chmod u+s pkexamp" | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <glib.h> | |
int main(int argc, char **argv, char **envp) | |
{ | |
gchar *path = NULL, *s; | |
char **sp; | |
int ret = EXIT_FAILURE; | |
if (argc == 1) { // not <=:) | |
g_printerr("program to execute required!\n"); | |
goto out; | |
} | |
path = g_strdup(argv[1]); | |
if (path[0] != '/') { | |
s = g_find_program_in_path(path); | |
if (!s) { | |
g_printerr("program not found: %s\n", path); | |
goto out; | |
} | |
g_free(path); | |
path = s; | |
} | |
argv[1] = path; | |
fputs("Arguments:\n", stderr); | |
for (sp = argv; *sp; sp++) fprintf(stderr, " %s\n", *sp); | |
fputs("Environment:\n", stderr); | |
for (sp = envp; *sp; sp++) fprintf(stderr, " %s\n", *sp); | |
// GLib victim to call into iconv_open() | |
g_print("Pretending to execute %s...\n", path); | |
ret = 0; | |
out: | |
if (path) g_free(path); | |
return ret; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment