Browse Source

Added basic security measures

Alois Mahdal (@azzgoat) 11 years ago
parent
commit
b1d11c4e26
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      cgi-bin/hello_host.cgi

+ 4
- 1
cgi-bin/hello_host.cgi View File

@@ -1,4 +1,7 @@
1
-#!/usr/bin/perl -w
1
+#!/usr/bin/perl -wT
2
+
3
+use strict;
4
+use warnings;
2 5
 
3 6
 use Sys::Hostname;
4 7