Leser: 2
|< 1 2 3 >| | 24 Einträge, 3 Seiten |
1
2
3
4
5
6
7
8
9
10
11
print "Content-type: text/html\n\n";
$tmp=$ENV{'QUERY_STRING'};
system('C:\Programme\FTP\FTP.exe ftp://'.$tmp);
print 'Erledigt';
print '
<script type="text/javascript">
window.close()
</script>';
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use Win32::Process;
sub ErrorReport {
die Win32::FormatMessage( Win32::GetLastError() );
}
my $tmp = $ENV{'QUERY_STRING'};
my $pid;
print "Content-type: text/html\n\n";
Win32::Process::Create(
$pid,
"C:\\Programme\\FTP\\FTP.exe",
"ftp ftp://$tmp",
0,
NORMAL_PRIORITY_CLASS,
".")|| ErrorReport();
print 'Erledigt';
print '<script type="text/javascript">window.close()</script>';
1
2
3
4
5
6
7
Win32::Process::Create(
$pid,
"C:\\Programme\\FTP\\FTP.exe",
"FTP.exe ftp://$tmp", # mit dieser Zeile musst Du evtl. "spielen"
0,
NORMAL_PRIORITY_CLASS,
".")|| ErrorReport();
1
2
3
4
5
6
7
Win32::Process::Create(
$pid,
"C:\\Programme\\FTP\\FTP.exe",
"FTP.exe ftp://$tmp", # mit dieser Zeile musst Du evtl. "spielen"
0,
NORMAL_PRIORITY_CLASS,
".")|| ErrorReport();
".")|| ErrorReport();
".");
".")|| ErrorReport();
".");
|< 1 2 3 >| | 24 Einträge, 3 Seiten |