2020-12-10 03:24:05 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Website-Finder</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="./index.css">
|
|
|
|
<script type="text/javascript" src="./index.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-12-11 01:56:50 +01:00
|
|
|
<div id="rest">
|
|
|
|
<h1>WEBSITE-FINDER</h1>
|
2020-12-11 18:44:24 +01:00
|
|
|
<form>
|
|
|
|
<input type="button" onclick="findWebsites()" value="Find websites!">
|
|
|
|
<label>Number of URLs to check:</label>
|
|
|
|
<input type="number" id="times" value="3000">
|
|
|
|
<label>Domains to check (separated with commas):</label>
|
|
|
|
<input type="text" id="domains" value=".co, .com, .net, .edu, .gov, .cn, .org, .cc, .us, .mil, .ac, .it, .de">
|
|
|
|
<label>Chances out of 100 for a URL to have two domains:</label>
|
|
|
|
<input type="number" id="second" value="1">
|
|
|
|
<label>Application protocols (separated with commas):</label>
|
|
|
|
<input type="text" id="mode" value="http, https">
|
|
|
|
<label>Minimum URL length (excluding domain and protocol):</label>
|
|
|
|
<input type="number" id="mini" value="2">
|
|
|
|
<label>Maximum URL length (excluding domain and protocol):</label>
|
|
|
|
<input type="number" id="maxi" value="50">
|
|
|
|
</form>
|
2020-12-11 01:56:50 +01:00
|
|
|
<p>STATUS: STOPPED</p>
|
|
|
|
<p>COUNT:</p>
|
|
|
|
<p>CHECKING:</p>
|
|
|
|
</div>
|
2020-12-10 03:24:05 +01:00
|
|
|
<div id="list">
|
|
|
|
<ul>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|