From c0337286c8b72331c0ba1abb11cf7142bc479f0a Mon Sep 17 00:00:00 2001 From: "jrayhawk+piny.be@omgwallhack.org" Date: Fri, 21 Jan 2011 03:35:21 -0800 Subject: Adding slew of simple piny-suid cgis --- pinyweb/cgi-bin/auth/newrepo.cgi | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'pinyweb/cgi-bin/auth/newrepo.cgi') diff --git a/pinyweb/cgi-bin/auth/newrepo.cgi b/pinyweb/cgi-bin/auth/newrepo.cgi index ad3cdd7..000be02 100755 --- a/pinyweb/cgi-bin/auth/newrepo.cgi +++ b/pinyweb/cgi-bin/auth/newrepo.cgi @@ -1,6 +1,8 @@ #!/usr/bin/perl $| = 1; +open(STDERR, ">&STDOUT"); + use warnings; use CGI; @@ -11,10 +13,9 @@ $q = CGI->new; print( "Content-type: text/plain\n\n"); -if( $q->param('n') && $q->param('d') ) { - unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', $q->param('n') ) ) { - print 'could not execute newrepo'; - die; +if( $q->param('r') && $q->param('d') ) { + unless( open2( OUT, IN, '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', $q->param('r') ) ) { + die 'could not execute newrepo'; }; # make things flushier select( (select(IN), $| = 1)[0] ); -- cgit v1.2.3