60 lines
2.6 KiB
HTML
60 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
label { font-weight: bold; }
|
|
dd { margin-bottom: 1em; }
|
|
</style>
|
|
<title>OSINTials Autodorks</title>
|
|
</head>
|
|
<body>
|
|
<h1>OSINTials Autodorks</h1>
|
|
<dl>
|
|
<dt><label for="fullname">Full Name</label></dt> <dd><input type="text" id="fullname"></dd>
|
|
<dt><label for="fname">First Name</label></dt> <dd><input type="text" id="fname"></dd>
|
|
<dt><label for="lname">Last Name</label></dt> <dd><input type="text" id="lname"></dd>
|
|
<dt><label for="fulllocation">Full Location</label></dt> <dd><input type="text" id="fulllocation"></dd>
|
|
<dt><label for="state">State/Providence</label></dt> <dd><input type="text" id="state"></dd>
|
|
<dt><label for="datemissing">Date Missing</label></dt> <dd><input type="text" value="YYYY-MM-DD" onfocus="if(this.value=='YYYY-MM-DD'){this.value=''}" onblur="if(this.value==''){this.value='YYYY-MM-DD'}" id="datemissing"></dd>
|
|
<dt><label for="yeardob">Year of Birth</label></dt> <dd><input type="text" value="YYYY" onfocus="if(this.value=='YYYY'){this.value=''}" onblur="if(this.value==''){this.value='YYYY'}" id="yeardob"></dd>
|
|
|
|
<dt><button id="send">Go, Baby, Go!</button></dt>
|
|
</dl>
|
|
|
|
<div id="output">
|
|
|
|
</div>
|
|
|
|
<script>
|
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
document.getElementById("send").addEventListener("click", function () {
|
|
// get vals
|
|
fullname = document.getElementById("fullname").value;
|
|
fname = document.getElementById("fname").value;
|
|
lname = document.getElementById("lname").value;
|
|
fulllocation = document.getElementById("fulllocation").value;
|
|
state = document.getElementById("state").value;
|
|
datemissing = document.getElementById("datemissing").value;
|
|
yeardob = document.getElementById("yeardob").value;
|
|
|
|
// define dorks
|
|
// 0: username dork by fuzzy names
|
|
// 1: arrested
|
|
// 2: remains found
|
|
dorks = ["~" + fname + " ~" + lname + " ~" + yeardob + " before:" + datemissing,
|
|
fullname + " ~arrested after:" + datemissing + " loc:" + state,
|
|
"~body ~found after:" + datemissing + " loc:" + state]
|
|
|
|
document.getElementById("output").innerHTML="";
|
|
|
|
for(i=0; i<dorks.length; i++) {
|
|
document.getElementById("output").innerHTML+="<a target=\"_blank\" href=https://www.google.com/?q=" + encodeURI(dorks[i]) +">link " + i + "</a><br>";
|
|
sleep(500);
|
|
}
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |