diff --git a/public/arf.json b/public/arf.json index 29e350a..616f91f 100644 --- a/public/arf.json +++ b/public/arf.json @@ -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 Hitchhiker’s 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", diff --git a/public/css/arf.css b/public/css/arf.css index 42e11d7..29694ac 100644 --- a/public/css/arf.css +++ b/public/css/arf.css @@ -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; diff --git a/public/index.html b/public/index.html index 5ddc070..65126c2 100644 --- a/public/index.html +++ b/public/index.html @@ -20,8 +20,9 @@

(T) - Indicates a link to a tool that must be installed and run locally
(D) - Google Dork, for more information: Google Hacking
(R) - Requires registration
- (M) - Indicates a URL that contains the search term and the URL itself must be edited manually

- + (M) - Indicates a URL that contains the search term and the URL itself must be edited manually

+ +

Notes

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.
diff --git a/public/js/arf.js b/public/js/arf.js index 357f158..ca3b2d5 100644 --- a/public/js/arf.js +++ b/public/js/arf.js @@ -148,4 +148,9 @@ function toggle(d) { d.children = d._children; d._children = null; } -} \ No newline at end of file +} +//Togle Dark Mode +function goDark() { + var element = document.body; + element.classList.toggle("dark-Mode"); +} \ No newline at end of file