https://gendns.com/

Submitted URL:
https://gendns.com/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 5 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring
hideStuffstring
togglestring

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://gendns.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>What's My IP?</title>

	<style type="text/css">
	* { margin:0; padding:0; }
	body { background:#1e3b97; color:#1e3b97; margin-top:50px; }
	.tools { margin:25px auto; width:960px; }
	.tools p {
	    margin-left:20px; color:#4164dd; font-family: Georgia,serif;
		-webkit-text-shadow:0 0 7px #000; -moz-text-shadow:0 0 7px #000; text-shadow:0 0 7px #000;
		}
	#ip-lookup {
		border:1px solid #333;
		background-position:50% 50%; background-repeat:repeat-x; background-color:#4164dd;

		-webkit-border-radius:11px; -moz-border-radius:11px; border-radius:11px;
		-webkit-box-shadow:0 0 11px #111; -moz-box-shadow:0 0 11px #111; box-shadow:0 0 11px #111;
		}
	#tools p { font-size:77px; }
	#more p  { font-size:24px; }
	#more-info p { font-size:18px; }
	#more-info ul { margin:20px 0 35px 50px; font-size:18px; color:#ddd; }
	#more-info li { margin:10px 0; line-height:25px; font-family:Helvetica, Arial; }
	h1 {
		font: 124px/1 Helvetica, Arial; text-align:center; margin:50px 0; color:#efefef;
		-webkit-text-shadow:0 0 7px #333; -moz-text-shadow:0 0 7px #333; text-shadow:0 0 7px #333;
		}
	h1 a:link { color:#efefef; }
	a:link,a:visited {
		color:#ddd; text-decoration:none; outline:0 none;
		-webkit-text-shadow:0 0 7px #000; -moz-text-shadow:0 0 7px #000; text-shadow:0 0 7px #000;
		}
	a:hover,a:active { color:#eee; text-decoration:underline; outline:0 none; }
	li span {
		font:16px/1 Monaco,"Panic Sans","Lucida Console","Courier New",Courier,monospace,sans-serif; color:#ccc;
		-webkit-text-shadow:0 0 3px #777; -moz-text-shadow:0 0 3px #777; text-shadow:0 0 3px #777;
		}
    </style>
	
	</head><body>
		<div id="tools" class="tools">
			<p>What Is Your IP Address?</p>
		</div>
		<div id="ip-lookup" class="tools">
						<h1>104.28.158.248</h1>
		</div>
		<div id="more" class="tools">
			<p><a id="more-link" title="More information" href="javascript:toggle();">More info</a></p>
		</div>
		<div id="more-info" class="tools" style="display: none;">
			<ul>
			<li><strong>Remote Port:</strong> <span>10779</span></li><li><strong>Request Method:</strong> <span>GET</span></li><li><strong>Server Protocol:</strong> <span>HTTP/2.0</span></li><li><strong>Server Host:</strong> <span>104.28.158.248</span></li><li><strong>User Agent:</strong> <span>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36</span></li>			</ul>
			<p><small>This page was created in 0.00016283988952637 seconds.</small></p>
		</div>
		
		<script type="text/javascript">
		function hideStuff(){
		    if (document.getElementById){
		        var x = document.getElementById('more-info');
		        x.style.display="none";
		    }
		    
		}
	function toggle(){
		if (document.getElementById){
			var x = document.getElementById('more-info');
			var y = document.getElementById('more-link');
			if (x.style.display == "none"){
				x.style.display = "";
				y.innerHTML = "Less info";
			} else {
				x.style.display = "none";
				y.innerHTML = "More info";
			}
		}
	}
	window.onload = hideStuff;
	</script>
	
	
</body></html>