-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.cgi
More file actions
47 lines (31 loc) · 1.09 KB
/
env.cgi
File metadata and controls
47 lines (31 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/perl
use strict;
my $out = '';
$out .= qq{<table class="table table-responsive table-striped table-compact">};
if (%ENV) {
for (keys %ENV) {
$out .= qq{<tr> <td>$_</td> <td>$ENV{"$_"}</td> </tr>\n};
}
$out .= qq{</table>};
}
print qq{Content-Type: text/html\n\n};
print qq{<!doctype html>
<html lang="en">
<head>
<title>Environment - PC-Access Free</title>
<meta charset="utf-8">
<meta name="theme-color" content="black">
<meta name="keywords" content="windows xp, windows 7, windows 8.1, windows 10, windows server 2012, file manager, blogs, hosted by a1z.us, pc access free">
<meta name="description" content="Windows file Manager - PC Access Free">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<main>
};
print qq{$out};
print qq{
</main>
};