Compare commits

...

6 Commits

Author SHA1 Message Date
90be3e54b9 Merge branch 'dev' 2018-01-05 13:23:14 +01:00
69c1411c98 use correct language tag 2018-01-05 13:21:11 +01:00
504586a033 use valid html 2018-01-05 13:19:53 +01:00
a720d581d5 rename function names 2018-01-05 13:17:35 +01:00
e5f6c39224 fix syntax 2018-01-05 13:14:20 +01:00
6cf4ef1237 add html header and favicon 2018-01-05 13:13:06 +01:00
2 changed files with 18 additions and 2 deletions

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -24,6 +24,7 @@ if($method === "simple") { // simple
exit;
} elseif($method === "myself" ) { // detailed info about own IP
$ip = $_SERVER['REMOTE_ADDR'];
print_header();
show_http_headers();
show_hostname($ip);
show_reverse($hostname);
@@ -31,12 +32,14 @@ if($method === "simple") { // simple
show_whois($ip);
} elseif($method === "ip" ) { // detailed info an IP
$ip = $t;
print_header();
show_hostname($ip);
show_reverse($hostname);
show_ipinfo($ip);
show_whois($ip);
} elseif($method === "dns" ) { // detailed info a host name
$hostname = $t;
print_header();
show_reverse($hostname);
show_dnsrecords($hostname);
show_whois($hostname);
@@ -45,7 +48,7 @@ if($method === "simple") { // simple
header("Location:/".$config->detailed_uri."");
exit;
}
footer();
print_footer();
// HTTP HEADERS
function show_http_headers() {
@@ -151,13 +154,26 @@ function show_dnsrecords($hostname) {
echo "<br />\n";
}
}
// PRINT HEADER
function print_header() {
print '<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IP and DNS information</title>
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
';
}
// PRINT FOOTER
function footer() {
function print_footer() {
global $config;
echo "<br /><hr /><br />\n";
echo 'Your plain IP address: <a href="//'.$config->ip4domain.'">IPv4</a> | <a href="//'.$config->ip6domain.'">IPv6</a>';
echo "<br />\n";
echo 'Your detailed IP info: <a href="//'.$config->ip4domain.'/'.$config->detailed_uri.'">IPv4</a> | <a href="//'.$config->ip6domain.'/'.$config->detailed_uri.'">IPv6</a>';
echo '</body></html>';
}
// HELPER FUNCTIONS