2023-03-07 14:40:49 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Website-Finder</title>
|
2023-03-08 01:48:47 +01:00
|
|
|
<link rel="icon" type="image/x-icon" href="./favicon.png">
|
2023-03-07 14:40:49 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link href="https://fonts.cdnfonts.com/css/gugi" rel="stylesheet">
|
2025-02-26 14:19:55 +01:00
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
2023-03-07 14:40:49 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="./index.css">
|
|
|
|
<script type="text/javascript" src="./index.js"></script>
|
2025-02-26 14:19:55 +01:00
|
|
|
<script defer src="https://visitors.taevas.xyz/script.js" data-website-id="cb62d2c6-dfbb-4f21-b148-670743edfbdf"></script>
|
2023-03-07 14:40:49 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="presentation">
|
|
|
|
<h1>Website-Finder</h1>
|
|
|
|
<p>Also available in:</p>
|
|
|
|
<nav class="nav nav-pills nav-fill">
|
2025-04-20 17:45:44 +02:00
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/C%23">C#</a>
|
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/Crystal">Crystal</a>
|
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/Go">Go</a>
|
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/Node.js">Node.js</a>
|
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/Python">Python</a>
|
|
|
|
<a class="nav-link" target="_blank" rel="noopener noreferrer" href="https://kitsunes.dev/Taevas/Website-Finder/src/branch/master/Ruby">Ruby</a>
|
2023-03-07 14:40:49 +01:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
<div id="finder">
|
|
|
|
<form class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col col-lg-3 col-12 form-floating">
|
2023-03-08 00:58:30 +01:00
|
|
|
<input class="form-control" type="number" id="times" value="1000" placeholder="">
|
2023-03-07 14:40:49 +01:00
|
|
|
<label>Number of URLs to check</label>
|
|
|
|
</div>
|
|
|
|
<div class="col col-md col-12 form-floating">
|
2023-03-08 00:58:30 +01:00
|
|
|
<input class="form-control" placeholder="" type="number" id="min" value="4" placeholder="">
|
2023-03-07 14:40:49 +01:00
|
|
|
<label>Min domain length (excl. TLD)</label>
|
|
|
|
</div>
|
|
|
|
<div class="col col-md col-12 form-floating">
|
2023-03-08 00:58:30 +01:00
|
|
|
<input class="form-control" placeholder="" type="number" id="max" value="6" placeholder="">
|
2023-03-07 14:40:49 +01:00
|
|
|
<label>Max domain length (excl. TLD)</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col col-lg col-md-3 col-12 form-floating">
|
|
|
|
<input class="form-control" placeholder="" type="text" id="protocols" value="https" placeholder="">
|
|
|
|
<label>Application protocols</label>
|
|
|
|
</div>
|
|
|
|
<div class="col col-lg col-md-9 col-12 form-floating">
|
|
|
|
<input class="form-control" placeholder="" type="text" id="domains"
|
2025-02-26 14:19:55 +01:00
|
|
|
value="com, org, net, tk, cn, de, fr, ru, uk, nl, ca, au, in, ir, tv, live, gov, edu" placeholder="">
|
2023-03-07 14:40:49 +01:00
|
|
|
<label>TLDs to check</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col col-lg-9 col-12 form-floating" style="margin-left: auto; margin-right: auto;">
|
|
|
|
<input class="form-control" placeholder="" type="number" id="second" value="0" placeholder="">
|
|
|
|
<label>Chances out of 100 for a URL to have two TLDs</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-08 01:48:47 +01:00
|
|
|
<input type="button" id="search_btn" value="Find websites!">
|
2023-03-07 14:40:49 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-03-08 00:58:30 +01:00
|
|
|
<div id="status" class="row" style="display: none;">
|
|
|
|
<div id="progress" class="col col-sm-12">
|
|
|
|
<p id="log_start"></p>
|
|
|
|
<p id="log_length"></p>
|
|
|
|
<p id="log_protocols"></p>
|
|
|
|
<p id="log_tlds"></p>
|
|
|
|
<p id="log_count"></p>
|
|
|
|
<p id="log_checking"></p>
|
2023-03-07 14:40:49 +01:00
|
|
|
</div>
|
|
|
|
<div id="list" class="col">
|
2023-03-08 00:58:30 +01:00
|
|
|
<ul id="actual_list">
|
2023-03-07 14:40:49 +01:00
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-20 17:45:44 +02:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
2023-03-07 14:40:49 +01:00
|
|
|
</body>
|
|
|
|
</html>
|