]> git.donarmstrong.com Git - debbugs.git/blobdiff - cgi/pkgreport.cgi
add tests for control at submit time
[debbugs.git] / cgi / pkgreport.cgi
index b70a5cb6b997dd06ee3629471fe055ec2b90384b..d29c3abc7ff56943a7a0a2196be16e5560bda857 100755 (executable)
 use warnings;
 use strict;
 
+# Sanitize environent for taint
+BEGIN{
+    delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
+}
+
+# STDOUT should be in utf8 mode
+binmode(STDOUT,':utf8');
+
 use POSIX qw(strftime nice);
 
 use Debbugs::Config qw(:globals :text :config);