diff options
author | jrayhawk+piny.be@omgwallhack.org <jrayhawk@dev.piny.svcs.cs.pdx.edu> | 2011-01-21 03:35:21 -0800 |
---|---|---|
committer | jrayhawk+piny.be@omgwallhack.org <jrayhawk@dev.piny.svcs.cs.pdx.edu> | 2011-01-21 03:35:21 -0800 |
commit | c0337286c8b72331c0ba1abb11cf7142bc479f0a (patch) | |
tree | 7c05dc0cd9b505ea1c4398d83a64f5c678413b02 /pinyweb/cgi-bin/auth/rmrepo.cgi | |
parent | 11eeba59ae41328083f090b3d4f812585e86b0a7 (diff) | |
download | piny-code-c0337286c8b72331c0ba1abb11cf7142bc479f0a.tar.gz piny-code-c0337286c8b72331c0ba1abb11cf7142bc479f0a.zip |
Adding slew of simple piny-suid cgis
Diffstat (limited to 'pinyweb/cgi-bin/auth/rmrepo.cgi')
-rwxr-xr-x | pinyweb/cgi-bin/auth/rmrepo.cgi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pinyweb/cgi-bin/auth/rmrepo.cgi b/pinyweb/cgi-bin/auth/rmrepo.cgi new file mode 100755 index 0000000..2d0ff23 --- /dev/null +++ b/pinyweb/cgi-bin/auth/rmrepo.cgi @@ -0,0 +1,22 @@ +#!/usr/bin/perl +$| = 1; + +open(STDERR, ">&STDOUT"); + +use warnings; + +use CGI; + +use IPC::Open2; + +$q = CGI->new; + +print( "Content-type: text/plain\n\n"); + +if( $q->param('r') ) { + unless ( system( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'rmrepo', $q->param('r') ) == 0 ) { + die( 'rmrepo was unsuccessful.' ); + }; +} else { + print 'Missing parameters.'; +}; |