/* * Copyright (C) 2007 Casey Schaufler * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2. * * Author: * Casey Schaufler */ #include #include #include #include #include #include #include int main(int argc, char *argv[]) { setuid(1); execv(argv[1], &argv[1]); perror(argv[0]); exit(1); }