From: b Date: Thu, 8 Sep 2022 19:22:05 +0000 (+0000) Subject: Removed intermediate files X-Git-Url: http://bicyclesonthemoon.info/git-projects/?a=commitdiff_plain;h=9f9f906ef9c249c4a5066910da9d4eb4ff56fa0d;p=botm%2Fgit Removed intermediate files --- diff --git a/git-http-backend b/git-http-backend deleted file mode 100755 index 24d61ce..0000000 Binary files a/git-http-backend and /dev/null differ diff --git a/git-http-backend.c b/git-http-backend.c deleted file mode 100644 index 4af9c17..0000000 --- a/git-http-backend.c +++ /dev/null @@ -1,52 +0,0 @@ -#include - -#define TARGET "/usr/lib/git-core/git-http-backend" - -int main(int argc, char *argv[], char *envp[]) -{ - int r; - r=execve(TARGET,argv,envp); - return r; -} - -/* -Explanation: - -You want to run some program/script with SETUID -but you don't want to set the SETUID flag of the original program -or you want to run it as a different user than owner of the program -Solution: -You insert the path into the TARGET define, -compile this file -and set the user and SETUID flag of the compiled program. - -Sidenote: - -If you ever think that it could be a good idea to extend this a little -and make a generalised SETUID launcher to run arbitrary programs -(instead of a dedicated launcher for each program) -something like this: - -#include -#include - -int main(int argc, char *argv[], char *envp[]) -{ - int r - if (argc<2) { - fputs("Command missing.\n"); - return 1; - } - r=execve(argv[1],argv+1,envp); - return r; -} - -then I have to warn you: -NO, THAT'S NOT A GOOD IDEA. -ACTUALLY, IT'S AN INCREDIBLY STUPID IDEA. -If you compile such a program and set the SETUID flag, -then yes you will have a generalised SETUID launcher, -but also ANYONE on the computer will be able to run ANYTHING -as if they were you. -Congratulations, your password is useless. -*/