Merge branch 'master' into patch-1

This commit is contained in:
Giddlers
2025-06-16 11:39:40 -04:00
committed by GitHub
4 changed files with 49 additions and 64 deletions
+26 -61
View File
@@ -20,16 +20,6 @@
"type": "url",
"url": "https://namechk.com/"
},
{
"name": "KnowEm",
"type": "url",
"url": "http://knowem.com/"
},
{
"name": "NameCheckr",
"type": "url",
"url": "https://www.namecheckr.com/"
},
{
"name": "UserSearch.org",
"type": "url",
@@ -50,11 +40,6 @@
"type": "url",
"url": "https://thatsthem.com/"
},
{
"name": "Check Usernames",
"type": "url",
"url": "http://checkusernames.com/"
},
{
"name": "NameCheckup",
"type": "url",
@@ -154,11 +139,6 @@
"name": "Skymem",
"type": "url",
"url": "http://www.skymem.info/"
},
{
"name": "MailsHunt",
"type": "url",
"url": "https://mailshunt.com/"
}]
},
{
@@ -170,11 +150,6 @@
"type": "url",
"url": "https://www.email-format.com/"
},
{
"name": "Toofr",
"type": "url",
"url": "https://www.toofr.com/"
},
{
"name": "Email Permutator",
"type": "url",
@@ -1794,6 +1769,11 @@
"type": "url",
"url": "http://www.sno.phy.queensu.ca/~phil/exiftool/"
},
{
"name": "ExifEditor",
"type": "url",
"url": "https://exifeditor.io"
},
{
"name": "Jeffrey's Exif Viewer",
"type": "url",
@@ -2194,16 +2174,6 @@
"type": "url",
"url": "https://www.facebook.com/login/identify"
}]
},
{
"name": "Analytics",
"type": "folder",
"children": [
{
"name": "fb-sleep-stats (T)",
"type": "url",
"url": "https://github.com/sqren/fb-sleep-stats"
}]
}]
},
{
@@ -2461,6 +2431,16 @@
"url": "https://github.com/paulgb/Treeverse"
}]
},
{
"name": "Steam, Discord & Gaming Networks",
"type": "folder",
"children": [
{
"name": "SteamOSINT (T)",
"type": "url",
"url": "https://github.com/Frontline-Femmes/Steam-OSINT"
}]
},
{
"name": "Other Social Networks",
"type": "folder",
@@ -2685,11 +2665,6 @@
"type": "url",
"url": "http://infospace.com/"
},
{
"name": "Waatp",
"type": "url",
"url": "http://waatp.com/"
},
{
"name": "Webmii",
"type": "url",
@@ -5221,11 +5196,6 @@
"url": "http://eqt5g4fuenphqinx.onion/"
}]
},
{
"name": "Tor2web",
"type": "url",
"url": "https://tor2web.org/"
},
{
"name": "Web O Proxy",
"type": "url",
@@ -5905,6 +5875,11 @@
"name": "Any Run",
"type": "url",
"url": "https://app.any.run/"
},
{
"name": "Uncover It",
"type": "url",
"url": "https://www.uncoverit.org/"
}]
},
{
@@ -6540,6 +6515,11 @@
"name": "The Many Hats Club - Privacy Resources",
"type": "url",
"url": "https://themanyhats.club/centralised-place-for-privacy-resources/"
},
{
"name": "The Hitchhikers Guide to Online Anonymity",
"type": "url",
"url": "https://anonymousplanet.org/guide/"
}]
},
{
@@ -6666,12 +6646,7 @@
"name": "Games",
"type": "folder",
"children": [
{
"name": "A Google A Day",
"type": "url",
"url": "http://www.agoogleaday.com/"
},
{
{
"name": "GeoGuesser",
"type": "url",
"url": "https://geoguessr.com/"
@@ -6687,11 +6662,6 @@
"type": "url",
"url": "https://www.forensicosint.com/osint-guide"
},
{
"name": "AutomatingOSINT.com",
"type": "url",
"url": "http://register.automatingosint.com/"
},
{
"name": "Open Source Intelligence Techniques",
"type": "url",
@@ -6707,11 +6677,6 @@
"type": "url",
"url": "https://www.sans.org/sec487"
},
{
"name": "NetBootCamp",
"type": "url",
"url": "https://netbootcamp.org/trainingprogram/"
},
{
"name": "Smart Questions",
"type": "url",
+14
View File
@@ -16,6 +16,20 @@ body {
text-align: center;
}
.dark-Mode{
background-color: #000;
color: #fff;
.node text {
fill: #fff;
}
.legend{
color: #fff;
}
path.link{
stroke: #444;
}
}
.legend {
position: absolute;
top: 0px;
+3 -2
View File
@@ -20,8 +20,9 @@
<div class="legend"><p>(T) - Indicates a link to a tool that must be installed and run locally<br>
(D) - Google Dork, for more information: <a href="https://en.wikipedia.org/wiki/Google_hacking">Google Hacking</a><br>
(R) - Requires registration<br>
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p></div>
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p>
<button onclick="goDark()">Toggle dark mode</button></div>
<h3>Notes</h3>
OSINT framework focused on gathering information from free tools or resources. The intention is to help people find free OSINT resources. Some of the sites included might require registration or offer more data for $$$, but you should be able to get at least a portion of the available information for no cost.<br>
+6 -1
View File
@@ -148,4 +148,9 @@ function toggle(d) {
d.children = d._children;
d._children = null;
}
}
}
//Togle Dark Mode
function goDark() {
var element = document.body;
element.classList.toggle("dark-Mode");
}