Merge branch 'dev'

This commit is contained in:
2018-01-05 13:23:14 +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; exit;
} elseif($method === "myself" ) { // detailed info about own IP } elseif($method === "myself" ) { // detailed info about own IP
$ip = $_SERVER['REMOTE_ADDR']; $ip = $_SERVER['REMOTE_ADDR'];
print_header();
show_http_headers(); show_http_headers();
show_hostname($ip); show_hostname($ip);
show_reverse($hostname); show_reverse($hostname);
@@ -31,12 +32,14 @@ if($method === "simple") { // simple
show_whois($ip); show_whois($ip);
} elseif($method === "ip" ) { // detailed info an IP } elseif($method === "ip" ) { // detailed info an IP
$ip = $t; $ip = $t;
print_header();
show_hostname($ip); show_hostname($ip);
show_reverse($hostname); show_reverse($hostname);
show_ipinfo($ip); show_ipinfo($ip);
show_whois($ip); show_whois($ip);
} elseif($method === "dns" ) { // detailed info a host name } elseif($method === "dns" ) { // detailed info a host name
$hostname = $t; $hostname = $t;
print_header();
show_reverse($hostname); show_reverse($hostname);
show_dnsrecords($hostname); show_dnsrecords($hostname);
show_whois($hostname); show_whois($hostname);
@@ -45,7 +48,7 @@ if($method === "simple") { // simple
header("Location:/".$config->detailed_uri.""); header("Location:/".$config->detailed_uri."");
exit; exit;
} }
footer(); print_footer();
// HTTP HEADERS // HTTP HEADERS
function show_http_headers() { function show_http_headers() {
@@ -151,13 +154,26 @@ function show_dnsrecords($hostname) {
echo "<br />\n"; 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 // PRINT FOOTER
function footer() { function print_footer() {
global $config; global $config;
echo "<br /><hr /><br />\n"; echo "<br /><hr /><br />\n";
echo 'Your plain IP address: <a href="//'.$config->ip4domain.'">IPv4</a> | <a href="//'.$config->ip6domain.'">IPv6</a>'; echo 'Your plain IP address: <a href="//'.$config->ip4domain.'">IPv4</a> | <a href="//'.$config->ip6domain.'">IPv6</a>';
echo "<br />\n"; 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 '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 // HELPER FUNCTIONS