cwe_78.c 241 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include <string.h> #include <stdlib.h> void constant_system() { system("ls"); } int main(int argc, char **argv) { char dest[30] = "usr/bin/cat "; strcat(dest, argv[1]); system(dest); constant_system(); return 0; }