-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (98 loc) · 4.44 KB
/
Copy pathindex.html
File metadata and controls
137 lines (98 loc) · 4.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./files/index.css">
<title>Investigator </title>
<meta name="description" content="Quick OSINT search for Domains, IP's, and Hash.">
<meta name="keywords" content="osint, ip search, domain search, hash search, recon, robot.txt,open reirect, login pages, crt.sh, wordpress scan, pastebin entries, find cms,search amazon s3 bucket, github search, reverse ip etc">
<link rel="icon" type="image/ico" href="https://www.digital.security/en/sites/default/files/imce/images/00.png"/>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KF749ZL');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KF749ZL"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="headtitle">
<h1>OSINT Thingy helps quickly check domain, IP and Hash information.</h1>
<p>Hash search with only work with Cards having (Hash) in the title.</p>
</div>
<div class="container">
<div class="head_gro">
<h2 class="head_title">OSINT Thingy</h2>
<p class="head_down">An OSINT Tool</p>
</div>
<div>
</div>
</div>
<!--
<div class="head_button">
Place this tag where you want the button to render.
</div>
-->
</div>
</div>
<p>Click the buttons inside the tabbed menu for each search:</p>
<div class="tab">
<button class="tablinks" onclick="openSearch(event, 'IP-Search')">IP Search</button>
<button class="tablinks" onclick="openSearch(event, 'Domain-Search')">Domain Search</button>
<button class="tablinks" onclick="openSearch(event, 'Hash-Search')">Hash Search</button>
</div>
<div id="IP-Search" class="tabcontent">
<div class='in_div'>
<img class="search" src="https://img.icons8.com/ios-filled/50/ffffff/search--v1.png"/>
<input class="index_input" id="ip_input" type="text" onchange="iptextch(this.value)" placeholder="IP"/>
</div>
<div class="cards" id="ipcards">
<script type="text/javascript" src="./files/ipindex.js"></script>
</div>
</div>
<div id="Domain-Search" class="tabcontent">
<div class='in_div'>
<img class="search" src="https://img.icons8.com/ios-filled/50/ffffff/search--v1.png"/>
<input class="index_input" id="dom_input" type="text" onchange="domtextch(this.value)" placeholder="Domain"/>
</div>
<div class="cards" id="domcards">
<script type="text/javascript" src="./files/domindex.js"></script>
</div>
</div>
<div id="Hash-Search" class="tabcontent">
<div class='in_div'>
<img class="search" src="https://img.icons8.com/ios-filled/50/ffffff/search--v1.png"/>
<input class="index_input" id="hash_input" type="text" onchange="hashtextch(this.value)" placeholder="Hash"/>
</div>
<div class="cards" id="hashcards">
<script type="text/javascript" src="./files/hashindex.js"></script>
</div>
</div>
<script>
function openSearch(evt, searchType) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(searchType).style.display = "block";
evt.currentTarget.className += " active";
}
</script>
<p class="footer"><a href="https://github.com/githubmg21/osintthingy">OSINT Thingy</a> <span>by</span> <a href="https://github.com/githubmg21">githubmg21</a></p>
</div>
<h1 class="mobile"><span style="font-size:25px;color:red;">Investigator</span> <br> USE A LARGER SCREEN PLEASE</h1>
<div class="actual">
</body>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</html>