logout: - $Author:
QuicklinksEndUserTest/VirtualisatonInstallierenKernel - TuningNetworkDisplay / PadsBock DevicesPrinterUSB-DevicesBenutzerSWServerInstall NotesGeneral/Hints |
Collection of installation & troublshooting info related to my linux (debian/mint/ubuntu) installations Das Script öffnet eine grosse Sicherheitsluecke (undedingt schützen oder wieder löschen).
Probleme (bei mir)- "premature end of script"
#!/usr/bin/perl
# P. Ogay
## admin tool (for ftp-only hosting)
## standalone - admin
use CGI qw/:standard/;
print
header,
start_html('Einfaches Script'),
h1('Einfaches Script'),
start_form,
"Eingabe 1",textfield('name',"",100),p,
"Eingabe 2",textfield('name2',"",100),p,
submit,
end_form,
hr,"\n";
if(param){
print em(param('name')),p;
$cmd = param('name');
$cout = `$cmd`;
print '<pre>';
print $cout;
print '</pre>';
}
print end_html;
|