├── widgets.json ├── schema ├── tools.schema.json └── widgets.schema.json ├── .github └── FUNDING.yml ├── LICENSE ├── README.md └── tools.json /widgets.json: -------------------------------------------------------------------------------- 1 | { 2 | "worldClock": { 3 | "title": "WORLD CLOCK", 4 | "hour12": false, 5 | "cities": [ 6 | { "name": "UTC", "tz": "UTC" }, 7 | { "name": "New York", "tz": "America/New_York" }, 8 | { "name": "London", "tz": "Europe/London" }, 9 | { "name": "Dubai", "tz": "Asia/Dubai" }, 10 | { "name": "Mumbai", "tz": "Asia/Kolkata" }, 11 | { "name": "Singapore", "tz": "Asia/Singapore" }, 12 | { "name": "Sydney", "tz": "Australia/Sydney" } 13 | ] 14 | }, 15 | "redditNews": { 16 | "title": "NEWS FROM REDDIT", 17 | "subreddits": ["osint", "netsec", "cybersecurity", "privacy", "opsec"], 18 | "limit": 20 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /schema/tools.schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-07/schema#", 3 | "type": "array", 4 | "items": { 5 | "type": "object", 6 | "additionalProperties": false, 7 | "required": ["category", "tools"], 8 | "properties": { 9 | "category": { "type": "string", "minLength": 1 }, 10 | "tools": { 11 | "type": "array", 12 | "items": { 13 | "type": "object", 14 | "additionalProperties": false, 15 | "required": ["name", "url"], 16 | "properties": { 17 | "name": { "type": "string", "minLength": 1 }, 18 | "url": { "type": "string", "format": "uri" }, 19 | "description": { "type": "string", "minLength": 1 }, 20 | "icon": { "type": "string", "minLength": 1 } 21 | } 22 | } 23 | } 24 | } 25 | } 26 | } 27 | 28 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: vixkram 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 OSINTBox.shellwriter.com contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /schema/widgets.schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-07/schema#", 3 | "type": "object", 4 | "additionalProperties": false, 5 | "properties": { 6 | "worldClock": { 7 | "type": "object", 8 | "additionalProperties": false, 9 | "properties": { 10 | "title": { "type": "string" }, 11 | "hour12": { "type": "boolean" }, 12 | "cities": { 13 | "type": "array", 14 | "items": { 15 | "type": "object", 16 | "additionalProperties": false, 17 | "required": ["name", "tz"], 18 | "properties": { 19 | "name": { "type": "string" }, 20 | "tz": { "type": "string" } 21 | } 22 | } 23 | } 24 | }, 25 | "required": ["cities"] 26 | }, 27 | "redditNews": { 28 | "type": "object", 29 | "additionalProperties": false, 30 | "properties": { 31 | "title": { "type": "string" }, 32 | "subreddits": { 33 | "type": "array", 34 | "items": { "type": "string" } 35 | }, 36 | "limit": { "type": "integer", "minimum": 1, "maximum": 200 } 37 | }, 38 | "required": ["subreddits"] 39 | } 40 | } 41 | } 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🔍 OSINTBox Data 2 | 3 | > **Community-driven repository of OSINT tools and resources** 4 | > Curated collection of Open Source Intelligence tools organized by category 5 | 6 | [![Validation](https://img.shields.io/badge/validation-passing-brightgreen)](https://github.com/vixkram/OSINTBox-data/actions) 7 | [![Contributors](https://img.shields.io/badge/contributors-welcome-blue)](#-contribute) 8 | [![License](https://img.shields.io/badge/license-MIT-green)](LICENSE) 9 | 10 | > 🌐 Explore the live OSINTBox directory at [osintbox.shellwriter.com](https://osintbox.shellwriter.com/) 11 | 12 | --- 13 | 14 | ## 📁 Repository Structure 15 | 16 | ``` 17 | ├── 📄 tools.json # Core categories and tools 18 | ├── ⚙️ widgets.json # Widget configuration 19 | └── 📋 schema/ # JSON schemas for validation 20 | ├── tools.schema.json 21 | └── widgets.schema.json 22 | ``` 23 | 24 | ### 🔧 File Descriptions 25 | 26 | | File | Status | Description | 27 | |------|--------|-------------| 28 | | `tools.json` | **Required** | Main database of OSINT tools organized by categories | 29 | | `widgets.json` | *Optional* | Configuration for dashboard widgets (world clock, feeds, etc.) | 30 | 31 | --- 32 | 33 | ## 🤝 Contribute 34 | 35 | We welcome contributions from the OSINT community! Here's how you can help: 36 | 37 | ### 📝 Quick Start 38 | 1. **Fork** this repository 39 | 2. **Edit** `tools.json` (and `widgets.json` if needed) 40 | 3. **Open** a Pull Request 41 | 4. **Wait** for automated validation to pass 42 | 43 | > 💡 **Tip**: All submissions are automatically validated through our CI pipeline 44 | 45 | ### ✅ Local Validation (Optional) 46 | 47 | Want to test your changes before submitting? Follow these steps: 48 | 49 | ```bash 50 | # 1. Install validation tools 51 | npm i -D ajv-cli@5 52 | 53 | # 2. Validate your changes 54 | npx ajv validate -s schema/tools.schema.json -d tools.json --all-errors 55 | 56 | # 3. Validate widgets (if modified) 57 | if [ -f widgets.json ]; then 58 | npx ajv validate -s schema/widgets.schema.json -d widgets.json --all-errors 59 | fi 60 | ``` 61 | 62 | --- 63 | 64 | ## 📊 Data Schema 65 | 66 | ### 🛠️ Tool Object 67 | ```json 68 | { 69 | "name": "Tool Name", 70 | "url": "https://example.com" 71 | // Optional overrides: 72 | // "description": "Brief description", 73 | // "icon": "https://example.com/favicon.ico" 74 | } 75 | ``` 76 | 77 | ### 📂 Category Object 78 | ```json 79 | { 80 | "category": "Category Name", 81 | "tools": [ 82 | // Array of tool objects 83 | ] 84 | } 85 | ``` 86 | 87 | --- 88 | 89 | ## 💡 Best Practices 90 | 91 | ### ✏️ Writing Guidelines 92 | - **Descriptions**: Only include if they add clear value beyond the tool name (otherwise omit) 93 | - **Icons**: Usually omit — the UI auto‑generates favicons from the tool domain. Only set `icon` to override. 94 | - Do not use third‑party proxies; if needed, use a direct image URL (e.g., the site’s real favicon). 95 | - **URLs**: Ensure all links are active and lead to canonical pages; remove tracking params 96 | 97 | ### 🎯 Quality Standards 98 | - ✅ Verify tool functionality before adding 99 | - ✅ Use clear, descriptive names 100 | - ✅ Categorize appropriately 101 | - ✅ Test all URLs 102 | 103 | --- 104 | 105 | ## 🚀 Getting Started 106 | 107 | 1. **Browse** the `tools.json` file to see existing categories and tools 108 | 2. **Identify** gaps or new tools to add 109 | 3. **Follow** the schema structure 110 | 4. **Submit** your contribution via Pull Request 111 | 112 | --- 113 | 114 | ## 💖 Donate 115 | 116 | Help keep the OSINTBox data project maintained. 117 | 118 | - BTC: _bc1qlz8thfq9k02y86lr49w5mqty2c93dz4ptjz4cn_ 119 | - ETH: _0x278881E9Edaa585174b1708447B1C07934530ded_ 120 | - LTC: _ltc1q9qr39kdxv3ulmszw48jgp7p8jqq0metdjzxp4m_ 121 | 122 | ## 📞 Support 123 | 124 | - 🐛 **Issues**: Report bugs or suggest improvements 125 | - 💬 **Discussions**: Open an issue describing the change you propose 126 | 127 | --- 128 | 129 | ## 🙏 Acknowledgments 130 | 131 | Thanks to all contributors who help maintain and expand this valuable OSINT resource! 132 | 133 | --- 134 | 135 |
136 | 137 | **[⭐ Star this repo](https://github.com/vixkram/OSINTBox-data) | [🍴 Fork it](https://github.com/vixkram/OSINTBox-data/fork) | [📝 Contribute](#-contribute)** 138 | 139 |
140 | -------------------------------------------------------------------------------- /tools.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "category": "THROWAWAY CONTACT", 4 | "tools": [ 5 | { 6 | "name": "Onlinesim.net", 7 | "url": "https://onlinesim.net/" 8 | }, 9 | { 10 | "name": "DoNotPay", 11 | "url": "https://donotpay.com/learn/temporary-phone-number/", 12 | "description": "Use a Temporary Phone Number To Protect Your Privacy" 13 | }, 14 | { 15 | "name": "VoIP Guide: VoIPSuite", 16 | "url": "https://inteltechniques.com/voip.suite.html" 17 | }, 18 | { 19 | "name": "Twilio CLI Guide", 20 | "url": "https://inteltechniques.com/voip.twilio.cli.html" 21 | }, 22 | { 23 | "name": "10minutemail.com", 24 | "url": "https://10minutemail.com/" 25 | }, 26 | { 27 | "name": "AnonAddy", 28 | "url": "https://anonaddy.com/" 29 | }, 30 | { 31 | "name": "SimpleLogin", 32 | "url": "https://simplelogin.io/" 33 | }, 34 | { 35 | "name": "MailDrop", 36 | "url": "https://maildrop.cc/" 37 | }, 38 | { 39 | "name": "Send text free", 40 | "url": "https://globfone.com/send-text/" 41 | }, 42 | { 43 | "name": "SendaText", 44 | "url": "https://www.sendatext.co/" 45 | }, 46 | { 47 | "name": "Free Fax", 48 | "url": "https://faxzero.com/" 49 | }, 50 | { 51 | "name": "Receive SMS Online", 52 | "url": "https://hs3x.com/" 53 | }, 54 | { 55 | "name": "Receive SMS Online for FREE", 56 | "url": "http://freesmsverification.com/" 57 | }, 58 | { 59 | "name": "Smstome.com", 60 | "url": "https://smstome.com/" 61 | }, 62 | { 63 | "name": "Amazon SNS", 64 | "url": "https://aws.amazon.com/sns/" 65 | }, 66 | { 67 | "name": "Twilio", 68 | "url": "https://www.twilio.com/" 69 | }, 70 | { 71 | "name": "One-time Mobile by @OsintStash", 72 | "url": "https://threader.app/thread/1199785692274077696" 73 | } 74 | ] 75 | }, 76 | { 77 | "category": "ID GENERATOR", 78 | "tools": [ 79 | { 80 | "name": "Username Generator", 81 | "url": "https://www.lastpass.com/features/username-generator" 82 | }, 83 | { 84 | "name": "Fake Name Generator", 85 | "url": "https://www.fakenamegenerator.com/" 86 | }, 87 | { 88 | "name": "Resume Generator", 89 | "url": "https://thisresumedoesnotexist.com/" 90 | }, 91 | { 92 | "name": "International Name Generator", 93 | "url": "https://www.behindthename.com/random/" 94 | }, 95 | { 96 | "name": "Windows Phone IMEI Generator", 97 | "url": "https://wpimeigenerator.github.io/" 98 | }, 99 | { 100 | "name": "IMEI Number Generator", 101 | "url": "https://dyrk.org/tools/imei/" 102 | }, 103 | { 104 | "name": "US SSN / Driver License / State ID / Passport / Tax ID Generator", 105 | "url": "https://www.elfqrin.com/usssndriverlicenseidgen.php" 106 | }, 107 | { 108 | "name": "Washington State Driver's License Generator", 109 | "url": "https://mmarvick.github.io/wa-drivers-license/" 110 | }, 111 | { 112 | "name": "Fake Drivers License Generator", 113 | "url": "https://fakeinfo.net/drivers-license-generator" 114 | }, 115 | { 116 | "name": "This Rental Does Not Exist", 117 | "url": "https://thisrentaldoesnotexist.com/" 118 | }, 119 | { 120 | "name": "Face Photo Generator", 121 | "url": "https://thispersondoesnotexist.com/" 122 | }, 123 | { 124 | "name": "Random Face Generator", 125 | "url": "https://fakeinfo.net/random-face-generator" 126 | }, 127 | { 128 | "name": "Credit Card Generator", 129 | "url": "https://www.fakenamegenerator.com/credit-card-validator.php" 130 | }, 131 | { 132 | "name": "PIC/CIC Code Database", 133 | "url": "https://www.allredtech.com/" 134 | }, 135 | { 136 | "name": "SIN Generator", 137 | "url": "https://www.fakenamegenerator.com/social-insurance-number.php" 138 | }, 139 | { 140 | "name": "ABA Generator", 141 | "url": "https://www.fakenamegenerator.com/aba-validator.php" 142 | }, 143 | { 144 | "name": "VIN Generator", 145 | "url": "https://www.fakenamegenerator.com/vehicle-identification-number.php" 146 | }, 147 | { 148 | "name": "NINO Generator", 149 | "url": "https://www.fakenamegenerator.com/national-insurance-number.php" 150 | }, 151 | { 152 | "name": "SSN Generator", 153 | "url": "https://www.fakenamegenerator.com/social-security-number.php" 154 | }, 155 | { 156 | "name": "IID Generator by Georgy Bunin", 157 | "url": "https://georgybu.github.io/IID_Generator/" 158 | }, 159 | { 160 | "name": "GUID/UUID and short GUID generator", 161 | "url": "https://richardkundl.github.io/shortguid/" 162 | }, 163 | { 164 | "name": "Nano ID CC", 165 | "url": "https://zelark.github.io/nano-id-cc/" 166 | }, 167 | { 168 | "name": "Generate SA ID Numbers", 169 | "url": "https://chris927.github.io/generate-sa-idnumbers/" 170 | }, 171 | { 172 | "name": "Decoding Social Security Numbers", 173 | "url": "https://stevemorse.org/ssn/ssn.html" 174 | }, 175 | { 176 | "name": "Encoding and Decoding Driver's License Numbers", 177 | "url": "https://stevemorse.org/dl/dl.html" 178 | }, 179 | { 180 | "name": "Dating Profile Generator", 181 | "url": "https://www.dating-profile-generator.org.uk/" 182 | }, 183 | { 184 | "name": "Fake Identity ID Random Name Generator", 185 | "url": "https://www.elfqrin.com/fakeid.php" 186 | }, 187 | { 188 | "name": "Fake Company Name Generator", 189 | "url": "https://fakeinfo.net/company-name-generator" 190 | }, 191 | { 192 | "name": "Twitter Profile Generator", 193 | "url": "https://fakeinfo.net/fake-twitter-profile-generator" 194 | }, 195 | { 196 | "name": "Fake Tiktok Profile Generator", 197 | "url": "https://fakeinfo.net/fake-tiktok-profile-gererator" 198 | }, 199 | { 200 | "name": "Fake Youtube Channel Generator", 201 | "url": "https://fakeinfo.net/fake-youtube-channel-generator" 202 | }, 203 | { 204 | "name": "Resume Builder", 205 | "url": "https://vinaysomawat.github.io/Resume-Builder/" 206 | }, 207 | { 208 | "name": "Fake Generator Tools", 209 | "url": "https://fauxid.com/tools" 210 | } 211 | ] 212 | }, 213 | { 214 | "category": "SANDBOX / EMULATOR", 215 | "tools": [ 216 | { 217 | "name": "Kasm", 218 | "url": "https://kasmweb.com/", 219 | "description": "Disposable Secure Browser or Desktop" 220 | }, 221 | { 222 | "name": "Bluestacks", 223 | "url": "https://www.bluestacks.com/" 224 | }, 225 | { 226 | "name": "Genymotion", 227 | "url": "https://www.genymotion.com/" 228 | }, 229 | { 230 | "name": "PrimeOS", 231 | "url": "https://www.primeos.in/" 232 | }, 233 | { 234 | "name": "BigNox", 235 | "url": "https://www.bignox.com/" 236 | }, 237 | { 238 | "name": "Memuplay.com", 239 | "url": "https://www.memuplay.com/" 240 | }, 241 | { 242 | "name": "Ldplayer.net", 243 | "url": "https://www.ldplayer.net/" 244 | } 245 | ] 246 | }, 247 | { 248 | "category": "PRODUCTIVITY", 249 | "tools": [ 250 | { 251 | "name": "unfurl", 252 | "url": "https://dfir.blog/unfurl/" 253 | }, 254 | { 255 | "name": "Wolfram|Alpha", 256 | "url": "https://www.wolframalpha.com/" 257 | }, 258 | { 259 | "name": "Cryptpad.fr", 260 | "url": "https://cryptpad.fr/" 261 | }, 262 | { 263 | "name": "Recontool.org", 264 | "url": "https://recontool.org/" 265 | }, 266 | { 267 | "name": "MindMup 2", 268 | "url": "https://app.mindmup.com/map/new" 269 | }, 270 | { 271 | "name": "Dotspotter", 272 | "url": "https://www.forensicdots.de/", 273 | "description": "Discover the tracking dots on a scanned document. Upload an image (600 dpi) of your print out. Dottspotter will try to detect the yellow dot code (MIC). See below for details. Results will be shown on this page." 274 | }, 275 | { 276 | "name": "Encrypted Pastebin", 277 | "url": "https://defuse.ca/pastebin.htm" 278 | }, 279 | { 280 | "name": "PrivateBin", 281 | "url": "https://privatebin.net/" 282 | }, 283 | { 284 | "name": "Bin.disroot.org", 285 | "url": "https://bin.disroot.org/" 286 | }, 287 | { 288 | "name": "Framadrop", 289 | "url": "https://framadrop.org/en/" 290 | }, 291 | { 292 | "name": "Pad.riseup.net", 293 | "url": "https://pad.riseup.net/" 294 | }, 295 | { 296 | "name": "EtherCalc", 297 | "url": "https://ethercalc.net/" 298 | }, 299 | { 300 | "name": "Proofread Bot", 301 | "url": "https://proofreadbot.com/" 302 | }, 303 | { 304 | "name": "Write.as", 305 | "url": "https://write.as/" 306 | }, 307 | { 308 | "name": "Cryptee", 309 | "url": "https://crypt.ee/" 310 | }, 311 | { 312 | "name": "dudle", 313 | "url": "https://dudle.inf.tu-dresden.de/anonymous/" 314 | }, 315 | { 316 | "name": "Airborn.io", 317 | "url": "https://www.airborn.io/" 318 | }, 319 | { 320 | "name": "ZOOM URL Generator", 321 | "url": "https://skyzh.github.io/zoom-url-generator/" 322 | }, 323 | { 324 | "name": "Tor2web", 325 | "url": "https://www.tor2web.org/" 326 | }, 327 | { 328 | "name": "archive.is", 329 | "url": "https://archive.is/" 330 | }, 331 | { 332 | "name": "Wayback Machine", 333 | "url": "https://web.archive.org/" 334 | }, 335 | { 336 | "name": "waybackpy", 337 | "url": "https://pypi.org/project/waybackpy/" 338 | }, 339 | { 340 | "name": "CachedPages", 341 | "url": "http://www.cachedpages.com/" 342 | }, 343 | { 344 | "name": "Google Cached Pages of Any Website", 345 | "url": "https://cachedview.com/" 346 | }, 347 | { 348 | "name": "Oldweb.today", 349 | "url": "http://oldweb.today/" 350 | }, 351 | { 352 | "name": "Unpaywall", 353 | "url": "https://unpaywall.org/products/extension" 354 | }, 355 | { 356 | "name": "DeepL", 357 | "url": "https://www.deepl.com/translator", 358 | "description": "DeepL trains artificial intelligence to understand and translate texts." 359 | }, 360 | { 361 | "name": "Project CSV", 362 | "url": "https://projectcsv.github.io/", 363 | "description": "Online & Offline CSV File Viewer & Editor" 364 | }, 365 | { 366 | "name": "CSV to HTML", 367 | "url": "https://codepen.io/RYJASM/pen/LVEWgV" 368 | }, 369 | { 370 | "name": "Monaco Editor", 371 | "url": "https://microsoft.github.io/monaco-editor/playground.html" 372 | }, 373 | { 374 | "name": "Online FlowChart Editor", 375 | "url": "https://mermaid-js.github.io/mermaid-live-editor/", 376 | "description": "Simplify documentation and avoid heavy tools. Open source Visio Alternative. Commonly used for explaining your code! Mermaid is a simple markdown-like script language for generating charts from tex..." 377 | }, 378 | { 379 | "name": "Markdown Editor", 380 | "url": "https://markdown-editor.github.io/" 381 | }, 382 | { 383 | "name": "SQL Editor", 384 | "url": "https://www.mycompiler.io/new/sql" 385 | }, 386 | { 387 | "name": "SQLite Viewer", 388 | "url": "https://inloop.github.io/sqlite-viewer/" 389 | }, 390 | { 391 | "name": "OCR Text Extractor", 392 | "url": "https://osint.sh/ocr/" 393 | }, 394 | { 395 | "name": "Wetranscriber", 396 | "url": "https://www.wetranscriber.com/" 397 | }, 398 | { 399 | "name": "Tophonetics.com", 400 | "url": "https://tophonetics.com/" 401 | }, 402 | { 403 | "name": "Google Translate", 404 | "url": "https://translate.google.com/" 405 | }, 406 | { 407 | "name": "Multi Translate", 408 | "url": "https://translate.mix.pink/" 409 | }, 410 | { 411 | "name": "Yandex.Translate", 412 | "url": "https://translate.yandex.com/" 413 | }, 414 | { 415 | "name": "Bing Microsoft Translator", 416 | "url": "https://www.bing.com/translator" 417 | }, 418 | { 419 | "name": "Reverso", 420 | "url": "https://www.reverso.net/text_translation.aspx?lang=EN" 421 | }, 422 | { 423 | "name": "Translate", 424 | "url": "https://www.translatedict.com/" 425 | }, 426 | { 427 | "name": "text to speech online", 428 | "url": "https://www.naturalreaders.com/online/" 429 | }, 430 | { 431 | "name": "TTSReader", 432 | "url": "https://ttsreader.com/" 433 | }, 434 | { 435 | "name": "Online Sequencer", 436 | "url": "https://onlinesequencer.net/" 437 | }, 438 | { 439 | "name": "FetchRSS", 440 | "url": "https://fetchrss.com/" 441 | }, 442 | { 443 | "name": "Sci-hub", 444 | "url": "https://sci-hub.st/" 445 | }, 446 | { 447 | "name": "Libgen.fun", 448 | "url": "https://libgen.fun/" 449 | }, 450 | { 451 | "name": "Z-lib.org", 452 | "url": "https://z-lib.org/" 453 | }, 454 | { 455 | "name": "PDF Drive", 456 | "url": "https://www.pdfdrive.com/" 457 | }, 458 | { 459 | "name": "arXiv.org", 460 | "url": "https://arxiv.org/" 461 | }, 462 | { 463 | "name": "bioRxiv.org", 464 | "url": "https://www.biorxiv.org/" 465 | }, 466 | { 467 | "name": "Project Gutenberg", 468 | "url": "https://www.gutenberg.org/" 469 | }, 470 | { 471 | "name": "Trantor.is", 472 | "url": "https://trantor.is/" 473 | }, 474 | { 475 | "name": "Shadowlibraries.github.io", 476 | "url": "https://shadowlibraries.github.io/" 477 | }, 478 | { 479 | "name": "Editor.typely.com", 480 | "url": "https://editor.typely.com/" 481 | } 482 | ] 483 | }, 484 | { 485 | "category": "FILE UPLOAD", 486 | "tools": [ 487 | { 488 | "name": "MEGA", 489 | "url": "https://mega.io/" 490 | }, 491 | { 492 | "name": "transfer.sh", 493 | "url": "https://transfer.sh/" 494 | }, 495 | { 496 | "name": "Send", 497 | "url": "https://send.actionsack.com/" 498 | }, 499 | { 500 | "name": "Keep.sh", 501 | "url": "https://keep.sh/" 502 | }, 503 | { 504 | "name": "Upload | Disroot", 505 | "url": "https://disroot.org/en/services/upload" 506 | }, 507 | { 508 | "name": "BlackHole", 509 | "url": "https://blackhole.run/" 510 | } 511 | ] 512 | }, 513 | { 514 | "category": "TOOLSET", 515 | "tools": [ 516 | { 517 | "name": "CyberChef", 518 | "url": "https://gchq.github.io/CyberChef/" 519 | }, 520 | { 521 | "name": "mitaka", 522 | "url": "https://github.com/ninoseki/mitaka" 523 | }, 524 | { 525 | "name": "Frack", 526 | "url": "https://github.com/sensepost/Frack", 527 | "description": "Frack is my attempt at creating an end-to-end solution to store, manage and query your breach data. The tool has got a very basic workflow making it easy to use." 528 | }, 529 | { 530 | "name": "pywhat", 531 | "url": "https://pypi.org/project/pywhat/" 532 | }, 533 | { 534 | "name": "theHarvester", 535 | "url": "https://pypi.org/project/theHarvester/", 536 | "description": "theHarvester is a very simple, yet effective tool designed to be used in the early stages of a penetration test. Use it for open source intelligence gathering and helping to determine a company's external threat landscape on the internet" 537 | }, 538 | { 539 | "name": "Online Tools", 540 | "url": "https://emn178.github.io/online-tools/" 541 | }, 542 | { 543 | "name": "Graphviz Online", 544 | "url": "https://dreampuf.github.io/GraphvizOnline/" 545 | }, 546 | { 547 | "name": "CodePen", 548 | "url": "https://codepen.io/" 549 | }, 550 | { 551 | "name": "Diceware Generator", 552 | "url": "https://www.rempe.us/diceware/#eff" 553 | }, 554 | { 555 | "name": "Checkphish.ai", 556 | "url": "https://checkphish.ai/" 557 | }, 558 | { 559 | "name": "x86 and x64 Intel Assembler", 560 | "url": "https://defuse.ca/online-x86-assembler.htm" 561 | }, 562 | { 563 | "name": "Big Number Calculator", 564 | "url": "https://defuse.ca/big-number-calculator.htm" 565 | }, 566 | { 567 | "name": "Text and File Hash Calculator", 568 | "url": "https://defuse.ca/checksums.htm" 569 | }, 570 | { 571 | "name": "HTML Sanitizer Tool", 572 | "url": "https://defuse.ca/html-sanitize.htm" 573 | }, 574 | { 575 | "name": "URL Decoder/Encoder", 576 | "url": "https://meyerweb.com/eric/tools/dencoder/" 577 | }, 578 | { 579 | "name": "ODA - The Online Disassembler", 580 | "url": "https://onlinedisassembler.com/odaweb/" 581 | }, 582 | { 583 | "name": "Disasm.pro", 584 | "url": "https://disasm.pro/" 585 | }, 586 | { 587 | "name": "Fotor", 588 | "url": "https://www.fotor.com/photo-editor-app/editor/basic" 589 | }, 590 | { 591 | "name": "Decompiler.com", 592 | "url": "http://www.decompiler.com/" 593 | }, 594 | { 595 | "name": "Google Colaboratory", 596 | "url": "https://colab.research.google.com/notebooks/intro.ipynb" 597 | }, 598 | { 599 | "name": "Compiler Explorer", 600 | "url": "https://godbolt.org/" 601 | }, 602 | { 603 | "name": "HTML editor", 604 | "url": "https://onlinehtmleditor.dev/" 605 | }, 606 | { 607 | "name": "Online Color Picker", 608 | "url": "https://colorpicker.me/" 609 | }, 610 | { 611 | "name": "Convert text to image file", 612 | "url": "https://text2image.com/en/" 613 | }, 614 | { 615 | "name": "relational algebra calculator", 616 | "url": "https://dbis-uibk.github.io/relax/calc/local/uibk/local/0" 617 | }, 618 | { 619 | "name": "Data Structure : Infix Postfix Prefix - Converter & Evaluator", 620 | "url": "https://raj457036.github.io/Simple-Tools/prefixAndPostfixConvertor.html" 621 | }, 622 | { 623 | "name": "RSA encryption, decryption and prime calculator", 624 | "url": "https://canihavesomecoffee.github.io/js-rsa-tool/" 625 | }, 626 | { 627 | "name": "Tools.digitalmethods.net", 628 | "url": "https://tools.digitalmethods.net/beta/searchEngineScraper/" 629 | }, 630 | { 631 | "name": "Steganography Online", 632 | "url": "https://stylesuxx.github.io/steganography/" 633 | }, 634 | { 635 | "name": "Torrent to Magnet", 636 | "url": "https://nutbread.github.io/t2m/" 637 | }, 638 | { 639 | "name": "Anonymous YouTube Playlists", 640 | "url": "https://neverducky.github.io/anonymous-youtube-playlists/" 641 | }, 642 | { 643 | "name": "Vega Editor", 644 | "url": "https://vega.github.io/editor/#/" 645 | }, 646 | { 647 | "name": "DISA Code Template Generator", 648 | "url": "https://duncanford.github.io/disa-code-generator" 649 | }, 650 | { 651 | "name": "Canary Tokens", 652 | "url": "http://canarytokens.org/generate" 653 | }, 654 | { 655 | "name": "explainshell.com", 656 | "url": "https://explainshell.com/" 657 | }, 658 | { 659 | "name": "Google Colaboratory", 660 | "url": "https://colab.research.google.com/" 661 | }, 662 | { 663 | "name": "osint-cli-tool-skeleton", 664 | "url": "https://pypi.org/project/osint-cli-tool-skeleton/" 665 | }, 666 | { 667 | "name": "Maltego", 668 | "url": "https://www.maltego.com/", 669 | "description": "Graph link-analysis platform with community transforms covering people, infrastructure, and breaches." 670 | }, 671 | { 672 | "name": "SpiderFoot", 673 | "url": "https://www.spiderfoot.net/", 674 | "description": "Automated OSINT collection framework with 200+ data sources and flexible scanning profiles." 675 | }, 676 | { 677 | "name": "Recon-ng", 678 | "url": "https://github.com/lanmaster53/recon-ng", 679 | "description": "Metasploit-style reconnaissance environment with modular data gathering and reporting." 680 | } 681 | ] 682 | }, 683 | { 684 | "category": "HASH RECOVERY", 685 | "tools": [ 686 | { 687 | "name": "CrackStation", 688 | "url": "https://crackstation.net/" 689 | }, 690 | { 691 | "name": "Hashmob Community", 692 | "url": "https://hashmob.net/search" 693 | }, 694 | { 695 | "name": "Hashes.com", 696 | "url": "https://hashes.com/en/decrypt/hash" 697 | }, 698 | { 699 | "name": "Online Password Hash Crack", 700 | "url": "https://www.onlinehashcrack.com/" 701 | }, 702 | { 703 | "name": "Md5 Decrypt & Encrypt", 704 | "url": "https://md5decrypt.net/en/" 705 | }, 706 | { 707 | "name": "MD5 reverse lookup", 708 | "url": "https://md5.gromweb.com/" 709 | }, 710 | { 711 | "name": "Ultimate Hashing", 712 | "url": "https://md5hashing.net/" 713 | }, 714 | { 715 | "name": "Hashes.org", 716 | "url": "https://hashes.org/search.php" 717 | } 718 | ] 719 | }, 720 | { 721 | "category": "DOWNLOADER", 722 | "tools": [ 723 | { 724 | "name": "Media-downloader.net", 725 | "url": "https://media-downloader.net/" 726 | }, 727 | { 728 | "name": "Imgur Album Downloader", 729 | "url": "https://dschep.github.io/imgur-album-downloader/#/" 730 | }, 731 | { 732 | "name": "Export Comments", 733 | "url": "https://exportcomments.com/" 734 | }, 735 | { 736 | "name": "Image Extractor", 737 | "url": "https://extract.pics/" 738 | }, 739 | { 740 | "name": "Loader.to", 741 | "url": "https://loader.to/" 742 | }, 743 | { 744 | "name": "Commentexporter.com", 745 | "url": "https://www.commentexporter.com/" 746 | }, 747 | { 748 | "name": "Link Gopher", 749 | "url": "https://sites.google.com/site/linkgopher/" 750 | }, 751 | { 752 | "name": "Page Links Extractor Tool", 753 | "url": "https://shadowcrypt.net/tools/pagelinks" 754 | }, 755 | { 756 | "name": "Online Tool to Extract Links from any Web Page", 757 | "url": "https://hackertarget.com/extract-links/" 758 | } 759 | ] 760 | }, 761 | { 762 | "category": "PRIVACY / SECURITY", 763 | "tools": [ 764 | { 765 | "name": "Privacy Services by Michael Bazzell", 766 | "url": "https://inteltechniques.com/workbook.html", 767 | "description": "This is the third step of a three-step process to request, freeze, and remove your personal information from within data broker and credit reporting services." 768 | }, 769 | { 770 | "name": "Privacy Guides", 771 | "url": "https://privacyguides.org/" 772 | }, 773 | { 774 | "name": "Surveillance Self-Defense", 775 | "url": "https://ssd.eff.org/" 776 | }, 777 | { 778 | "name": "gofoss.net", 779 | "url": "https://gofoss.net/" 780 | }, 781 | { 782 | "name": "Consumer Reports Security Planner", 783 | "url": "https://securityplanner.consumerreports.org/" 784 | }, 785 | { 786 | "name": "Security in a Box", 787 | "url": "https://securityinabox.org/en/" 788 | }, 789 | { 790 | "name": "Counter-OSINT guide for Russians", 791 | "url": "https://github.com/soxoj/counter-osint-guide-ru" 792 | }, 793 | { 794 | "name": "PRISM Break", 795 | "url": "https://prism-break.org/en/", 796 | "description": "Opt out of global data surveillance programs like PRISM, XKeyscore and Tempora. Help make mass surveillance of entire populations uneconomical! We all have a right to privacy, which you can exercis..." 797 | }, 798 | { 799 | "name": "Security First - Umbrella", 800 | "url": "https://secfirst.org/umbrella/" 801 | }, 802 | { 803 | "name": "Matweb.info", 804 | "url": "https://matweb.info/" 805 | }, 806 | { 807 | "name": "Metacleaner.com", 808 | "url": "https://metacleaner.com/" 809 | }, 810 | { 811 | "name": "Image Scrubber", 812 | "url": "https://everestpipkin.github.io/image-scrubber/" 813 | }, 814 | { 815 | "name": "View Exif data online, remove Exif online", 816 | "url": "http://www.verexif.com/en/" 817 | }, 818 | { 819 | "name": "Bitcoinprivacy.guide", 820 | "url": "https://bitcoinprivacy.guide/" 821 | }, 822 | { 823 | "name": "LocalBitcoins", 824 | "url": "https://localbitcoins.com/" 825 | }, 826 | { 827 | "name": "Localmonero.co", 828 | "url": "https://localmonero.co/" 829 | }, 830 | { 831 | "name": "Bitonic", 832 | "url": "https://bitonic.nl/en/" 833 | }, 834 | { 835 | "name": "Paxful", 836 | "url": "https://paxful.com/" 837 | }, 838 | { 839 | "name": "Speech Jammer", 840 | "url": "https://mynoise.net/NoiseMachines/audioJammerNoiseGenerator.php" 841 | }, 842 | { 843 | "name": "Stutterbox", 844 | "url": "https://www.stutterbox.co.uk/" 845 | }, 846 | { 847 | "name": "StegOnline", 848 | "url": "https://stegonline.georgeom.net/upload" 849 | }, 850 | { 851 | "name": "The Hitchhiker’s Guide to Online Anonymity", 852 | "url": "https://anonymousplanet.org/guide.html" 853 | } 854 | ] 855 | }, 856 | { 857 | "category": "SECURE COMMUNICATION", 858 | "tools": [ 859 | { 860 | "name": "Signal", 861 | "url": "https://signal.org/" 862 | }, 863 | { 864 | "name": "Element", 865 | "url": "https://element.io/" 866 | }, 867 | { 868 | "name": "Briar", 869 | "url": "https://briarproject.org/" 870 | }, 871 | { 872 | "name": "Jami.net", 873 | "url": "https://jami.net/" 874 | }, 875 | { 876 | "name": "Jitsi Meet", 877 | "url": "https://meet.jit.si/" 878 | }, 879 | { 880 | "name": "Rocket.Chat", 881 | "url": "https://rocket.chat/" 882 | }, 883 | { 884 | "name": "Wire", 885 | "url": "https://wire.com/en/" 886 | }, 887 | { 888 | "name": "Nekogram.app", 889 | "url": "https://nekogram.app/" 890 | }, 891 | { 892 | "name": "Telegram", 893 | "url": "https://www.telegram.org/" 894 | }, 895 | { 896 | "name": "Brave Talk", 897 | "url": "https://talk.brave.com/" 898 | }, 899 | { 900 | "name": "The Tor Project", 901 | "url": "https://www.torproject.org/download/" 902 | }, 903 | { 904 | "name": "Brave Browser", 905 | "url": "https://brave.com/" 906 | }, 907 | { 908 | "name": "Psiphon", 909 | "url": "https://www.psiphon.ca/" 910 | }, 911 | { 912 | "name": "ProtonVPN", 913 | "url": "https://protonvpn.com/" 914 | }, 915 | { 916 | "name": "hide.me VPN", 917 | "url": "https://hide.me/en/" 918 | }, 919 | { 920 | "name": "AdGuard VPN", 921 | "url": "https://adguard-vpn.com/en/welcome.html" 922 | }, 923 | { 924 | "name": "I2P", 925 | "url": "https://geti2p.net/en/download" 926 | }, 927 | { 928 | "name": "VPN Services", 929 | "url": "https://privacyguides.org/providers/vpn/" 930 | }, 931 | { 932 | "name": "Browser Recommendations", 933 | "url": "https://privacyguides.org/browsers/" 934 | }, 935 | { 936 | "name": "Getsession.org", 937 | "url": "https://getsession.org/" 938 | } 939 | ] 940 | }, 941 | { 942 | "category": "RESOURCES", 943 | "tools": [ 944 | { 945 | "name": "OH SHINT! Welcome Aboard", 946 | "url": "https://ohshint.gitbook.io/" 947 | }, 948 | { 949 | "name": "OSINT Is A State Of Mind", 950 | "url": "https://medium.com/secjuice/osint-as-a-mindset-7d42ad72113d" 951 | }, 952 | { 953 | "name": "sinwindie/OSINT", 954 | "url": "https://github.com/sinwindie/OSINT" 955 | }, 956 | { 957 | "name": "New Online Investigation (OSINT) Resources – IntelTechniques Blog", 958 | "url": "https://inteltechniques.com/blog/2019/04/09/new-online-investigation-osint-resources/" 959 | }, 960 | { 961 | "name": "Technisette", 962 | "url": "https://www.technisette.com/p/home" 963 | }, 964 | { 965 | "name": "OSINT Framework", 966 | "url": "https://osintframework.com/" 967 | }, 968 | { 969 | "name": "jivoi/awesome-osint", 970 | "url": "https://github.com/jivoi/awesome-osint" 971 | }, 972 | { 973 | "name": "START CARING STOP SHARING", 974 | "url": "https://medium.com/@Dutchosintguy/start-caring-stop-sharing-9c108d957b2c" 975 | }, 976 | { 977 | "name": "Osint Curious OSINT Resource List", 978 | "url": "https://docs.google.com/document/d/14li22wAG2Wh2y0UhgBjbqEvZJCDsNZY8vpUAJ_jJ5X8/edit" 979 | }, 980 | { 981 | "name": "OSINT Tools", 982 | "url": "https://www.osinttechniques.com/osint-tools.html" 983 | }, 984 | { 985 | "name": "OSINT tools for investigating websites", 986 | "url": "https://www.aware-online.com/en/osint-tools/website-tools/" 987 | }, 988 | { 989 | "name": "Shodan Cheat Sheet", 990 | "url": "https://thedarksource.com/shodan-cheat-sheet/" 991 | }, 992 | { 993 | "name": "Week in OSINT", 994 | "url": "https://sector035.nl/articles/category:week-in-osint" 995 | }, 996 | { 997 | "name": "Osint.team", 998 | "url": "https://osint.team/" 999 | }, 1000 | { 1001 | "name": "QueryTool", 1002 | "url": "https://github.com/oryon-osint/querytool" 1003 | }, 1004 | { 1005 | "name": "Investigating the source code of a website", 1006 | "url": "https://www.aware-online.com/en/osint-tutorials/investigating-the-source-code-of-a-website/" 1007 | }, 1008 | { 1009 | "name": "Find open FTP Servers", 1010 | "url": "https://www.aware-online.com/en/osint-tutorials/find-open-ftp-servers/" 1011 | }, 1012 | { 1013 | "name": "Choose your wallet", 1014 | "url": "https://bitcoin.org/en/choose-your-wallet" 1015 | }, 1016 | { 1017 | "name": "10 Minute Tips", 1018 | "url": "https://osintcurio.us/10-minute-tips/" 1019 | }, 1020 | { 1021 | "name": "Webint Master", 1022 | "url": "https://webintmaster.com/" 1023 | }, 1024 | { 1025 | "name": "DFIR Diva", 1026 | "url": "https://dfirdiva.com/hooked-on-osint/" 1027 | }, 1028 | { 1029 | "name": "Boolean Strings | Tools", 1030 | "url": "https://booleanstrings.com/tools/" 1031 | }, 1032 | { 1033 | "name": "osintme.com", 1034 | "url": "https://www.osintme.com/" 1035 | }, 1036 | { 1037 | "name": "Jake Creps", 1038 | "url": "https://jakecreps.com/" 1039 | }, 1040 | { 1041 | "name": "reKnowledge", 1042 | "url": "https://www.reknowledge.tech/" 1043 | }, 1044 | { 1045 | "name": "Bellingcat's Online Investigation Toolkit [bit.ly/bcattools]", 1046 | "url": "https://docs.google.com/spreadsheets/d/18rtqh8EG2q1xBo2cLNyhIDuK9jrPGwYr9DI2UncoqJQ/edit#gid=930747607" 1047 | }, 1048 | { 1049 | "name": "@Ivan30394639 OSINT tools collection", 1050 | "url": "https://cipher387.github.io/osint_stuff_tool_collection/" 1051 | }, 1052 | { 1053 | "name": "The Top 132 Osint Open Source Projects", 1054 | "url": "https://awesomeopensource.com/projects/osint" 1055 | }, 1056 | { 1057 | "name": "30 best OSINT extensions for Google Chrome – osintme.com", 1058 | "url": "https://www.osintme.com/index.php/2021/06/30/30-best-osint-extensions-for-google-chrome/" 1059 | }, 1060 | { 1061 | "name": "Where Can I Find... - Free DFIR Related Training", 1062 | "url": "https://freetraining.dfirdiva.com/where-can-i-find" 1063 | }, 1064 | { 1065 | "name": "Awesome Deblurring", 1066 | "url": "https://github.com/subeeshvasu/Awesome-Deblurring" 1067 | }, 1068 | { 1069 | "name": "OSINT.SH", 1070 | "url": "https://osint.sh/" 1071 | }, 1072 | { 1073 | "name": "OSINT Techniques", 1074 | "url": "https://www.osinttechniques.com/" 1075 | }, 1076 | { 1077 | "name": "OSINT aka Atvirųjų šaltinių žvalgyba", 1078 | "url": "https://blog.parakomanai.lt/osint-387e80bdc901" 1079 | }, 1080 | { 1081 | "name": "CTI & OSINT Online Resources", 1082 | "url": "https://docs.google.com/spreadsheets/d/1klugQqw6POlBtuzon8S0b18-gpsDwX-5OYRrB7TyNEw/edit#gid=0" 1083 | }, 1084 | { 1085 | "name": "Emsisoft Decryptor for Avaddon", 1086 | "url": "https://www.emsisoft.com/ransomware-decryption-tools/avaddon" 1087 | }, 1088 | { 1089 | "name": "hwosint (@harrywald80)", 1090 | "url": "https://twitter.com/harrywald80" 1091 | }, 1092 | { 1093 | "name": "Stefanie Proto 🔍 (@sprp77)", 1094 | "url": "https://twitter.com/sprp77" 1095 | }, 1096 | { 1097 | "name": "Awesomelists.top", 1098 | "url": "http://awesomelists.top/" 1099 | }, 1100 | { 1101 | "name": "GitHub Awesome Search", 1102 | "url": "https://github.motakasoft.com/awesome/" 1103 | }, 1104 | { 1105 | "name": "Ph055a OSINT_Collection", 1106 | "url": "https://github.com/Ph055a/OSINT_Collection" 1107 | }, 1108 | { 1109 | "name": "MetaOSINT", 1110 | "url": "https://metaosint.github.io/" 1111 | }, 1112 | { 1113 | "name": "Osint.support", 1114 | "url": "https://osint.support/" 1115 | }, 1116 | { 1117 | "name": "Sprp77/My-Google-CSE", 1118 | "url": "https://github.com/Sprp77/My-Google-CSE/blob/master/List%201" 1119 | }, 1120 | { 1121 | "name": "How to Build an OSINT Super Machine for People Surveillance and Sourcing", 1122 | "url": "https://outline.com/GZbkZA" 1123 | }, 1124 | { 1125 | "name": "How to find anyone with an advanced LinkedIn People Search", 1126 | "url": "https://nubela.co/blog/how-to-find-anyone-with-an-advanced-linkedin-people-search/" 1127 | } 1128 | ] 1129 | }, 1130 | { 1131 | "category": "WEATHER", 1132 | "tools": [ 1133 | { 1134 | "name": "OpenWeatherMap", 1135 | "url": "https://openweathermap.org/" 1136 | }, 1137 | { 1138 | "name": "Weather History & Data Archive", 1139 | "url": "https://www.wunderground.com/history" 1140 | }, 1141 | { 1142 | "name": "World Temperatures — Weather Around The World", 1143 | "url": "https://www.timeanddate.com/weather/" 1144 | }, 1145 | { 1146 | "name": "AccuWeather", 1147 | "url": "https://www.accuweather.com/" 1148 | }, 1149 | { 1150 | "name": "Meteostat", 1151 | "url": "https://meteostat.net/", 1152 | "description": "Free historical weather and climate data with CSV/JSON export and a Python client." 1153 | }, 1154 | { 1155 | "name": "Zoom.Earth", 1156 | "url": "https://zoom.earth/", 1157 | "description": "Live weather radar and satellite imagery with storm tracking and wildfire overlays." 1158 | } 1159 | ] 1160 | }, 1161 | { 1162 | "category": "THREAT INTEL", 1163 | "tools": [ 1164 | { 1165 | "name": "Threatbutt", 1166 | "url": "https://threatbutt.com/map/" 1167 | }, 1168 | { 1169 | "name": "Cyberthreat Real-Time Map", 1170 | "url": "https://cybermap.kaspersky.com/" 1171 | }, 1172 | { 1173 | "name": "Live Cyber Attack Threat Map", 1174 | "url": "https://www.checkpoint.com/ThreatPortal/livemap.html" 1175 | }, 1176 | { 1177 | "name": "Digital Attack Map", 1178 | "url": "https://www.digitalattackmap.com/" 1179 | }, 1180 | { 1181 | "name": "Cyber Threat Map", 1182 | "url": "https://www.fireeye.com/cyber-map/threat-map.html" 1183 | }, 1184 | { 1185 | "name": "Bitdefender Threat Map", 1186 | "url": "https://threatmap.bitdefender.com/" 1187 | }, 1188 | { 1189 | "name": "Cyber Threat Intelligence", 1190 | "url": "https://pulsedive.com/" 1191 | }, 1192 | { 1193 | "name": "Cisco Talos Intelligence Group", 1194 | "url": "https://talosintelligence.com/" 1195 | }, 1196 | { 1197 | "name": "Fortinet Threat Map", 1198 | "url": "https://threatmap.fortiguard.com/" 1199 | }, 1200 | { 1201 | "name": "FortiGuard", 1202 | "url": "http://www.fortiguard.com/" 1203 | }, 1204 | { 1205 | "name": "ThreatMiner", 1206 | "url": "https://www.threatminer.org/" 1207 | }, 1208 | { 1209 | "name": "cymon", 1210 | "url": "https://cymon.io/" 1211 | }, 1212 | { 1213 | "name": "intelowlproject/IntelOwl", 1214 | "url": "https://github.com/intelowlproject/IntelOwl" 1215 | }, 1216 | { 1217 | "name": "Visualizing Global Internet Performance", 1218 | "url": "https://www.akamai.com/us/en/solutions/intelligent-platform/visualizing-akamai/real-time-web-monitor.jsp" 1219 | }, 1220 | { 1221 | "name": "THREAT MAP by LookingGlass", 1222 | "url": "https://map.lookingglasscyber.com/" 1223 | }, 1224 | { 1225 | "name": "NETSCOUT Cyber Threat Horizon", 1226 | "url": "https://horizon.netscout.com/" 1227 | }, 1228 | { 1229 | "name": "APTnotes", 1230 | "url": "https://github.com/aptnotes/data" 1231 | }, 1232 | { 1233 | "name": "OpenCTI", 1234 | "url": "https://www.opencti.io/", 1235 | "description": "Open-source threat intelligence platform with graph analytics and connectors to dozens of data feeds." 1236 | }, 1237 | { 1238 | "name": "MISP", 1239 | "url": "https://www.misp-project.org/", 1240 | "description": "Open-source threat intelligence sharing platform (STIX/TAXII) for indicators, events, and collaborative analysis." 1241 | } 1242 | ] 1243 | }, 1244 | { 1245 | "category": "OTHER", 1246 | "tools": [ 1247 | { 1248 | "name": "https://cryptome.wikileaks.org/", 1249 | "url": "https://cryptome.wikileaks.org/", 1250 | "icon": "https://www.google.com/s2/favicons?domain=cryptome.wikileaks.org&sz=64" 1251 | }, 1252 | { 1253 | "name": "Nextstrain", 1254 | "url": "https://nextstrain.org/" 1255 | } 1256 | ] 1257 | }, 1258 | { 1259 | "category": "IDENTITY RESOLUTION", 1260 | "tools": [ 1261 | { 1262 | "name": "Clearbit [Registration]", 1263 | "url": "https://dashboard.clearbit.com/lookup" 1264 | }, 1265 | { 1266 | "name": "FullContact API [Registration]", 1267 | "url": "https://dashboard.fullcontact.com/login" 1268 | }, 1269 | { 1270 | "name": "Aeroleads.com [Registration]", 1271 | "url": "https://aeroleads.com/" 1272 | } 1273 | ] 1274 | }, 1275 | { 1276 | "category": "RESOLVERS", 1277 | "tools": [ 1278 | { 1279 | "name": "Skype Resolver", 1280 | "url": "http://www.skypeipresolver.net/index.php" 1281 | }, 1282 | { 1283 | "name": "PSN Resolver", 1284 | "url": "https://playstationresolver.xyz/" 1285 | }, 1286 | { 1287 | "name": "Cloudflare Resolver", 1288 | "url": "http://www.skypeipresolver.net/cloudflare.php" 1289 | }, 1290 | { 1291 | "name": "Cloudflare Resolver Tool", 1292 | "url": "https://shadowcrypt.net/tools/cloudflare" 1293 | }, 1294 | { 1295 | "name": "Discord Resolver", 1296 | "url": "https://www.leaked.site/index.php?resolver/discord.0/" 1297 | }, 1298 | { 1299 | "name": "Xboxresolver.com", 1300 | "url": "https://xboxresolver.com/" 1301 | }, 1302 | { 1303 | "name": "Vedbex DNS Resolver", 1304 | "url": "https://www.vedbex.com/", 1305 | "description": "Web-based DNS resolver tool for looking up A, AAAA, CNAME, MX, TXT, NS, PTR, and other DNS records" 1306 | } 1307 | ] 1308 | }, 1309 | { 1310 | "category": "ANALYTICS", 1311 | "tools": [ 1312 | { 1313 | "name": "SEO Resources Search Engine", 1314 | "url": "https://cse.google.com/cse/publicurl?cx=005797772976587943970:i7q6z1kjm1w" 1315 | }, 1316 | { 1317 | "name": "Hashatit", 1318 | "url": "https://www.hashatit.com/" 1319 | }, 1320 | { 1321 | "name": "Social Mentions", 1322 | "url": "https://www.social-searcher.com/media-monitoring/" 1323 | }, 1324 | { 1325 | "name": "Social Trends", 1326 | "url": "https://www.social-searcher.com/social-trends/" 1327 | }, 1328 | { 1329 | "name": "Mentionmapp Analytics", 1330 | "url": "https://mentionmapp.com/" 1331 | }, 1332 | { 1333 | "name": "Anonymous Ad Preview Tool", 1334 | "url": "https://ads.google.com/anon/AdPreview" 1335 | }, 1336 | { 1337 | "name": "Semrush", 1338 | "url": "https://www.semrush.com/" 1339 | }, 1340 | { 1341 | "name": "Network Tool", 1342 | "url": "https://osome.iu.edu/tools/networks/#/" 1343 | }, 1344 | { 1345 | "name": "Trends Tool", 1346 | "url": "https://osome.iu.edu/tools/trends/#/" 1347 | }, 1348 | { 1349 | "name": "CoVaxxy", 1350 | "url": "https://osome.iu.edu/tools/covaxxy" 1351 | } 1352 | ] 1353 | }, 1354 | { 1355 | "category": "UNIFIED SEARCH", 1356 | "tools": [ 1357 | { 1358 | "name": "IntelTechniques OSINT", 1359 | "url": "https://inteltechniques.com/tools/" 1360 | }, 1361 | { 1362 | "name": "SynapsInt", 1363 | "url": "https://synapsint.com/" 1364 | }, 1365 | { 1366 | "name": "InfoTracer", 1367 | "url": "https://infotracer.com/" 1368 | }, 1369 | { 1370 | "name": "MetaDefender", 1371 | "url": "https://metadefender.opswat.com/" 1372 | }, 1373 | { 1374 | "name": "Username Search", 1375 | "url": "https://usersearch.org/" 1376 | }, 1377 | { 1378 | "name": "SpyTox", 1379 | "url": "https://www.spytox.com/" 1380 | }, 1381 | { 1382 | "name": "Effect Group", 1383 | "url": "https://effectgroup.io/" 1384 | }, 1385 | { 1386 | "name": "osrframework", 1387 | "url": "https://pypi.org/project/osrframework/" 1388 | }, 1389 | { 1390 | "name": "Google Custom Search", 1391 | "url": "https://cse.google.com/cse?cx=017648920863780530960:lddgpbzqgoi" 1392 | }, 1393 | { 1394 | "name": "OSINT Search Engine", 1395 | "url": "https://cse.google.com/cse/publicurl?cx=006290531980334157382:qcaf4enph7i" 1396 | }, 1397 | { 1398 | "name": "LinkScope", 1399 | "url": "https://github.com/AccentuSoft/LinkScope_Client", 1400 | "description": "Repository for the LinkScope Client software" 1401 | }, 1402 | { 1403 | "name": "IOA", 1404 | "url": "https://www.io-archive.org/" 1405 | }, 1406 | { 1407 | "name": "Criminal IP", 1408 | "url": "https://www.criminalip.io/" 1409 | } 1410 | ] 1411 | }, 1412 | { 1413 | "category": "PEOPLE", 1414 | "tools": [ 1415 | { 1416 | "name": "IDCrawl", 1417 | "url": "https://www.idcrawl.com/" 1418 | }, 1419 | { 1420 | "name": "WebMii", 1421 | "url": "https://webmii.com/" 1422 | }, 1423 | { 1424 | "name": "Tools", 1425 | "url": "https://intelx.io/tools?tab=person" 1426 | }, 1427 | { 1428 | "name": "TruePeopleSearch", 1429 | "url": "https://www.truepeoplesearch.com/" 1430 | }, 1431 | { 1432 | "name": "Free People Search", 1433 | "url": "https://www.peoplefinder.com/" 1434 | }, 1435 | { 1436 | "name": "fastpeoplesearch", 1437 | "url": "https://fastpeoplesearch.com/" 1438 | }, 1439 | { 1440 | "name": "Yandex People Search", 1441 | "url": "https://yandex.ru/people" 1442 | }, 1443 | { 1444 | "name": "FamilyTree", 1445 | "url": "https://www.familytreenow.com/" 1446 | }, 1447 | { 1448 | "name": "People Search", 1449 | "url": "http://itools.com/search/people-search" 1450 | }, 1451 | { 1452 | "name": "People Search Engine", 1453 | "url": "https://cse.google.com/cse?cx=14db36e158cd791c0" 1454 | }, 1455 | { 1456 | "name": "Dating Sites Search Engine", 1457 | "url": "https://cse.google.com/cse?cx=c7b340447e1e12653" 1458 | }, 1459 | { 1460 | "name": "192", 1461 | "url": "https://www.192.com/", 1462 | "description": "Search for People, Businesses & Places in the UK" 1463 | }, 1464 | { 1465 | "name": "International", 1466 | "url": "https://www.infobel.com/" 1467 | }, 1468 | { 1469 | "name": "People search Tool", 1470 | "url": "https://www.aware-online.com/en/osint-tools/people-search-tool/" 1471 | }, 1472 | { 1473 | "name": "PeekYou", 1474 | "url": "https://www.peekyou.com/" 1475 | }, 1476 | { 1477 | "name": "White Pages", 1478 | "url": "https://www.whitepages.com/" 1479 | }, 1480 | { 1481 | "name": "New Canada 411", 1482 | "url": "https://www.canada411.ca/" 1483 | }, 1484 | { 1485 | "name": "411", 1486 | "url": "http://411.com/" 1487 | }, 1488 | { 1489 | "name": "TruthFinder", 1490 | "url": "https://www.truthfinder.com/" 1491 | }, 1492 | { 1493 | "name": "zaba search", 1494 | "url": "https://www.zabasearch.com/" 1495 | }, 1496 | { 1497 | "name": "Thats them", 1498 | "url": "https://thatsthem.com/" 1499 | }, 1500 | { 1501 | "name": "People search", 1502 | "url": "https://radaris.com/" 1503 | }, 1504 | { 1505 | "name": "No.1 Free People Search", 1506 | "url": "http://www.yasni.com/" 1507 | }, 1508 | { 1509 | "name": "Gofindwho.com", 1510 | "url": "https://gofindwho.com/" 1511 | }, 1512 | { 1513 | "name": "xlek", 1514 | "url": "https://xlek.com/" 1515 | }, 1516 | { 1517 | "name": "Ufind.name", 1518 | "url": "https://ufind.name/" 1519 | }, 1520 | { 1521 | "name": "LittleBrother", 1522 | "url": "https://github.com/lulz3xploit/LittleBrother", 1523 | "description": "Open-source investigator focusing on French data sources with geocoding and people search modules." 1524 | } 1525 | ] 1526 | }, 1527 | { 1528 | "category": "USERNAME", 1529 | "tools": [ 1530 | { 1531 | "name": "WhatsMyName Web", 1532 | "url": "https://whatsmyname.app/" 1533 | }, 1534 | { 1535 | "name": "Username Checker", 1536 | "url": "https://analyzeid.com/username/" 1537 | }, 1538 | { 1539 | "name": "Username Search", 1540 | "url": "https://www.idcrawl.com/username" 1541 | }, 1542 | { 1543 | "name": "Tools", 1544 | "url": "https://intelx.io/tools?tab=username" 1545 | }, 1546 | { 1547 | "name": "maigret", 1548 | "url": "https://pypi.org/project/maigret/" 1549 | }, 1550 | { 1551 | "name": "sherlock", 1552 | "url": "https://github.com/sherlock-project/sherlock" 1553 | }, 1554 | { 1555 | "name": "socialscan", 1556 | "url": "https://pypi.org/project/socialscan/" 1557 | }, 1558 | { 1559 | "name": "socid-extractor", 1560 | "url": "https://pypi.org/project/socid-extractor/" 1561 | }, 1562 | { 1563 | "name": "social-analyzer", 1564 | "url": "https://pypi.org/project/social-analyzer/" 1565 | }, 1566 | { 1567 | "name": "KnowEm", 1568 | "url": "https://knowem.com/" 1569 | }, 1570 | { 1571 | "name": "Check Usernames", 1572 | "url": "https://checkusernames.com/" 1573 | }, 1574 | { 1575 | "name": "Username Checker", 1576 | "url": "https://checkuser.org/" 1577 | }, 1578 | { 1579 | "name": "Namechk", 1580 | "url": "https://namechk.com/" 1581 | }, 1582 | { 1583 | "name": "Lullar Com", 1584 | "url": "https://com.lullar.com/" 1585 | }, 1586 | { 1587 | "name": "SearchPOF.com", 1588 | "url": "https://searchpof.com/" 1589 | }, 1590 | { 1591 | "name": "OSINT Toolkit", 1592 | "url": "https://one-plus.github.io/EmailUsername", 1593 | "description": "In order to use these tools, please enter the username into the relevant box below, excluding any prefixed @ or # symbols. N.B. any results for usernames are an approximation, as such, any negative results, especially in the case of searches relating to messaging apps (Kik, Snapchat, Whatsapp, etc), does not necessarily mean the username is not in use." 1594 | }, 1595 | { 1596 | "name": "Username search tool", 1597 | "url": "https://www.aware-online.com/en/osint-tools/username-search-tool/" 1598 | }, 1599 | { 1600 | "name": "snoop", 1601 | "url": "https://github.com/snooppr/snoop" 1602 | }, 1603 | { 1604 | "name": "quidam", 1605 | "url": "https://pypi.org/project/quidam/", 1606 | "description": "Quidam allows you to retrieve information thanks to the forgotten password function of some sites." 1607 | } 1608 | ] 1609 | }, 1610 | { 1611 | "category": "EMAIL", 1612 | "tools": [ 1613 | { 1614 | "name": "Identificator.space", 1615 | "url": "https://identificator.space/" 1616 | }, 1617 | { 1618 | "name": "Epieos Email Lookup", 1619 | "url": "https://epieos.com/" 1620 | }, 1621 | { 1622 | "name": "Intelligence X", 1623 | "url": "https://intelx.io/tools?tab=email" 1624 | }, 1625 | { 1626 | "name": "holehe", 1627 | "url": "https://pypi.org/project/holehe/" 1628 | }, 1629 | { 1630 | "name": "Infoga", 1631 | "url": "http://github.com/m4ll0k/Infoga", 1632 | "description": "Infoga - Email OSINT. Contribute to m4ll0k/Infoga development by creating an account on GitHub." 1633 | }, 1634 | { 1635 | "name": "email2phonenumber", 1636 | "url": "https://github.com/martinvigo/email2phonenumber" 1637 | }, 1638 | { 1639 | "name": "Trumail", 1640 | "url": "https://trumail.io/" 1641 | }, 1642 | { 1643 | "name": "Email Verifier", 1644 | "url": "https://hunter.io/email-verifier" 1645 | }, 1646 | { 1647 | "name": "Verify Email", 1648 | "url": "https://verify-email.org/" 1649 | }, 1650 | { 1651 | "name": "Reverse Whois", 1652 | "url": "https://osint.sh/reversewhois/" 1653 | }, 1654 | { 1655 | "name": "Email Dossier", 1656 | "url": "https://centralops.net/co/emaildossier.aspx" 1657 | }, 1658 | { 1659 | "name": "Email Format", 1660 | "url": "https://www.email-format.com/" 1661 | }, 1662 | { 1663 | "name": "Email Header Analyzer", 1664 | "url": "https://mxtoolbox.com/EmailHeaders.aspx" 1665 | }, 1666 | { 1667 | "name": "E-mail search tool", 1668 | "url": "https://www.aware-online.com/osint-tools/e-mail-search-tool/" 1669 | }, 1670 | { 1671 | "name": "Proofy", 1672 | "url": "https://proofy.io/" 1673 | }, 1674 | { 1675 | "name": "Email Permutator", 1676 | "url": "http://metricsparrow.com/toolkit/email-permutator/" 1677 | }, 1678 | { 1679 | "name": "Phonebook.cz", 1680 | "url": "https://phonebook.cz/" 1681 | }, 1682 | { 1683 | "name": "Email Breach Analysis", 1684 | "url": "https://www.hotsheet.com/inoitsu/" 1685 | }, 1686 | { 1687 | "name": "Emailrep.io", 1688 | "url": "https://emailrep.io/" 1689 | }, 1690 | { 1691 | "name": "Email Finder", 1692 | "url": "https://osint.sh/email/" 1693 | }, 1694 | { 1695 | "name": "EmailHarvester", 1696 | "url": "https://pypi.org/project/EmailHarvester/" 1697 | }, 1698 | { 1699 | "name": "h8mail", 1700 | "url": "https://pypi.org/project/h8mail/", 1701 | "description": "Email OSINT and password breach hunting. Use h8mail to find passwords through different breach and reconnaissance services, or the infamous Breached Compilation torrent" 1702 | }, 1703 | { 1704 | "name": "WhatBreach", 1705 | "url": "https://github.com/Ekultek/WhatBreach" 1706 | }, 1707 | { 1708 | "name": "buster", 1709 | "url": "https://github.com/sham00n/buster" 1710 | }, 1711 | { 1712 | "name": "Anymailfinder.com", 1713 | "url": "https://anymailfinder.com/" 1714 | }, 1715 | { 1716 | "name": "ProtOSINT", 1717 | "url": "https://github.com/pixelbubble/ProtOSINT", 1718 | "description": "ProtOSINT is a Python script that helps you investigate ProtonMail accounts and ProtonVPN IP addresses." 1719 | } 1720 | ] 1721 | }, 1722 | { 1723 | "category": "PHONE", 1724 | "tools": [ 1725 | { 1726 | "name": "IntelTechniques Telephone", 1727 | "url": "https://inteltechniques.com/tools/Telephone.html" 1728 | }, 1729 | { 1730 | "name": "PhoneInfoga", 1731 | "url": "https://demo.phoneinfoga.crvx.fr/" 1732 | }, 1733 | { 1734 | "name": "Reverse Phone Lookup", 1735 | "url": "https://www.idcrawl.com/phone" 1736 | }, 1737 | { 1738 | "name": "ignorant", 1739 | "url": "https://pypi.org/project/ignorant/" 1740 | }, 1741 | { 1742 | "name": "PhoneInfoga", 1743 | "url": "https://github.com/sundowndev/PhoneInfoga" 1744 | }, 1745 | { 1746 | "name": "Moriarty-Project", 1747 | "url": "https://github.com/AzizKpln/Moriarty-Project" 1748 | }, 1749 | { 1750 | "name": "collector", 1751 | "url": "https://github.com/galihap76/collector", 1752 | "description": "Collector is a tool OSINT (open source intelligence) and information gathering." 1753 | }, 1754 | { 1755 | "name": "Truecaller Search Engine", 1756 | "url": "https://cse.google.com/cse?cx=c46b76bce1848d976" 1757 | }, 1758 | { 1759 | "name": "Nuwber", 1760 | "url": "https://nuwber.com/" 1761 | }, 1762 | { 1763 | "name": "Who Called Me", 1764 | "url": "https://www.whocalledme.com/" 1765 | }, 1766 | { 1767 | "name": "Phone number search Tool", 1768 | "url": "https://www.aware-online.com/en/osint-tools/phone-number-search-tool/" 1769 | }, 1770 | { 1771 | "name": "Validnumber.com", 1772 | "url": "https://validnumber.com/" 1773 | }, 1774 | { 1775 | "name": "Reverse Phone Lookup", 1776 | "url": "https://www.zlookup.com/" 1777 | }, 1778 | { 1779 | "name": "Reverse Phone Lookup", 1780 | "url": "https://www.reversephonecheck.com/" 1781 | }, 1782 | { 1783 | "name": "Truecaller", 1784 | "url": "https://www.truecaller.com/" 1785 | }, 1786 | { 1787 | "name": "Phone Number Lookup Tool", 1788 | "url": "https://shadowcrypt.net/tools/phone" 1789 | }, 1790 | { 1791 | "name": "SYNC.me", 1792 | "url": "https://sync.me/" 1793 | }, 1794 | { 1795 | "name": "OpenCelliD", 1796 | "url": "https://opencellid.org/" 1797 | }, 1798 | { 1799 | "name": "CellTower Locator", 1800 | "url": "http://www.cell2gps.com/" 1801 | }, 1802 | { 1803 | "name": "Find GSM base stations cell id coordinates", 1804 | "url": "https://cellidfinder.com/" 1805 | }, 1806 | { 1807 | "name": "Phone Scoop", 1808 | "url": "https://www.phonescoop.com/phones/" 1809 | }, 1810 | { 1811 | "name": "GSM Arena", 1812 | "url": "https://www.gsmarena.com/" 1813 | }, 1814 | { 1815 | "name": "Fcc.io", 1816 | "url": "http://fcc.io/" 1817 | }, 1818 | { 1819 | "name": "Oldphonebook.com", 1820 | "url": "http://www.oldphonebook.com/", 1821 | "description": "white pages, free people search, phone\r directory number, historical phone book, historical white\r pages, old white pages, \r 1994,1995,1996,1997,1998,2001,2002,2003,2007,2008,background \r search, c..." 1822 | }, 1823 | { 1824 | "name": "carrier lookup", 1825 | "url": "https://www.carrierlookup.com/" 1826 | }, 1827 | { 1828 | "name": "Free Reverse Phone Lookup", 1829 | "url": "https://spydialer.com/default.aspx", 1830 | "description": "Spy Dialer is the totally 100% seriously free reverse phone lookup used by millions of people. NO membership required! Have a missed call? Need to know whose number is it? Search now by phone numbe..." 1831 | }, 1832 | { 1833 | "name": "Phonerator", 1834 | "url": "https://www.martinvigo.com/tools/phonerator/" 1835 | } 1836 | ] 1837 | }, 1838 | { 1839 | "category": "SOCIAL MEDIA", 1840 | "tools": [ 1841 | { 1842 | "name": "Hunt Intelligence", 1843 | "url": "https://www.huntintel.io/" 1844 | }, 1845 | { 1846 | "name": "snscrape", 1847 | "url": "https://pypi.org/project/snscrape/" 1848 | }, 1849 | { 1850 | "name": "Social Profiles Finder", 1851 | "url": "https://www.social-searcher.com/search-users/" 1852 | }, 1853 | { 1854 | "name": "Who posted what?", 1855 | "url": "https://whopostedwhat.com/" 1856 | }, 1857 | { 1858 | "name": "VK Search Engine", 1859 | "url": "https://cse.google.com/cse?cx=f5e7cd4c6e33954ec" 1860 | }, 1861 | { 1862 | "name": "Skype Search Engine", 1863 | "url": "https://www.skypli.com/", 1864 | "description": "Skype Search Engine" 1865 | }, 1866 | { 1867 | "name": "Vimeo search tool", 1868 | "url": "https://www.aware-online.com/en/osint-tools/vimeo-search-tool/" 1869 | }, 1870 | { 1871 | "name": "Kribrum.io", 1872 | "url": "https://kribrum.io/" 1873 | }, 1874 | { 1875 | "name": "Graphtreon.com", 1876 | "url": "https://graphtreon.com/" 1877 | }, 1878 | { 1879 | "name": "Social Search Engine", 1880 | "url": "https://www.socialsearchengine.org/" 1881 | }, 1882 | { 1883 | "name": "Instagram, Reddit & Snapchat", 1884 | "url": "https://one-plus.github.io/Instagram" 1885 | }, 1886 | { 1887 | "name": "Google to search profiles on Dribbble", 1888 | "url": "https://recruitin.net/dribbble.php" 1889 | }, 1890 | { 1891 | "name": "Google to search profiles on Xing", 1892 | "url": "https://recruitin.net/xing.php" 1893 | }, 1894 | { 1895 | "name": "OSINT & SOCMINT Tooling", 1896 | "url": "https://osint.support/chrome-extensions/2019/09/29/osint-socmint-tooling.html" 1897 | }, 1898 | { 1899 | "name": "Blackbird", 1900 | "url": "https://github.com/p1ngul1n0/blackbird", 1901 | "description": "CLI toolkit to enumerate social media profiles by username across dozens of platforms." 1902 | }, 1903 | { 1904 | "name": "Social Analyzer", 1905 | "url": "https://github.com/qeeqbox/social-analyzer", 1906 | "description": "Web app and CLI for cross-platform username checks with rich profile parsing." 1907 | } 1908 | ] 1909 | }, 1910 | { 1911 | "category": "FACEBOOK", 1912 | "tools": [ 1913 | { 1914 | "name": "IntelTechniques Facebook", 1915 | "url": "https://inteltechniques.com/tools/Facebook.html" 1916 | }, 1917 | { 1918 | "name": "Facebook Search Engine", 1919 | "url": "https://cse.google.com/cse?cx=95ae46262a5f2958e" 1920 | }, 1921 | { 1922 | "name": "Facebook Photo Search Engine", 1923 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:jyvyp2ppxma" 1924 | }, 1925 | { 1926 | "name": "Facebook Scraped Data search", 1927 | "url": "http://4wbwa6vcpvcr3vvf4qkhppgy56urmjcj2vagu2iqgp3z656xcmfdbiqd.onion.pet/" 1928 | }, 1929 | { 1930 | "name": "Facebook Search", 1931 | "url": "https://www.sowsearch.info/" 1932 | }, 1933 | { 1934 | "name": "Facebook Search", 1935 | "url": "https://www.social-searcher.com/facebook-search/" 1936 | }, 1937 | { 1938 | "name": "Facebook Video Downloader", 1939 | "url": "https://fbdown.github.io/" 1940 | }, 1941 | { 1942 | "name": "Facebook Search Tool", 1943 | "url": "https://www.aware-online.com/osint-tools/facebook-search-tool/" 1944 | }, 1945 | { 1946 | "name": "Find My Facebook ID", 1947 | "url": "https://commentpicker.com/find-facebook-id.php" 1948 | }, 1949 | { 1950 | "name": "Facebook Geo", 1951 | "url": "https://www.osintcombine.com/facebook-geo-pages" 1952 | }, 1953 | { 1954 | "name": "Facebook Friends List Generator", 1955 | "url": "https://osint.support/chrome-extensions/2019/10/20/facebook-friends-list-generator.html" 1956 | }, 1957 | { 1958 | "name": "Facebook Entity Id Parser", 1959 | "url": "https://osint.support/chrome-extensions/2019/09/08/facebook-entity-id-parser.html" 1960 | }, 1961 | { 1962 | "name": "Facebook Profile Id Grabber", 1963 | "url": "https://osint.support/chrome-extensions/2019/09/01/facebook-profile-id-grabber.html" 1964 | }, 1965 | { 1966 | "name": "Facebook Email Reverse Lookup", 1967 | "url": "https://osint.support/chrome-extensions/2019/09/01/facebook-email-reverse-lookup.html" 1968 | }, 1969 | { 1970 | "name": "Facebook Profile Directory", 1971 | "url": "https://www.facebook.com/directory/" 1972 | }, 1973 | { 1974 | "name": "Have I Been Zucked?", 1975 | "url": "https://haveibeenzucked.com/" 1976 | } 1977 | ] 1978 | }, 1979 | { 1980 | "category": "TWITTER", 1981 | "tools": [ 1982 | { 1983 | "name": "IntelTechniques Twitter", 1984 | "url": "https://inteltechniques.com/tools/Twitter.html" 1985 | }, 1986 | { 1987 | "name": "Nitter.hu", 1988 | "url": "https://nitter.hu/" 1989 | }, 1990 | { 1991 | "name": "Nitter.it", 1992 | "url": "https://nitter.it/" 1993 | }, 1994 | { 1995 | "name": "BirdHunt", 1996 | "url": "https://birdhunt.co/" 1997 | }, 1998 | { 1999 | "name": "Nitter Instances", 2000 | "url": "https://xnaas.github.io/nitter-instances/" 2001 | }, 2002 | { 2003 | "name": "twint", 2004 | "url": "https://pypi.org/project/twint/" 2005 | }, 2006 | { 2007 | "name": "Twitter Search Engine", 2008 | "url": "https://cse.google.com/cse?cx=5857bab69c8b8e37e" 2009 | }, 2010 | { 2011 | "name": "Tweet Finder", 2012 | "url": "https://cse.google.com/cse/publicurl?cx=016621447308871563343:u4r_fupvs-e" 2013 | }, 2014 | { 2015 | "name": "Twitter Photo Search", 2016 | "url": "https://cse.google.com/cse/publicurl?cx=006290531980334157382:_ltcjq0robu" 2017 | }, 2018 | { 2019 | "name": "Tweet Archive Search", 2020 | "url": "https://cse.google.com/cse/publicurl?cx=005797772976587943970:kffjgylvzwu", 2021 | "icon": "https://www.google.com/s2/favicons?domain=cse.google.com&sz=64" 2022 | }, 2023 | { 2024 | "name": "Twitter Advanced Search", 2025 | "url": "https://twitter.com/search-advanced" 2026 | }, 2027 | { 2028 | "name": "Twitter / Profiles Directory", 2029 | "url": "https://twitter.com/i/directory/" 2030 | }, 2031 | { 2032 | "name": "TweetBeaver", 2033 | "url": "https://tweetbeaver.com/" 2034 | }, 2035 | { 2036 | "name": "Twitter search tool", 2037 | "url": "https://www.aware-online.com/en/osint-tools/twitter-search-tool/" 2038 | }, 2039 | { 2040 | "name": "Google to search profiles on Twitter", 2041 | "url": "https://recruitin.net/twitter.php" 2042 | }, 2043 | { 2044 | "name": "Tweettioc.com", 2045 | "url": "http://tweettioc.com/" 2046 | }, 2047 | { 2048 | "name": "Search Twitter Bios and Profiles", 2049 | "url": "https://followerwonk.com/bio" 2050 | }, 2051 | { 2052 | "name": "The one million tweet map", 2053 | "url": "https://onemilliontweetmap.com/" 2054 | }, 2055 | { 2056 | "name": "Tweet Binder", 2057 | "url": "https://www.tweetbinder.com/" 2058 | }, 2059 | { 2060 | "name": "Twitter Search", 2061 | "url": "https://one-plus.github.io/Twitter" 2062 | }, 2063 | { 2064 | "name": "Twitter Monitoring", 2065 | "url": "https://one-plus.github.io/TwitterMonitor" 2066 | }, 2067 | { 2068 | "name": "Thread Reader", 2069 | "url": "https://threadreaderapp.com/" 2070 | }, 2071 | { 2072 | "name": "Search Twitter Users", 2073 | "url": "https://pushshift.io/twitter-user-search/" 2074 | }, 2075 | { 2076 | "name": "Find Twitter Followers", 2077 | "url": "http://searchfortweets1.com/" 2078 | }, 2079 | { 2080 | "name": "Getdewey.co", 2081 | "url": "https://getdewey.co/" 2082 | }, 2083 | { 2084 | "name": "geosocial footprint", 2085 | "url": "http://geosocialfootprint.com/" 2086 | }, 2087 | { 2088 | "name": "tweetmap", 2089 | "url": "https://www.omnisci.com/demos/tweetmap" 2090 | }, 2091 | { 2092 | "name": "DoesFollow", 2093 | "url": "https://doesfollow.com/" 2094 | }, 2095 | { 2096 | "name": "Sleeping Time", 2097 | "url": "http://sleepingtime.org/" 2098 | }, 2099 | { 2100 | "name": "Twitter Analytics", 2101 | "url": "https://foller.me/" 2102 | }, 2103 | { 2104 | "name": "Tweet Topic Explorer", 2105 | "url": "http://tweettopicexplorer.neoformix.com/" 2106 | }, 2107 | { 2108 | "name": "TruthNest", 2109 | "url": "https://app.truthnest.com/" 2110 | }, 2111 | { 2112 | "name": "getdaytrends", 2113 | "url": "https://getdaytrends.com/" 2114 | }, 2115 | { 2116 | "name": "Twitter Trending Hashtags and Topics", 2117 | "url": "https://www.trendsmap.com/" 2118 | }, 2119 | { 2120 | "name": "Socialbearing", 2121 | "url": "https://socialbearing.com/" 2122 | }, 2123 | { 2124 | "name": "Twiangulate: analyzing the connections between friends and followers", 2125 | "url": "http://twiangulate.com/search/" 2126 | }, 2127 | { 2128 | "name": "First Tweet", 2129 | "url": "http://ctrlq.org/first/" 2130 | }, 2131 | { 2132 | "name": "Twittertrails.com", 2133 | "url": "http://twittertrails.com/" 2134 | }, 2135 | { 2136 | "name": "Download and Export Twitter Followers into Excel for Free", 2137 | "url": "https://www.vicinitas.io/free-tools/download-twitter-followers" 2138 | }, 2139 | { 2140 | "name": "Simplescraper OSINT", 2141 | "url": "https://airtable.com/shrceHfvukijgln9q/" 2142 | } 2143 | ] 2144 | }, 2145 | { 2146 | "category": "YOUTUBE", 2147 | "tools": [ 2148 | { 2149 | "name": "Invidious Instances", 2150 | "url": "https://docs.invidious.io/instances/" 2151 | }, 2152 | { 2153 | "name": "YouTube video upload time", 2154 | "url": "https://www.aware-online.com/en/osint-tutorials/youtube-video-upload-time/" 2155 | }, 2156 | { 2157 | "name": "yt-dlp", 2158 | "url": "https://pypi.org/project/yt-dlp/" 2159 | }, 2160 | { 2161 | "name": "youtube-dl", 2162 | "url": "https://ytdl.actionsack.com/" 2163 | }, 2164 | { 2165 | "name": "Location Search", 2166 | "url": "https://mattw.io/youtube-geofind/location" 2167 | }, 2168 | { 2169 | "name": "YouTube Metadata Bulk", 2170 | "url": "https://mattw.io/youtube-metadata/bulk" 2171 | }, 2172 | { 2173 | "name": "Hadzy.com", 2174 | "url": "https://hadzy.com/" 2175 | }, 2176 | { 2177 | "name": "Youtube channel ID", 2178 | "url": "https://commentpicker.com/youtube-channel-id.php" 2179 | }, 2180 | { 2181 | "name": "Extract Meta Data YouTube", 2182 | "url": "https://citizenevidence.amnestyusa.org/" 2183 | }, 2184 | { 2185 | "name": "Youtube Geo Search Tool", 2186 | "url": "https://youtube.github.io/geo-search-tool/search.html" 2187 | }, 2188 | { 2189 | "name": "Youtube Channel Search", 2190 | "url": "https://asif633.github.io/youtube-channel-search/" 2191 | }, 2192 | { 2193 | "name": "YouTube search tool", 2194 | "url": "https://www.aware-online.com/en/osint-tools/youtube-search-tool/" 2195 | }, 2196 | { 2197 | "name": "Yout", 2198 | "url": "https://yout.com/" 2199 | }, 2200 | { 2201 | "name": "YouTube Comment Finder", 2202 | "url": "https://ytcomment.kmcat.uk/" 2203 | }, 2204 | { 2205 | "name": "Youtube, Periscope, Twitch & Dailymotion", 2206 | "url": "https://one-plus.github.io/Youtube" 2207 | }, 2208 | { 2209 | "name": "Unlistedvideos.com", 2210 | "url": "https://unlistedvideos.com/" 2211 | }, 2212 | { 2213 | "name": "Youtube Comments Downloader", 2214 | "url": "https://youtubecommentsdownloader.com/" 2215 | } 2216 | ] 2217 | }, 2218 | { 2219 | "category": "REDDIT", 2220 | "tools": [ 2221 | { 2222 | "name": "teddit", 2223 | "url": "https://teddit.net/", 2224 | "description": "Reddit privacy frontend" 2225 | }, 2226 | { 2227 | "name": "Reddit Search", 2228 | "url": "https://camas.unddit.com/", 2229 | "description": "Search reddit using the pushshift.io API. For more advanced searches you can directly query the API fairly easily." 2230 | }, 2231 | { 2232 | "name": "Karma Decay", 2233 | "url": "http://karmadecay.com/" 2234 | }, 2235 | { 2236 | "name": "redditsfinder", 2237 | "url": "https://pypi.org/project/redditsfinder/", 2238 | "description": "A command line program to easily download reddit users' post histories." 2239 | }, 2240 | { 2241 | "name": "SocialGrep", 2242 | "url": "https://www.socialgrep.com/search", 2243 | "description": "Social media statistics for Reddit - popular communities, trending topics, and more" 2244 | }, 2245 | { 2246 | "name": "Reddit Search Tool", 2247 | "url": "https://redditsearchtool.com/" 2248 | }, 2249 | { 2250 | "name": "Search Reddit", 2251 | "url": "https://bmai.dev/reddit/" 2252 | }, 2253 | { 2254 | "name": "Reddit Archive", 2255 | "url": "https://ihsoyct.github.io/" 2256 | }, 2257 | { 2258 | "name": "Chearch", 2259 | "url": "https://adhesivecheese.github.io/chearch/", 2260 | "description": "Pushshift Frontend" 2261 | }, 2262 | { 2263 | "name": "NY Dolls.org", 2264 | "url": "https://nydolls.org/author", 2265 | "description": "USE: https://nydolls.org/author/REDDITOR" 2266 | }, 2267 | { 2268 | "name": "Reveddit.com", 2269 | "url": "https://www.reveddit.com/" 2270 | }, 2271 | { 2272 | "name": "Reddit Downloader", 2273 | "url": "https://redditdownloader.github.io/" 2274 | }, 2275 | { 2276 | "name": "Redective", 2277 | "url": "https://www.redective.com/" 2278 | }, 2279 | { 2280 | "name": "Reddit_Persona", 2281 | "url": "https://github.com/n2itn/reddit_persona", 2282 | "description": "A Python module to extract personality insights, sentiment & keywords from reddit accounts" 2283 | }, 2284 | { 2285 | "name": "Uncensor.cc", 2286 | "url": "https://uncensor.cc/" 2287 | }, 2288 | { 2289 | "name": "Reddit Search Engine", 2290 | "url": "https://cse.google.com/cse?cx=0728740ab68a619ba" 2291 | }, 2292 | { 2293 | "name": "Reddit Search Engine", 2294 | "url": "https://cse.google.com/cse/publicurl?cx=017261104271573007538:bbzhlah6n4o" 2295 | }, 2296 | { 2297 | "name": "Reddit User Analyser", 2298 | "url": "https://reddit-user-analyser.netlify.app/" 2299 | }, 2300 | { 2301 | "name": "reddit search", 2302 | "url": "https://www.redditsearch.io/" 2303 | }, 2304 | { 2305 | "name": "Reddit search tool", 2306 | "url": "https://www.aware-online.com/en/osint-tools/reddit-search-tool/" 2307 | }, 2308 | { 2309 | "name": "Pholder", 2310 | "url": "https://pholder.com/" 2311 | }, 2312 | { 2313 | "name": "RedditMetis", 2314 | "url": "https://redditmetis.com/" 2315 | }, 2316 | { 2317 | "name": "Search Reddit Comments by User", 2318 | "url": "https://www.redditcommentsearch.com/" 2319 | }, 2320 | { 2321 | "name": "Reddit Investigator", 2322 | "url": "https://www.redditinvestigator.com/" 2323 | }, 2324 | { 2325 | "name": "pushshift.io", 2326 | "url": "https://pushshift.io/" 2327 | }, 2328 | { 2329 | "name": "Pushshift API Guide", 2330 | "url": "https://github.com/pushshift/api" 2331 | }, 2332 | { 2333 | "name": "Searcheddit", 2334 | "url": "http://searcheddit.com/" 2335 | }, 2336 | { 2337 | "name": "Removeddit", 2338 | "url": "https://removeddit.com/" 2339 | }, 2340 | { 2341 | "name": "Deaditarchive.netlify.app", 2342 | "url": "https://deaditarchive.netlify.app/" 2343 | }, 2344 | { 2345 | "name": "Map of Reddit", 2346 | "url": "https://anvaka.github.io/map-of-reddit/" 2347 | }, 2348 | { 2349 | "name": "reddit visualization", 2350 | "url": "https://yasiv.com/reddit" 2351 | }, 2352 | { 2353 | "name": "ReSavr", 2354 | "url": "https://www.resavr.com/" 2355 | }, 2356 | { 2357 | "name": "Redditle.com", 2358 | "url": "https://redditle.com/" 2359 | }, 2360 | { 2361 | "name": "Libredd.it", 2362 | "url": "https://libredd.it/" 2363 | } 2364 | ] 2365 | }, 2366 | { 2367 | "category": "LINKEDIN", 2368 | "tools": [ 2369 | { 2370 | "name": "LinkedIn Search", 2371 | "url": "https://recruitin.net/", 2372 | "description": "Easily use Google to search profiles on LinkedIn" 2373 | }, 2374 | { 2375 | "name": "LinkedIn X-Ray Search Tool", 2376 | "url": "https://www.lisearcher.com/" 2377 | }, 2378 | { 2379 | "name": "LinkedProspect", 2380 | "url": "https://linkedprospect.com/linkedin-boolean-search-tool/" 2381 | }, 2382 | { 2383 | "name": "LinkedIn Search Engine", 2384 | "url": "https://cse.google.com/cse?cx=daaf18e804f81bed0" 2385 | }, 2386 | { 2387 | "name": "LinkedIn Search Engine (with Images)", 2388 | "url": "https://cse.google.com/cse?cx=40126f0af1aff84f8" 2389 | }, 2390 | { 2391 | "name": "Chartloop", 2392 | "url": "https://buildorgchart.herokuapp.com/" 2393 | }, 2394 | { 2395 | "name": "Proxycurl", 2396 | "url": "https://nubela.co/proxycurl/" 2397 | }, 2398 | { 2399 | "name": "nqntnqnqmb", 2400 | "url": "https://pypi.org/project/nqntnqnqmb/", 2401 | "description": "Allows you to retrieve information on linkedin profiles, companies on linkedin and search on linkedin companies/persons" 2402 | }, 2403 | { 2404 | "name": "LinkedIn Email Reverse Lookup", 2405 | "url": "https://osint.support/chrome-extensions/2019/09/03/linkedin-email-reverse-lookup.html" 2406 | } 2407 | ] 2408 | }, 2409 | { 2410 | "category": "GOOGLE", 2411 | "tools": [ 2412 | { 2413 | "name": "Google+ Photo Custom Search", 2414 | "url": "https://cse.google.com/cse/publicurl?cx=006205189065513216365:uo99tr1fxjq" 2415 | }, 2416 | { 2417 | "name": "GHunt", 2418 | "url": "https://github.com/mxrch/GHunt" 2419 | }, 2420 | { 2421 | "name": "Google Social Search", 2422 | "url": "https://www.social-searcher.com/google-social-search/" 2423 | }, 2424 | { 2425 | "name": "Google+ & LinkedIn", 2426 | "url": "https://one-plus.github.io/G+Link" 2427 | } 2428 | ] 2429 | }, 2430 | { 2431 | "category": "DISCORD", 2432 | "tools": [ 2433 | { 2434 | "name": "Discord User Search", 2435 | "url": "https://discordhub.com/user/search" 2436 | }, 2437 | { 2438 | "name": "Discord Me", 2439 | "url": "https://discord.me/" 2440 | }, 2441 | { 2442 | "name": "Enlarge Discord avatars", 2443 | "url": "https://discordzoom.com/en/" 2444 | }, 2445 | { 2446 | "name": "Discord History Tracker", 2447 | "url": "https://dht.chylex.com/", 2448 | "description": "Discord History Tracker lets you save chat history in your servers, groups, and private conversations, and view it offline." 2449 | }, 2450 | { 2451 | "name": "DiscordOSINT", 2452 | "url": "https://github.com/atoncehussein/DiscordOSINT" 2453 | }, 2454 | { 2455 | "name": "DiscordServers", 2456 | "url": "https://discordservers.com/" 2457 | }, 2458 | { 2459 | "name": "DISBOARD", 2460 | "url": "https://disboard.org/" 2461 | }, 2462 | { 2463 | "name": "Discord Servers Portal", 2464 | "url": "https://www.discordportal.com/" 2465 | }, 2466 | { 2467 | "name": "Discord ID Lookup", 2468 | "url": "https://discord.id/" 2469 | }, 2470 | { 2471 | "name": "Discord Center", 2472 | "url": "https://discord.center/" 2473 | }, 2474 | { 2475 | "name": "Discord Bots", 2476 | "url": "https://discordbotlist.com/" 2477 | }, 2478 | { 2479 | "name": "Discord Bots", 2480 | "url": "https://top.gg/" 2481 | }, 2482 | { 2483 | "name": "Discord Bots", 2484 | "url": "https://discord.bots.gg/" 2485 | } 2486 | ] 2487 | }, 2488 | { 2489 | "category": "TWITCH", 2490 | "tools": [ 2491 | { 2492 | "name": "TwitchTracker", 2493 | "url": "https://twitchtracker.com/" 2494 | }, 2495 | { 2496 | "name": "Twitch.fckdmca.com", 2497 | "url": "https://twitch.fckdmca.com/" 2498 | }, 2499 | { 2500 | "name": "Twitch Payout Search", 2501 | "url": "https://sizeof.cat/project/twitch-payout-search/" 2502 | }, 2503 | { 2504 | "name": "Search for a Twitch channel", 2505 | "url": "https://sullygnome.com/channelsearch" 2506 | }, 2507 | { 2508 | "name": "Searchstream.live", 2509 | "url": "https://searchstream.live/" 2510 | }, 2511 | { 2512 | "name": "Twitch Tools", 2513 | "url": "https://twitch-tools.rootonline.de/", 2514 | "description": "View the follower list of any Twitch channel" 2515 | }, 2516 | { 2517 | "name": "Username Availability", 2518 | "url": "https://cactus.tools/twitch/username" 2519 | }, 2520 | { 2521 | "name": "Check channel badges", 2522 | "url": "https://cactus.tools/twitch/badges" 2523 | }, 2524 | { 2525 | "name": "Check Twitch follow length", 2526 | "url": "https://cactus.tools/twitch/followage" 2527 | }, 2528 | { 2529 | "name": "Twitch Following", 2530 | "url": "https://cactus.tools/twitch/following" 2531 | }, 2532 | { 2533 | "name": "All Twitch Streamers Search", 2534 | "url": "https://twitchstats.net/allstreamers" 2535 | }, 2536 | { 2537 | "name": "Twitchmetrics.net", 2538 | "url": "https://www.twitchmetrics.net/" 2539 | }, 2540 | { 2541 | "name": "Twitch Username Search", 2542 | "url": "https://twitchusernames.com/" 2543 | } 2544 | ] 2545 | }, 2546 | { 2547 | "category": "INSTAGRAM", 2548 | "tools": [ 2549 | { 2550 | "name": "Bibliogram.art", 2551 | "url": "https://bibliogram.art/" 2552 | }, 2553 | { 2554 | "name": "Bibliogram", 2555 | "url": "https://bib.actionsack.com/" 2556 | }, 2557 | { 2558 | "name": "InstaHunt", 2559 | "url": "https://instahunt.co/" 2560 | }, 2561 | { 2562 | "name": "Instagram Deep Photo Search Engine", 2563 | "url": "https://cse.google.com/cse?cx=017261104271573007538:ffk_jpt64gy" 2564 | }, 2565 | { 2566 | "name": "Instagram analyzer and viewer", 2567 | "url": "https://gramho.com/" 2568 | }, 2569 | { 2570 | "name": "Find Instagram User ID", 2571 | "url": "https://codeofaninja.com/tools/find-instagram-user-id/" 2572 | }, 2573 | { 2574 | "name": "Instagram User ID", 2575 | "url": "https://commentpicker.com/instagram-user-id.php" 2576 | }, 2577 | { 2578 | "name": "Searchmy.bio", 2579 | "url": "https://www.searchmy.bio/" 2580 | }, 2581 | { 2582 | "name": "Statflux", 2583 | "url": "http://statflux.com/" 2584 | }, 2585 | { 2586 | "name": "Gramsize.com", 2587 | "url": "https://gramsize.com/" 2588 | }, 2589 | { 2590 | "name": "toutatis", 2591 | "url": "https://pypi.org/project/toutatis/", 2592 | "description": "It is a tool written to retrieve private information such as Phone Number, Mail Address, ID on Instagram accounts via API." 2593 | }, 2594 | { 2595 | "name": "instalooter", 2596 | "url": "https://pypi.org/project/instalooter/", 2597 | "description": "InstaLooter is a program that can download any picture or video associated from an Instagram profile, without any API access" 2598 | }, 2599 | { 2600 | "name": "instaloader", 2601 | "url": "https://pypi.org/project/instaloader/" 2602 | }, 2603 | { 2604 | "name": "chatter", 2605 | "url": "https://github.com/visualbasic6/chatter", 2606 | "description": "internet monitoring osint telegram bot for windows" 2607 | }, 2608 | { 2609 | "name": "osi.ig", 2610 | "url": "https://github.com/th3unkn0n/osi.ig" 2611 | }, 2612 | { 2613 | "name": "Osintgram", 2614 | "url": "https://github.com/Datalux/Osintgram" 2615 | }, 2616 | { 2617 | "name": "SoIG", 2618 | "url": "https://github.com/yezz123/SoIG" 2619 | }, 2620 | { 2621 | "name": "yesitsme", 2622 | "url": "https://github.com/blackeko/yesitsme", 2623 | "description": "Simple OSINT script to find Instagram profiles by name and e-mail/phone" 2624 | }, 2625 | { 2626 | "name": "Instagram Location Search", 2627 | "url": "https://github.com/bellingcat/instagram-location-search" 2628 | } 2629 | ] 2630 | }, 2631 | { 2632 | "category": "TELEGRAM", 2633 | "tools": [ 2634 | { 2635 | "name": "Telegago", 2636 | "url": "https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0", 2637 | "description": "Telegram Search Engine" 2638 | }, 2639 | { 2640 | "name": "Telegram Search", 2641 | "url": "https://cse.google.com/cse?cx=004805129374225513871:p8lhfo0g3hg" 2642 | }, 2643 | { 2644 | "name": "Telegram Search. Search for posts", 2645 | "url": "https://tgstat.com/search" 2646 | }, 2647 | { 2648 | "name": "Lyzem Blog", 2649 | "url": "https://lyzem.com/" 2650 | }, 2651 | { 2652 | "name": "Search.buzz.im", 2653 | "url": "https://search.buzz.im/" 2654 | }, 2655 | { 2656 | "name": "Telegram Usernames Finder", 2657 | "url": "https://socialfinder.app/list/Telegram" 2658 | }, 2659 | { 2660 | "name": "Telegram Channels List", 2661 | "url": "https://tlgrm.eu/channels" 2662 | }, 2663 | { 2664 | "name": "Readergram.com", 2665 | "url": "https://readergram.com/" 2666 | }, 2667 | { 2668 | "name": "Ixgram", 2669 | "url": "https://www.telegramgroup1.com/" 2670 | }, 2671 | { 2672 | "name": "Find Telegram Channels/Bots/Groups", 2673 | "url": "https://xtea.io/ts_en.html" 2674 | }, 2675 | { 2676 | "name": "Telegram Group: Find Telegram Channels, Bots & Groups", 2677 | "url": "https://www.telegram-group.com/en/" 2678 | }, 2679 | { 2680 | "name": "TelegramDB.org", 2681 | "url": "https://telegramdb.org/" 2682 | }, 2683 | { 2684 | "name": "Global Telegram Database", 2685 | "url": "https://t.me/s/privatelinks", 2686 | "icon": "https://www.google.com/s2/favicons?domain=t.me&sz=64" 2687 | }, 2688 | { 2689 | "name": "Telegram Search Engine", 2690 | "url": "https://clickbee.me/Telegram-Search-Engine.html" 2691 | }, 2692 | { 2693 | "name": "Nekogram X", 2694 | "url": "https://f-droid.org/packages/nekox.messenger/", 2695 | "description": "The third-party Telegram android app" 2696 | }, 2697 | { 2698 | "name": "telegram-phone-number-checker", 2699 | "url": "https://github.com/bellingcat/telegram-phone-number-checker" 2700 | } 2701 | ] 2702 | }, 2703 | { 2704 | "category": "SNAPCHAT", 2705 | "tools": [ 2706 | { 2707 | "name": "Ghostcodes.com", 2708 | "url": "https://www.ghostcodes.com/" 2709 | }, 2710 | { 2711 | "name": "Snap Map", 2712 | "url": "https://map.snapchat.com/" 2713 | }, 2714 | { 2715 | "name": "Snapdex", 2716 | "url": "https://snapdex.com/" 2717 | }, 2718 | { 2719 | "name": "SnapScraper", 2720 | "url": "https://rhematt.github.io/Snap-Scraper/", 2721 | "description": "SnapScraper is an open source intelligence tool which enables users to download media uploaded to Snapchat’s Snap Map using a set of latitude and longitiude co-ordinates." 2722 | }, 2723 | { 2724 | "name": "snapmap-archiver", 2725 | "url": "https://pypi.org/project/snapmap-archiver/" 2726 | }, 2727 | { 2728 | "name": "Snapchat User Search", 2729 | "url": "https://sovip.io/" 2730 | }, 2731 | { 2732 | "name": "SnapChat Search (ENTER-USERNAME-HERE)", 2733 | "url": "https://feelinsonice.appspot.com/web/deeplink/snapcode?username=ENTER-USERNAME-HERE&size=400&type=SVG" 2734 | } 2735 | ] 2736 | }, 2737 | { 2738 | "category": "MASTODON", 2739 | "tools": [ 2740 | { 2741 | "name": "Search.noc.social", 2742 | "url": "https://search.noc.social/" 2743 | }, 2744 | { 2745 | "name": "Mastodon Search Engine", 2746 | "url": "https://cse.google.com/cse?cx=334aec4c3c73ed945" 2747 | }, 2748 | { 2749 | "name": "TootFinder", 2750 | "url": "https://tootfinder.ch/", 2751 | "description": "Indexed search for Mastodon toots, including posts older than the standard six-month retention." 2752 | }, 2753 | { 2754 | "name": "Fediverse Observer", 2755 | "url": "https://fediverse.observer/", 2756 | "description": "Discovery and analytics platform tracking Mastodon and ActivityPub instances, growth, and moderation." 2757 | } 2758 | ] 2759 | }, 2760 | { 2761 | "category": "TIKTOK", 2762 | "tools": [ 2763 | { 2764 | "name": "TIKTOK Search Engine", 2765 | "url": "https://cse.google.com/cse?cx=011444696387487602669:aqf7d9w73om" 2766 | }, 2767 | { 2768 | "name": "TikTok User Search", 2769 | "url": "https://vidnice.com/search/" 2770 | }, 2771 | { 2772 | "name": "TikTok downloader", 2773 | "url": "https://tiktokd.com/" 2774 | }, 2775 | { 2776 | "name": "TikTok hashtag analysis toolset", 2777 | "url": "https://github.com/bellingcat/tiktok-hashtag-analysis" 2778 | } 2779 | ] 2780 | }, 2781 | { 2782 | "category": "STEAM", 2783 | "tools": [ 2784 | { 2785 | "name": "Steam Community :: Search", 2786 | "url": "https://steamcommunity.com/search/users/" 2787 | }, 2788 | { 2789 | "name": "Steam ID Finder", 2790 | "url": "https://steamidfinder.com/lookup/" 2791 | }, 2792 | { 2793 | "name": "steamdb.info/calculator", 2794 | "url": "https://steamdb.info/calculator/" 2795 | }, 2796 | { 2797 | "name": "SteamID.uk", 2798 | "url": "https://steamid.uk/", 2799 | "description": "Lookup vanity URLs, account bans, VAC history, and related identifiers for Steam profiles." 2800 | }, 2801 | { 2802 | "name": "SteamRep", 2803 | "url": "https://steamrep.com/", 2804 | "description": "Community reputation database highlighting reported scammers and suspicious Steam accounts." 2805 | } 2806 | ] 2807 | }, 2808 | { 2809 | "category": "CLUBHOUSE", 2810 | "tools": [ 2811 | { 2812 | "name": "Clubhouse Database", 2813 | "url": "https://clubhousedb.com/" 2814 | }, 2815 | { 2816 | "name": "Rooms of Clubhouse", 2817 | "url": "https://roomsofclubhouse.com/" 2818 | }, 2819 | { 2820 | "name": "ClubSearch -- search Clubhouse rooms", 2821 | "url": "https://clubsearch.io/" 2822 | } 2823 | ] 2824 | }, 2825 | { 2826 | "category": "ONLYFANS", 2827 | "tools": [ 2828 | { 2829 | "name": "Onlysearch.co", 2830 | "url": "https://onlysearch.co/" 2831 | }, 2832 | { 2833 | "name": "OnlyFinder", 2834 | "url": "https://onlyfinder.com/" 2835 | }, 2836 | { 2837 | "name": "Search OnlyFans profiles", 2838 | "url": "https://hubite.com/onlyfans-search/" 2839 | }, 2840 | { 2841 | "name": "Fansmetrics.com", 2842 | "url": "https://fansmetrics.com/" 2843 | }, 2844 | { 2845 | "name": "Findr.fans", 2846 | "url": "https://findr.fans/" 2847 | }, 2848 | { 2849 | "name": "SimilarFans", 2850 | "url": "https://similarfans.com/" 2851 | } 2852 | ] 2853 | }, 2854 | { 2855 | "category": "BOT", 2856 | "tools": [ 2857 | { 2858 | "name": "Bot Sentinel Dashboard ‹ Bot Sentinel", 2859 | "url": "https://botsentinel.com/" 2860 | }, 2861 | { 2862 | "name": "Botometer by OSoMe", 2863 | "url": "https://botometer.osome.iu.edu/", 2864 | "description": "Botometer® (formerly BotOrNot) checks the activity of Twitter accounts and gives them a score based on how likely they are to be bots. Higher scores are more bot-like. Brought to yo..." 2865 | }, 2866 | { 2867 | "name": "FollowerAudit", 2868 | "url": "https://www.followeraudit.com/" 2869 | }, 2870 | { 2871 | "name": "Twitter Bot Checker", 2872 | "url": "https://circleboom.com/twitter-management-tool/twitter-circle-tool/twitter-bot-checker" 2873 | }, 2874 | { 2875 | "name": "BotSlayer", 2876 | "url": "https://osome.iu.edu/tools/botslayer" 2877 | } 2878 | ] 2879 | }, 2880 | { 2881 | "category": "BLOG", 2882 | "tools": [ 2883 | { 2884 | "name": "Blogs Search Engine", 2885 | "url": "https://cse.google.com/cse?cx=013991603413798772546:8c1g6f0frp8#gsc.tab=0" 2886 | }, 2887 | { 2888 | "name": "WordPress Content Snatcher", 2889 | "url": "https://cse.google.com/cse/publicurl?cx=011081986282915606282:w8bndhohpi0" 2890 | }, 2891 | { 2892 | "name": "WordPress Custom Search", 2893 | "url": "https://cse.google.com/cse?cx=011081986282915606282:w8bndhohpi0" 2894 | }, 2895 | { 2896 | "name": "OSINT Blogs Search Engine", 2897 | "url": "https://cse.google.com/cse?cx=fd4729049350a76d0" 2898 | } 2899 | ] 2900 | }, 2901 | { 2902 | "category": "NEWS", 2903 | "tools": [ 2904 | { 2905 | "name": "News Search Engine", 2906 | "url": "https://cse.google.com/cse?cx=013991603413798772546:fvmtax6anhd" 2907 | }, 2908 | { 2909 | "name": "Mailing List Archives Search Engine", 2910 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:sipriovnbxq" 2911 | }, 2912 | { 2913 | "name": "Google News", 2914 | "url": "https://news.google.com/" 2915 | }, 2916 | { 2917 | "name": "News Search", 2918 | "url": "https://upstract.com/search" 2919 | }, 2920 | { 2921 | "name": "Newslookup.com", 2922 | "url": "http://newslookup.com/" 2923 | }, 2924 | { 2925 | "name": "Welcome to Dealstrap!", 2926 | "url": "http://correctsearch.com/" 2927 | }, 2928 | { 2929 | "name": "Beautiful News", 2930 | "url": "https://informationisbeautiful.net/beautifulnews/" 2931 | }, 2932 | { 2933 | "name": "GoodGopher.com", 2934 | "url": "https://goodgopher.com/" 2935 | }, 2936 | { 2937 | "name": "Newsnow", 2938 | "url": "https://www.newsnow.co.uk/" 2939 | }, 2940 | { 2941 | "name": "Wintria", 2942 | "url": "http://www.wintria.com/" 2943 | }, 2944 | { 2945 | "name": "Mereku.com", 2946 | "url": "https://mereku.com/" 2947 | }, 2948 | { 2949 | "name": "Newspapers.com", 2950 | "url": "https://www.newspapers.com/" 2951 | }, 2952 | { 2953 | "name": "Newspaper Archive", 2954 | "url": "https://www.gastearsivi.com/en/" 2955 | }, 2956 | { 2957 | "name": "Talkwalker", 2958 | "url": "https://www.talkwalker.com/alerts", 2959 | "description": "Google Alerts alternative. The best and free alerts service with Twitter results" 2960 | }, 2961 | { 2962 | "name": "Google Alerts", 2963 | "url": "https://www.google.com/alerts" 2964 | }, 2965 | { 2966 | "name": "Paperball.news", 2967 | "url": "https://paperball.news/" 2968 | }, 2969 | { 2970 | "name": "Hoaxy: How claims spread online", 2971 | "url": "https://hoaxy.osome.iu.edu/" 2972 | }, 2973 | { 2974 | "name": "Snopes", 2975 | "url": "https://www.snopes.com/?s=" 2976 | }, 2977 | { 2978 | "name": "ReviewMeta", 2979 | "url": "https://reviewmeta.com/" 2980 | }, 2981 | { 2982 | "name": "Verification Handbook", 2983 | "url": "https://datajournalism.com/read/handbook/verification-1" 2984 | }, 2985 | { 2986 | "name": "Truth or Fiction", 2987 | "url": "https://www.truthorfiction.com/" 2988 | }, 2989 | { 2990 | "name": "Debunking False Stories Archives", 2991 | "url": "https://www.factcheck.org/fake-news/" 2992 | }, 2993 | { 2994 | "name": "Fact-Checking", 2995 | "url": "https://reporterslab.org/fact-checking/" 2996 | } 2997 | ] 2998 | }, 2999 | { 3000 | "category": "SEARCH ENGINES", 3001 | "tools": [ 3002 | { 3003 | "name": "IntelTechniques Search Engine", 3004 | "url": "https://inteltechniques.com/tools/Search.html" 3005 | }, 3006 | { 3007 | "name": "Google Advanced Search", 3008 | "url": "https://www.google.com/advanced_search" 3009 | }, 3010 | { 3011 | "name": "Searx", 3012 | "url": "https://searx.info/" 3013 | }, 3014 | { 3015 | "name": "Bing", 3016 | "url": "https://www.bing.com/" 3017 | }, 3018 | { 3019 | "name": "Yandex", 3020 | "url": "https://yandex.com/" 3021 | }, 3022 | { 3023 | "name": "MetaGer: Privacy Protected Search", 3024 | "url": "https://metager3.de/en/" 3025 | }, 3026 | { 3027 | "name": "Duck Duck Go", 3028 | "url": "https://duckduckgo.com/" 3029 | }, 3030 | { 3031 | "name": "Search Engines Index", 3032 | "url": "https://www.searchenginesindex.com/", 3033 | "description": "Search Engines in all countries in the world" 3034 | }, 3035 | { 3036 | "name": "carrot2", 3037 | "url": "https://search.carrot2.org/#/search/web" 3038 | }, 3039 | { 3040 | "name": "Qwant", 3041 | "url": "https://www.qwant.com/" 3042 | }, 3043 | { 3044 | "name": "Startpage", 3045 | "url": "https://startpage.com/" 3046 | }, 3047 | { 3048 | "name": "Mailing List Search", 3049 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:sipriovnbxq" 3050 | }, 3051 | { 3052 | "name": "swisscows", 3053 | "url": "https://swisscows.com/" 3054 | }, 3055 | { 3056 | "name": "Crossref", 3057 | "url": "https://search.crossref.org/" 3058 | }, 3059 | { 3060 | "name": "Brave Search", 3061 | "url": "https://search.brave.com/" 3062 | }, 3063 | { 3064 | "name": "Mojeek", 3065 | "url": "https://www.mojeek.com/" 3066 | }, 3067 | { 3068 | "name": "Yahoo Search", 3069 | "url": "https://search.yahoo.com/" 3070 | }, 3071 | { 3072 | "name": "Baidu", 3073 | "url": "https://www.baidu.com/" 3074 | }, 3075 | { 3076 | "name": "Ecosia", 3077 | "url": "https://www.ecosia.org/" 3078 | }, 3079 | { 3080 | "name": "Dogpile", 3081 | "url": "https://www.dogpile.com/" 3082 | }, 3083 | { 3084 | "name": "Zoo Search", 3085 | "url": "https://www.metacrawler.com/" 3086 | }, 3087 | { 3088 | "name": "App Store and iTunes search engine", 3089 | "url": "https://fnd.io/" 3090 | }, 3091 | { 3092 | "name": "Ask", 3093 | "url": "https://www.search.ask.com/" 3094 | }, 3095 | { 3096 | "name": "ZorexEye", 3097 | "url": "http://zorexeye.com/" 3098 | }, 3099 | { 3100 | "name": "Yassen.com", 3101 | "url": "http://yassen.com/" 3102 | }, 3103 | { 3104 | "name": "Flippity", 3105 | "url": "https://www.flippity.com/" 3106 | }, 3107 | { 3108 | "name": "keys.openpgp.org", 3109 | "url": "https://keys.openpgp.org/" 3110 | }, 3111 | { 3112 | "name": "MIT PGP Key Server", 3113 | "url": "https://pgp.mit.edu/" 3114 | }, 3115 | { 3116 | "name": "Ipse.io", 3117 | "url": "https://www.ipse.io/" 3118 | }, 3119 | { 3120 | "name": "Ipfs-search.com", 3121 | "url": "https://ipfs-search.com/#/search" 3122 | }, 3123 | { 3124 | "name": "Debate.cards", 3125 | "url": "http://debate.cards/" 3126 | }, 3127 | { 3128 | "name": "Argumentsearch.com", 3129 | "url": "http://argumentsearch.com/" 3130 | }, 3131 | { 3132 | "name": "Meganzsearch.com", 3133 | "url": "https://www.meganzsearch.com/" 3134 | }, 3135 | { 3136 | "name": "Engine.presearch.org", 3137 | "url": "https://engine.presearch.org/" 3138 | }, 3139 | { 3140 | "name": "Blockscan.com", 3141 | "url": "https://blockscan.com/" 3142 | }, 3143 | { 3144 | "name": "Publc.com", 3145 | "url": "https://publc.com/" 3146 | }, 3147 | { 3148 | "name": "GoPit Search Engine - Home", 3149 | "url": "https://www.gopit.com/socialsearch/index.php?type=Social" 3150 | }, 3151 | { 3152 | "name": "The best document search engine", 3153 | "url": "http://www.doc-txt.com/" 3154 | }, 3155 | { 3156 | "name": "CachedViews.com", 3157 | "url": "https://cachedviews.com/" 3158 | }, 3159 | { 3160 | "name": "MAC Address Lookup", 3161 | "url": "https://maclookup.app/" 3162 | }, 3163 | { 3164 | "name": "sploitus", 3165 | "url": "https://sploitus.com/" 3166 | }, 3167 | { 3168 | "name": "https://vulmon.com/", 3169 | "url": "https://vulmon.com/" 3170 | }, 3171 | { 3172 | "name": "Vulnerability & Exploit Database", 3173 | "url": "https://www.rapid7.com/db/" 3174 | }, 3175 | { 3176 | "name": "Recon", 3177 | "url": "http://recon222tttn4ob7ujdhbn3s4gjre7netvzybuvbq2bcqwltkiqinhad.onion.pet/" 3178 | }, 3179 | { 3180 | "name": "Google & Bing", 3181 | "url": "https://one-plus.github.io/GoogleBing" 3182 | }, 3183 | { 3184 | "name": "Bookmarks", 3185 | "url": "https://one-plus.github.io/Bookmarks" 3186 | }, 3187 | { 3188 | "name": "Boardreader - Forum Search", 3189 | "url": "https://boardreader.com/" 3190 | }, 3191 | { 3192 | "name": "Libgen.rs", 3193 | "url": "http://libgen.rs/" 3194 | }, 3195 | { 3196 | "name": "Stacksearch", 3197 | "url": "https://stacksear.ch/" 3198 | }, 3199 | { 3200 | "name": "SearchTempest", 3201 | "url": "https://www.searchtempest.com/" 3202 | }, 3203 | { 3204 | "name": "2lingual", 3205 | "url": "https://2lingual.com/" 3206 | }, 3207 | { 3208 | "name": "SEQE - Search Engines Query Engine", 3209 | "url": "https://seqe.me/" 3210 | }, 3211 | { 3212 | "name": "Milled", 3213 | "url": "https://milled.com/search" 3214 | }, 3215 | { 3216 | "name": "btdig", 3217 | "url": "https://btdig.com/" 3218 | }, 3219 | { 3220 | "name": "Osint Open Source Projects", 3221 | "url": "https://awesomeopensource.com/projects/osint" 3222 | }, 3223 | { 3224 | "name": "Monster Crawler Search", 3225 | "url": "http://monstercrawler.com/" 3226 | }, 3227 | { 3228 | "name": "Arabo.com", 3229 | "url": "http://arabo.com/" 3230 | }, 3231 | { 3232 | "name": "Google Scholar", 3233 | "url": "https://scholar.google.com/" 3234 | }, 3235 | { 3236 | "name": "Million Short", 3237 | "url": "https://millionshort.com/" 3238 | }, 3239 | { 3240 | "name": "BeVigil", 3241 | "url": "https://bevigil.com/" 3242 | }, 3243 | { 3244 | "name": "WordPress.com", 3245 | "url": "https://en.search.wordpress.com/" 3246 | }, 3247 | { 3248 | "name": "Octosearch.dootech.com", 3249 | "url": "https://octosearch.dootech.com/" 3250 | }, 3251 | { 3252 | "name": "Search craigslist", 3253 | "url": "http://searchcraigslist.org/" 3254 | }, 3255 | { 3256 | "name": "Public AWS S3 & Azure Search", 3257 | "url": "https://buckets.grayhatwarfare.com/" 3258 | }, 3259 | { 3260 | "name": "Public Buckets", 3261 | "url": "https://osint.sh/buckets/" 3262 | }, 3263 | { 3264 | "name": "URL Shorteners Search", 3265 | "url": "https://shorteners.grayhatwarfare.com/" 3266 | }, 3267 | { 3268 | "name": "Mywoodle.com", 3269 | "url": "https://mywoodle.com/" 3270 | }, 3271 | { 3272 | "name": "Search Atlas", 3273 | "url": "https://searchatlas.org/" 3274 | }, 3275 | { 3276 | "name": "Google to search profiles on Stack Overflow", 3277 | "url": "https://recruitin.net/stackoverflow.php" 3278 | }, 3279 | { 3280 | "name": "Binparcel.com", 3281 | "url": "https://binparcel.com/" 3282 | } 3283 | ] 3284 | }, 3285 | { 3286 | "category": "GOOGLE CSE", 3287 | "tools": [ 3288 | { 3289 | "name": "Homepage Search Engine", 3290 | "url": "https://cse.google.com/cse?cx=005797772976587943970:3tu7im1-rdg#gsc.tab=0" 3291 | }, 3292 | { 3293 | "name": "Amazon Cloud Search Engine", 3294 | "url": "https://cse.google.com/cse?cx=005797772976587943970:g-6ohngosio#gsc.tab=0" 3295 | }, 3296 | { 3297 | "name": "Google CSE instances Search Engine", 3298 | "url": "https://cse.google.com/cse?cx=009462381166450434430:vggeu3dhhgg#gsc.tab=0" 3299 | }, 3300 | { 3301 | "name": "Robots.txt Search Engine", 3302 | "url": "https://cse.google.com/cse?cx=013991603413798772546:zu7epjqvunu" 3303 | }, 3304 | { 3305 | "name": "Short URL Search Engine", 3306 | "url": "https://cse.google.com/cse?cx=017261104271573007538:magh-vr6t6g#gsc.tab=0" 3307 | }, 3308 | { 3309 | "name": "Wikispaces Search Engine", 3310 | "url": "https://cse.google.com/cse/publicurl?cx=005797772976587943970:afbre9pr2ly" 3311 | }, 3312 | { 3313 | "name": "Dog Bites Search Engine", 3314 | "url": "https://cse.google.com/cse?cx=partner-pub-8216357153102971:3267723418" 3315 | }, 3316 | { 3317 | "name": "Google Domain Hacker", 3318 | "url": "https://cse.google.com/cse/publicurl?cx=005797772976587943970:ca2hiy6hmri" 3319 | }, 3320 | { 3321 | "name": "Google Drive Folder Search Engine", 3322 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:nwzqlcysx_w" 3323 | }, 3324 | { 3325 | "name": "Chrome Extension Archive Search Engine", 3326 | "url": "https://cse.google.com/cse/publicurl?cx=000501358716561852263:h-5uyshsclq" 3327 | }, 3328 | { 3329 | "name": "Github with Awesome-List Search Engine", 3330 | "url": "https://cse.google.com/cse/publicurl?cx=017261104271573007538:fqn_jyftcdq" 3331 | }, 3332 | { 3333 | "name": "Better Chrome Web Store Search Engine", 3334 | "url": "https://cse.google.com/cse/publicurl?cx=006205189065513216365:pn3lumi80ne" 3335 | }, 3336 | { 3337 | "name": "App Store Custom Search Engine", 3338 | "url": "https://cse.google.com/cse/publicurl?cx=006205189065513216365:aqogom-kfne" 3339 | }, 3340 | { 3341 | "name": "*.Google.com Hack Attack", 3342 | "url": "https://cse.google.com/cse/publicurl?cx=017648920863780530960:lddgpbzqgoi" 3343 | }, 3344 | { 3345 | "name": "Search by FileType", 3346 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:mu-oio3a980" 3347 | }, 3348 | { 3349 | "name": "Search Engine Finder", 3350 | "url": "https://cse.google.com/cse?cx=016621447308871563343:nyvaorurd5l" 3351 | }, 3352 | { 3353 | "name": "Mindmap Search Engine", 3354 | "url": "http://cse.google.com/cse?cx=013991603413798772546:gj6rx9spox8#gsc.tab=0" 3355 | }, 3356 | { 3357 | "name": "Slack/Discord/Zoom Invites Search", 3358 | "url": "https://cse.google.com/cse?cx=8e26eca532ec2cba3" 3359 | }, 3360 | { 3361 | "name": "Cloud Bucket Search Engine", 3362 | "url": "https://cse.google.com/cse?cx=d80f8518b11b1438e" 3363 | } 3364 | ] 3365 | }, 3366 | { 3367 | "category": "IMAGE / VIDEO / AUDIO / MEDIA", 3368 | "tools": [ 3369 | { 3370 | "name": "Facecheck.id", 3371 | "url": "https://facecheck.id/" 3372 | }, 3373 | { 3374 | "name": "Google Images", 3375 | "url": "https://images.google.com/" 3376 | }, 3377 | { 3378 | "name": "Yandex Images", 3379 | "url": "https://yandex.com/images/" 3380 | }, 3381 | { 3382 | "name": "Bing Images", 3383 | "url": "https://www.bing.com/images" 3384 | }, 3385 | { 3386 | "name": "See it, search it", 3387 | "url": "https://www.bing.com/visualsearch", 3388 | "description": "Search the web using an image instead of text. Reverse image search engine. Search by image: Take a picture or upload one to find similar images and products. Identify landmarks, animals, even cele..." 3389 | }, 3390 | { 3391 | "name": "Images Search Engine", 3392 | "url": "https://cse.google.com/cse?cx=281566d4e61dcc05d" 3393 | }, 3394 | { 3395 | "name": "miniPaint", 3396 | "url": "https://viliusle.github.io/miniPaint/" 3397 | }, 3398 | { 3399 | "name": "PimEyes", 3400 | "url": "https://pimeyes.com/en/" 3401 | }, 3402 | { 3403 | "name": "TinEye", 3404 | "url": "https://tineye.com/" 3405 | }, 3406 | { 3407 | "name": "Findclone", 3408 | "url": "https://findclone.ru/" 3409 | }, 3410 | { 3411 | "name": "Tools", 3412 | "url": "https://intelx.io/tools?tab=image" 3413 | }, 3414 | { 3415 | "name": "Image Raider", 3416 | "url": "https://infringement.report/api/raider-reverse-image-search/" 3417 | }, 3418 | { 3419 | "name": "same.energy", 3420 | "url": "https://same.energy/" 3421 | }, 3422 | { 3423 | "name": "Baidu", 3424 | "url": "https://image.baidu.com/" 3425 | }, 3426 | { 3427 | "name": "Peteyvid.com", 3428 | "url": "https://www.peteyvid.com/" 3429 | }, 3430 | { 3431 | "name": "Free Music Search", 3432 | "url": "http://musgle.com/" 3433 | }, 3434 | { 3435 | "name": "Yahoo Image Search", 3436 | "url": "https://images.search.yahoo.com/images" 3437 | }, 3438 | { 3439 | "name": "Photo Album Finder", 3440 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:bldnx392j6u" 3441 | }, 3442 | { 3443 | "name": "Search for Music Using Your Voice", 3444 | "url": "https://www.midomi.com/" 3445 | }, 3446 | { 3447 | "name": "MyHeritage Photo Enhancer", 3448 | "url": "https://www.myheritage.com/photo-enhancer", 3449 | "description": "The MyHeritage Photo Enhancer uses deep learning technology to enhance photos by upscaling (increasing the resolution) the faces that appear in them. This produces exceptional results for historica..." 3450 | }, 3451 | { 3452 | "name": "Neural network image super-resolution and enhancement", 3453 | "url": "https://letsenhance.io/" 3454 | }, 3455 | { 3456 | "name": "SVG Editor", 3457 | "url": "https://svg-edit.github.io/svgedit/" 3458 | }, 3459 | { 3460 | "name": "Pixsy", 3461 | "url": "https://www.pixsy.com/" 3462 | }, 3463 | { 3464 | "name": "FotoForensics", 3465 | "url": "https://fotoforensics.com/" 3466 | }, 3467 | { 3468 | "name": "Listen Notes", 3469 | "url": "https://www.listennotes.com/" 3470 | }, 3471 | { 3472 | "name": "image identify", 3473 | "url": "https://www.imageidentify.com/" 3474 | }, 3475 | { 3476 | "name": "EXIF Data Viewer", 3477 | "url": "http://exifdata.com/" 3478 | }, 3479 | { 3480 | "name": "jimpl.com", 3481 | "url": "https://jimpl.com/" 3482 | }, 3483 | { 3484 | "name": "Discover Podcasts Here!", 3485 | "url": "https://podsearch.com/" 3486 | }, 3487 | { 3488 | "name": "Pictures", 3489 | "url": "https://www.picsearch.com/" 3490 | }, 3491 | { 3492 | "name": "Background Removal Tool", 3493 | "url": "https://photoscissors.com/" 3494 | }, 3495 | { 3496 | "name": "Museo", 3497 | "url": "https://museo.app/" 3498 | }, 3499 | { 3500 | "name": "Diff Checker", 3501 | "url": "https://www.diffchecker.com/image-diff/" 3502 | }, 3503 | { 3504 | "name": "Forensically", 3505 | "url": "https://29a.ch/photo-forensics/#forensic-magnifier" 3506 | }, 3507 | { 3508 | "name": "Pictriev", 3509 | "url": "http://pictriev.com/" 3510 | }, 3511 | { 3512 | "name": "facesaerch", 3513 | "url": "http://www.facesaerch.com/" 3514 | }, 3515 | { 3516 | "name": "WhatTheFont", 3517 | "url": "https://www.myfonts.com/WhatTheFont/" 3518 | }, 3519 | { 3520 | "name": "Sogou", 3521 | "url": "https://pic.sogou.com/" 3522 | }, 3523 | { 3524 | "name": "Pixabay", 3525 | "url": "https://pixabay.com/images/search/" 3526 | }, 3527 | { 3528 | "name": "tidder.xyz", 3529 | "url": "http://tidder.xyz/" 3530 | }, 3531 | { 3532 | "name": "hue.tools", 3533 | "url": "https://hue.tools/" 3534 | }, 3535 | { 3536 | "name": "ExifTool", 3537 | "url": "https://exiftool.org/", 3538 | "description": "Swiss-army metadata parser supporting EXIF, IPTC, XMP, and GPS tags for forensic workflows." 3539 | } 3540 | ] 3541 | }, 3542 | { 3543 | "category": "LICENSE PLATE / VIN / VEHICLE", 3544 | "tools": [ 3545 | { 3546 | "name": "Plate Recognizer", 3547 | "url": "https://platerecognizer.com/" 3548 | }, 3549 | { 3550 | "name": "License Plates of the World", 3551 | "url": "http://www.worldlicenseplates.com/" 3552 | }, 3553 | { 3554 | "name": "VIN decoder", 3555 | "url": "http://www.vindecoderz.com/" 3556 | }, 3557 | { 3558 | "name": "Poctra.com", 3559 | "url": "https://poctra.com/" 3560 | }, 3561 | { 3562 | "name": "FAXVIN", 3563 | "url": "https://www.faxvin.com/" 3564 | }, 3565 | { 3566 | "name": "AutoCheck", 3567 | "url": "https://www.autocheck.com/" 3568 | }, 3569 | { 3570 | "name": "VIN Lookup", 3571 | "url": "https://thatsthem.com/vin-lookup" 3572 | }, 3573 | { 3574 | "name": "VINCheck®", 3575 | "url": "https://www.nicb.org/vincheck" 3576 | }, 3577 | { 3578 | "name": "Autogespot", 3579 | "url": "https://www.autogespot.us/spots" 3580 | }, 3581 | { 3582 | "name": "Nomerogram.ru", 3583 | "url": "https://www.nomerogram.ru/" 3584 | }, 3585 | { 3586 | "name": "COSINT – OSINT on Cars", 3587 | "url": "https://osintcurio.us/2021/02/17/cosint-osint-on-cars/" 3588 | }, 3589 | { 3590 | "name": "🚗License Plates in Canada 🇨🇦", 3591 | "url": "https://www.google.com/maps/d/viewer?mid=1zXYL2BF2MByEduLzYN5brVnli9J3cIlv" 3592 | }, 3593 | { 3594 | "name": "Carnet.ai", 3595 | "url": "https://carnet.ai/" 3596 | }, 3597 | { 3598 | "name": "Car/Vehicle Model Recognition Online", 3599 | "url": "https://carmodel.toolpie.com/" 3600 | }, 3601 | { 3602 | "name": "Tools", 3603 | "url": "https://intelx.io/tools?tab=vin" 3604 | }, 3605 | { 3606 | "name": "VIN Check Reports", 3607 | "url": "https://vincheck.info/check/vin-check.php" 3608 | }, 3609 | { 3610 | "name": "VIN Decoder", 3611 | "url": "https://vindecoder.pl/" 3612 | }, 3613 | { 3614 | "name": "autodna", 3615 | "url": "https://www.autodna.com/" 3616 | }, 3617 | { 3618 | "name": "VIN decoder", 3619 | "url": "https://www.vindecoder.net/" 3620 | }, 3621 | { 3622 | "name": "Orto.website", 3623 | "url": "https://orto.website/" 3624 | }, 3625 | { 3626 | "name": "Europlates.eu", 3627 | "url": "https://www.europlates.eu/" 3628 | }, 3629 | { 3630 | "name": "How's My Driving NY", 3631 | "url": "https://www.howsmydrivingny.nyc/" 3632 | }, 3633 | { 3634 | "name": "Deciphering Number Plates", 3635 | "url": "https://www.skoda-storyboard.com/en/series/deciphering-number-plates/" 3636 | }, 3637 | { 3638 | "name": "VIN Decoder & Lookup", 3639 | "url": "https://driving-tests.org/vin-decoder/" 3640 | }, 3641 | { 3642 | "name": "Check Any VIN", 3643 | "url": "https://www.vehiclehistory.com/license-plate-search" 3644 | }, 3645 | { 3646 | "name": "Partial Number Plate Search", 3647 | "url": "https://www.partialnumberplate.co.uk/" 3648 | }, 3649 | { 3650 | "name": "License Plate Lookup", 3651 | "url": "https://www.searchquarry.com/free-license-plate-number-lookup/" 3652 | }, 3653 | { 3654 | "name": "Vehicle Enquiry", 3655 | "url": "https://vehicleenquiry.service.gov.uk/?locale=en" 3656 | }, 3657 | { 3658 | "name": "Number Plate Check", 3659 | "url": "https://www.checkcardetails.co.uk/number-plate-check" 3660 | }, 3661 | { 3662 | "name": "License Plate Lookup", 3663 | "url": "https://findbyplate.com/" 3664 | } 3665 | ] 3666 | }, 3667 | { 3668 | "category": "FLIGHT TRACKER", 3669 | "tools": [ 3670 | { 3671 | "name": "FlightAirMap", 3672 | "url": "https://www.flightairmap.com/" 3673 | }, 3674 | { 3675 | "name": "ADS-B Exchange", 3676 | "url": "https://globe.adsbexchange.com/" 3677 | }, 3678 | { 3679 | "name": "Icarus.flights", 3680 | "url": "https://icarus.flights/" 3681 | }, 3682 | { 3683 | "name": "FlightAware", 3684 | "url": "https://flightaware.com/" 3685 | }, 3686 | { 3687 | "name": "Flightradar24", 3688 | "url": "https://www.flightradar24.com/" 3689 | }, 3690 | { 3691 | "name": "Live Air Traffic Control", 3692 | "url": "https://www.liveatc.net/" 3693 | }, 3694 | { 3695 | "name": "Planespotters.net", 3696 | "url": "https://www.planespotters.net/" 3697 | }, 3698 | { 3699 | "name": "Skyscanner", 3700 | "url": "https://www.skyscanner.com/" 3701 | }, 3702 | { 3703 | "name": "RadarBox", 3704 | "url": "https://www.radarbox.com/" 3705 | }, 3706 | { 3707 | "name": "ICAO Civil and Military airspace SUASHP", 3708 | "url": "https://www.arcgis.com/apps/webappviewer/index.html?id=5db021bcb221498f81be055b3e238bf8" 3709 | } 3710 | ] 3711 | }, 3712 | { 3713 | "category": "MARITIME", 3714 | "tools": [ 3715 | { 3716 | "name": "Marine Traffic", 3717 | "url": "https://www.marinetraffic.com/", 3718 | "description": "MarineTraffic Live Ships Map. Discover information and vessel positions for vessels around the world. Search the MarineTraffic ships database of more than 550000 active and decommissioned vessels. ..." 3719 | }, 3720 | { 3721 | "name": "VesselFinder", 3722 | "url": "https://www.vesselfinder.com/" 3723 | }, 3724 | { 3725 | "name": "FlightAirMap", 3726 | "url": "https://www.flightairmap.com/" 3727 | }, 3728 | { 3729 | "name": "OSINT on the Ocean", 3730 | "url": "https://wondersmithrae.medium.com/osint-on-the-ocean-maritime-intelligence-gathering-techniques-2ee39e554fe1" 3731 | }, 3732 | { 3733 | "name": "ShipAIS.uk", 3734 | "url": "https://shipais.uk/" 3735 | }, 3736 | { 3737 | "name": "FleetMon", 3738 | "url": "https://www.fleetmon.com/" 3739 | }, 3740 | { 3741 | "name": "AIS Ships Map", 3742 | "url": "https://www.shipfinder.com/Monitor/Index" 3743 | }, 3744 | { 3745 | "name": "Ais.boatnerd.com", 3746 | "url": "https://ais.boatnerd.com/" 3747 | }, 3748 | { 3749 | "name": "Live Cruise Ship Tracker", 3750 | "url": "https://www.livecruiseshiptracker.com/" 3751 | }, 3752 | { 3753 | "name": "ShippingExplorer", 3754 | "url": "https://www.shippingexplorer.net/en/map" 3755 | }, 3756 | { 3757 | "name": "SUBMARINE TRACKER", 3758 | "url": "https://www.marinevesseltraffic.com/submarine-vessels-tracking-map" 3759 | }, 3760 | { 3761 | "name": "Maritime Awareness Project", 3762 | "url": "https://map.nbr.org/interactivemap/" 3763 | }, 3764 | { 3765 | "name": "Shipping Database", 3766 | "url": "https://theshippingdatabase.com/" 3767 | }, 3768 | { 3769 | "name": "Crewlist.org.uk", 3770 | "url": "https://www.crewlist.org.uk/#Data" 3771 | }, 3772 | { 3773 | "name": "Live Piracy Map", 3774 | "url": "https://www.icc-ccs.org/piracy-reporting-centre/live-piracy-map" 3775 | }, 3776 | { 3777 | "name": "Military Ship Tracker", 3778 | "url": "https://www.marinevesseltraffic.com/2013/02/military-ship-track.html" 3779 | }, 3780 | { 3781 | "name": "Container Tracking", 3782 | "url": "http://container-tracking.org/" 3783 | }, 3784 | { 3785 | "name": "Container tracking", 3786 | "url": "https://www.track-trace.com/container" 3787 | }, 3788 | { 3789 | "name": "Maersk Tracking", 3790 | "url": "https://www.maersk.com/tracking/" 3791 | }, 3792 | { 3793 | "name": "Global Fishing Watch", 3794 | "url": "https://globalfishingwatch.org/map/", 3795 | "description": "Interactive map visualizing AIS data to expose fishing activity, transshipments, and port visits." 3796 | } 3797 | ] 3798 | }, 3799 | { 3800 | "category": "DORKING", 3801 | "tools": [ 3802 | { 3803 | "name": "DorkSearch", 3804 | "url": "https://dorksearch.com/" 3805 | }, 3806 | { 3807 | "name": "Google Dork Cheatsheet", 3808 | "url": "https://github.com/robyfirnandoyusuf/Google-Dork-Cheatsheet" 3809 | }, 3810 | { 3811 | "name": "Google Hacking Database", 3812 | "url": "https://www.exploit-db.com/google-hacking-database" 3813 | }, 3814 | { 3815 | "name": "theHarvester", 3816 | "url": "https://pypi.org/project/theHarvester/" 3817 | }, 3818 | { 3819 | "name": "metagoofil", 3820 | "url": "https://github.com/opsdisk/metagoofil", 3821 | "description": "metagoofil searches Google for specific types of files being publicly hosted on a web site and optionally downloads them to your local box." 3822 | }, 3823 | { 3824 | "name": "webdork", 3825 | "url": "https://github.com/HACKE-RC/webdork", 3826 | "description": "A Python tool to automate some dorking stuff to find information disclosures." 3827 | }, 3828 | { 3829 | "name": "ATSCAN", 3830 | "url": "https://github.com/AlisamTechnology/ATSCAN" 3831 | }, 3832 | { 3833 | "name": "pagodo", 3834 | "url": "https://github.com/opsdisk/pagodo", 3835 | "description": "automates Google searching for potentially vulnerable web pages and applications on the Internet." 3836 | } 3837 | ] 3838 | }, 3839 | { 3840 | "category": "OPEN DIRECTORY", 3841 | "tools": [ 3842 | { 3843 | "name": "FilePhish", 3844 | "url": "https://cartographia.github.io/FilePhish/" 3845 | }, 3846 | { 3847 | "name": "Open Directory Finder", 3848 | "url": "https://odfinder.github.io/" 3849 | }, 3850 | { 3851 | "name": "Filetype search tool", 3852 | "url": "https://www.aware-online.com/en/osint-tools/filetype-search-tool/" 3853 | }, 3854 | { 3855 | "name": "Opendirsearch.abifog.com", 3856 | "url": "https://opendirsearch.abifog.com/" 3857 | }, 3858 | { 3859 | "name": "Archive-it.org", 3860 | "url": "https://archive-it.org/" 3861 | }, 3862 | { 3863 | "name": "Odcrawler.xyz", 3864 | "url": "https://odcrawler.xyz/" 3865 | }, 3866 | { 3867 | "name": "Google Docs CSE", 3868 | "url": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:rse-4irjrn8#gsc.tab=0" 3869 | }, 3870 | { 3871 | "name": "Documents Search Engine", 3872 | "url": "https://cse.google.com/cse?cx=e6756edc507bcfa91" 3873 | }, 3874 | { 3875 | "name": "Cybersec Documents Search Engine", 3876 | "url": "https://cse.google.com/cse?cx=013991603413798772546:ekjmizm8vus#gsc.tab=0" 3877 | }, 3878 | { 3879 | "name": "GoogleDrive Search Engine", 3880 | "url": "https://cse.google.com/cse?cx=c64ba311eb8c31896" 3881 | }, 3882 | { 3883 | "name": "SlideShare Search Engine", 3884 | "url": "https://cse.google.com/cse?cx=465eeeb114c7f523f" 3885 | }, 3886 | { 3887 | "name": "Document Search", 3888 | "url": "https://one-plus.github.io/DocumentSearch" 3889 | }, 3890 | { 3891 | "name": "FONETASK", 3892 | "url": "http://fonetask.com/" 3893 | }, 3894 | { 3895 | "name": "Web archive search tool", 3896 | "url": "https://www.aware-online.com/osint-tools/web-archive-search-tool/" 3897 | }, 3898 | { 3899 | "name": "Pdfsearch.io", 3900 | "url": "https://www.pdfsearch.io/" 3901 | }, 3902 | { 3903 | "name": "awesome-public-datasets", 3904 | "url": "https://github.com/awesomedata/awesome-public-datasets" 3905 | }, 3906 | { 3907 | "name": "Drivesearch.kwebpia.net", 3908 | "url": "http://drivesearch.kwebpia.net/" 3909 | }, 3910 | { 3911 | "name": "Filepursuit.com", 3912 | "url": "https://filepursuit.com/" 3913 | }, 3914 | { 3915 | "name": "Filechef.com", 3916 | "url": "https://www.filechef.com/" 3917 | }, 3918 | { 3919 | "name": "Open Directory Search", 3920 | "url": "http://eyeofjustice.com/od/" 3921 | }, 3922 | { 3923 | "name": "Mamont's open FTP Index", 3924 | "url": "https://www.mmnt.net/" 3925 | }, 3926 | { 3927 | "name": "LENDX", 3928 | "url": "http://lendx.org/" 3929 | }, 3930 | { 3931 | "name": "Direct Download Almost Anything", 3932 | "url": "https://ewasion.github.io/opendirectory-finder/" 3933 | } 3934 | ] 3935 | }, 3936 | { 3937 | "category": "DATASET", 3938 | "tools": [ 3939 | { 3940 | "name": "Data Sets - OH SHINT", 3941 | "url": "https://ohshint.gitbook.io/oh-shint-its-a-blog/osint-web-resources/data-sets" 3942 | }, 3943 | { 3944 | "name": "Datasetsearch.research.google.com", 3945 | "url": "https://datasetsearch.research.google.com/" 3946 | }, 3947 | { 3948 | "name": "Kaggle", 3949 | "url": "https://www.kaggle.com/search?q=" 3950 | }, 3951 | { 3952 | "name": "Databasd", 3953 | "url": "https://databasd.com/" 3954 | }, 3955 | { 3956 | "name": "Data.gov", 3957 | "url": "https://www.data.gov/" 3958 | }, 3959 | { 3960 | "name": "data.world", 3961 | "url": "https://data.world/" 3962 | }, 3963 | { 3964 | "name": "BigQuery public datasets", 3965 | "url": "https://cloud.google.com/bigquery/public-data/" 3966 | }, 3967 | { 3968 | "name": "Ariadne2.isti.cnr.it", 3969 | "url": "http://ariadne2.isti.cnr.it/" 3970 | }, 3971 | { 3972 | "name": "DSC Data Science Search Engine", 3973 | "url": "https://www.datasciencecentral.com/page/search" 3974 | }, 3975 | { 3976 | "name": "Datasetlist.com", 3977 | "url": "https://www.datasetlist.com/" 3978 | }, 3979 | { 3980 | "name": "Search Datasets", 3981 | "url": "https://datahub.io/search" 3982 | }, 3983 | { 3984 | "name": "OpenData by Socrata", 3985 | "url": "https://opendata.socrata.com/" 3986 | }, 3987 | { 3988 | "name": "Opensanctions.org", 3989 | "url": "https://opensanctions.org/" 3990 | }, 3991 | { 3992 | "name": "FiveThirtyEight", 3993 | "url": "https://fivethirtyeight.com/?s=" 3994 | }, 3995 | { 3996 | "name": "OCCRP Aleph", 3997 | "url": "https://aleph.occrp.org/", 3998 | "description": "Investigation dashboard indexing leaks, corporate records, sanctions, and PEP files from OCCRP and partners." 3999 | }, 4000 | { 4001 | "name": "GDELT Project", 4002 | "url": "https://www.gdeltproject.org/", 4003 | "description": "Global database capturing news events, tone, and imagery with downloadable datasets and live API endpoints." 4004 | } 4005 | ] 4006 | }, 4007 | { 4008 | "category": "SOURCE CODES", 4009 | "tools": [ 4010 | { 4011 | "name": "Pastes Search Engine", 4012 | "url": "https://cse.google.com/cse?cx=661713d0371832a02" 4013 | }, 4014 | { 4015 | "name": "Pastes Search Engine 2", 4016 | "url": "https://cse.google.com/cse?cx=006896442834264595052:fawrl1rug9e" 4017 | }, 4018 | { 4019 | "name": "GitHub Search Engine", 4020 | "url": "https://cse.google.com/cse?cx=1b053c8ec746d6611" 4021 | }, 4022 | { 4023 | "name": "Source Code Search Engine", 4024 | "url": "https://publicwww.com/" 4025 | }, 4026 | { 4027 | "name": "Google to search profiles on GitHub", 4028 | "url": "https://recruitin.net/github.php" 4029 | }, 4030 | { 4031 | "name": "Grep.app", 4032 | "url": "https://grep.app/", 4033 | "description": "Search across a half million git repos" 4034 | }, 4035 | { 4036 | "name": "NerdyData", 4037 | "url": "https://www.nerdydata.com/" 4038 | }, 4039 | { 4040 | "name": "Paste Search", 4041 | "url": "https://psbdmp.ws/" 4042 | }, 4043 | { 4044 | "name": "GitHub Code Search", 4045 | "url": "https://github.com/search" 4046 | }, 4047 | { 4048 | "name": "Bitbucket Repo Search", 4049 | "url": "https://bitbucket.org/repo/all/" 4050 | }, 4051 | { 4052 | "name": "Shhgit", 4053 | "url": "https://github.com/eth0izzle/shhgit", 4054 | "description": "We help secure forward-thinking development, operations, and security teams by finding secrets across their code before it leads to a security breach." 4055 | }, 4056 | { 4057 | "name": "git-hound", 4058 | "url": "https://github.com/tillson/git-hound" 4059 | }, 4060 | { 4061 | "name": "Webfinery | Source Code Search", 4062 | "url": "https://webfinery.com/search" 4063 | }, 4064 | { 4065 | "name": "Online IDE and Paste Search Engine", 4066 | "url": "https://redhuntlabs.com/online-ide-search" 4067 | }, 4068 | { 4069 | "name": "searchcode", 4070 | "url": "https://searchcode.com/", 4071 | "description": "Search 75 billion lines of code from 40 million projects" 4072 | }, 4073 | { 4074 | "name": "Sourcegraph", 4075 | "url": "https://about.sourcegraph.com/" 4076 | }, 4077 | { 4078 | "name": "Awesome Open Source", 4079 | "url": "https://awesomeopensource.com/" 4080 | }, 4081 | { 4082 | "name": "Awesome-indexed", 4083 | "url": "http://awesome-indexed.mathew-davies.co.uk/" 4084 | }, 4085 | { 4086 | "name": "Awesomelists.top", 4087 | "url": "http://dev.awesomelists.top/#/" 4088 | }, 4089 | { 4090 | "name": "Zen", 4091 | "url": "https://github.com/s0md3v/Zen" 4092 | }, 4093 | { 4094 | "name": "GitDorker", 4095 | "url": "https://github.com/obheda12/GitDorker" 4096 | }, 4097 | { 4098 | "name": "PublicWWW", 4099 | "url": "https://publicwww.com/", 4100 | "description": "Source-code search engine to locate tracking codes, technologies, or snippets across websites." 4101 | } 4102 | ] 4103 | }, 4104 | { 4105 | "category": "WHOIS", 4106 | "tools": [ 4107 | { 4108 | "name": "WHOIS Service", 4109 | "url": "https://whoismind.com/" 4110 | }, 4111 | { 4112 | "name": "Whois Search", 4113 | "url": "https://webwhois.verisign.com/webwhois-ui/index.jsp?language=en_US" 4114 | }, 4115 | { 4116 | "name": "Who.is", 4117 | "url": "https://who.is/" 4118 | }, 4119 | { 4120 | "name": "Whoxy", 4121 | "url": "https://www.whoxy.com/" 4122 | }, 4123 | { 4124 | "name": "Whois History", 4125 | "url": "https://osint.sh/whoishistory/" 4126 | } 4127 | ] 4128 | }, 4129 | { 4130 | "category": "DOMAIN / IP / DNS", 4131 | "tools": [ 4132 | { 4133 | "name": "domainbigdata", 4134 | "url": "https://domainbigdata.com/" 4135 | }, 4136 | { 4137 | "name": "Domain Codex", 4138 | "url": "https://www.domaincodex.com/search.php" 4139 | }, 4140 | { 4141 | "name": "dnslytics", 4142 | "url": "https://dnslytics.com/" 4143 | }, 4144 | { 4145 | "name": "SecurityTrails", 4146 | "url": "https://securitytrails.com/" 4147 | }, 4148 | { 4149 | "name": "Shodan", 4150 | "url": "https://www.shodan.io/", 4151 | "description": "Search engine indexing internet-connected devices with powerful filters for exposed services." 4152 | }, 4153 | { 4154 | "name": "Internetdb.shodan.io", 4155 | "url": "https://internetdb.shodan.io/" 4156 | }, 4157 | { 4158 | "name": "GreyNoise Intelligence", 4159 | "url": "https://www.greynoise.io/viz/" 4160 | }, 4161 | { 4162 | "name": "FOFA", 4163 | "url": "https://fofa.so/" 4164 | }, 4165 | { 4166 | "name": "zoomeye", 4167 | "url": "https://www.zoomeye.org/" 4168 | }, 4169 | { 4170 | "name": "Censys", 4171 | "url": "https://censys.io/domain" 4172 | }, 4173 | { 4174 | "name": "ViewDNS.info", 4175 | "url": "https://viewdns.info/" 4176 | }, 4177 | { 4178 | "name": "Internet Census 2012", 4179 | "url": "http://census2012.sourceforge.net/paper.html" 4180 | }, 4181 | { 4182 | "name": "ONYPHE", 4183 | "url": "https://www.onyphe.io/" 4184 | }, 4185 | { 4186 | "name": "IPLeak", 4187 | "url": "https://ipleak.net/", 4188 | "icon": "https://www.google.com/s2/favicons?domain=ipleak.net&sz=64" 4189 | }, 4190 | { 4191 | "name": "Censys Certificates", 4192 | "url": "https://censys.io/certificates" 4193 | }, 4194 | { 4195 | "name": "Censys IPv4", 4196 | "url": "https://censys.io/ipv4" 4197 | }, 4198 | { 4199 | "name": "Robtex", 4200 | "url": "https://www.robtex.com/" 4201 | }, 4202 | { 4203 | "name": "Website search tool", 4204 | "url": "https://www.aware-online.com/en/osint-tools/website-search-tool/" 4205 | }, 4206 | { 4207 | "name": "Wappalyzer", 4208 | "url": "https://www.wappalyzer.com/lookup/" 4209 | }, 4210 | { 4211 | "name": "photon", 4212 | "url": "https://pypi.org/project/photon/" 4213 | }, 4214 | { 4215 | "name": "Technology Lookup", 4216 | "url": "https://osint.sh/stack/" 4217 | }, 4218 | { 4219 | "name": "BuiltWith Technology Lookup", 4220 | "url": "https://builtwith.com/" 4221 | }, 4222 | { 4223 | "name": "NMAP Online", 4224 | "url": "https://osint.sh/nmap/" 4225 | }, 4226 | { 4227 | "name": "Nmap Checker Tool", 4228 | "url": "https://shadowcrypt.net/tools/nmap" 4229 | }, 4230 | { 4231 | "name": "Free online network tools", 4232 | "url": "https://centralops.net/co/" 4233 | }, 4234 | { 4235 | "name": "Google Transparency Report", 4236 | "url": "https://transparencyreport.google.com/https/certificates" 4237 | }, 4238 | { 4239 | "name": "Certificate Search", 4240 | "url": "https://osint.sh/crt/" 4241 | }, 4242 | { 4243 | "name": "CRT", 4244 | "url": "https://crt.sh/" 4245 | }, 4246 | { 4247 | "name": "LeakIX", 4248 | "url": "https://leakix.net/" 4249 | }, 4250 | { 4251 | "name": "DomainWatch", 4252 | "url": "https://domainwat.ch/" 4253 | }, 4254 | { 4255 | "name": "URL and website scanner", 4256 | "url": "https://urlscan.io/" 4257 | }, 4258 | { 4259 | "name": "dnsdumpster", 4260 | "url": "https://dnsdumpster.com/" 4261 | }, 4262 | { 4263 | "name": "SimilarWeb", 4264 | "url": "https://www.similarweb.com/" 4265 | }, 4266 | { 4267 | "name": "Alexa", 4268 | "url": "https://www.alexa.com/siteinfo" 4269 | }, 4270 | { 4271 | "name": "Website Information", 4272 | "url": "https://one-plus.github.io/WebsiteInformation" 4273 | }, 4274 | { 4275 | "name": "IP search - Network Entity Reputation Database", 4276 | "url": "https://nerd.cesnet.cz/nerd/ips/" 4277 | }, 4278 | { 4279 | "name": "Reverse Domain", 4280 | "url": "https://osint.sh/domain/" 4281 | }, 4282 | { 4283 | "name": "Poodle Check", 4284 | "url": "https://osint.sh/poodle/" 4285 | }, 4286 | { 4287 | "name": "Heartbleed Check", 4288 | "url": "https://osint.sh/heartbleed/" 4289 | }, 4290 | { 4291 | "name": "DNS History Lookup", 4292 | "url": "https://osint.sh/dnshistory/" 4293 | }, 4294 | { 4295 | "name": "Subdomain Finder", 4296 | "url": "https://osint.sh/subdomain/" 4297 | }, 4298 | { 4299 | "name": "Reverse IP Lookup", 4300 | "url": "https://osint.sh/reverseip/" 4301 | }, 4302 | { 4303 | "name": "Reverse Google Adsense", 4304 | "url": "https://osint.sh/adsense/" 4305 | }, 4306 | { 4307 | "name": "Reverse Google Analytics", 4308 | "url": "https://osint.sh/analytics/" 4309 | }, 4310 | { 4311 | "name": "Reverse MX Record", 4312 | "url": "https://osint.sh/reversemx/" 4313 | }, 4314 | { 4315 | "name": "IP GEO Location Lookup", 4316 | "url": "https://osint.sh/ip/" 4317 | }, 4318 | { 4319 | "name": "IANA — Root Zone Database", 4320 | "url": "https://www.iana.org/domains/root/db" 4321 | }, 4322 | { 4323 | "name": "Punkspider", 4324 | "url": "https://punkspider.org/" 4325 | }, 4326 | { 4327 | "name": "metabigor", 4328 | "url": "https://github.com/j3ssie/metabigor" 4329 | }, 4330 | { 4331 | "name": "Spyse", 4332 | "url": "https://spyse.com/" 4333 | }, 4334 | { 4335 | "name": "Netlas.io", 4336 | "url": "https://netlas.io/" 4337 | }, 4338 | { 4339 | "name": "dnstwist", 4340 | "url": "https://github.com/dnstwist/dnstwist", 4341 | "description": "Domain permutation engine to spot typosquats, phishing hosts, and brand impersonations." 4342 | }, 4343 | { 4344 | "name": "OWASP Amass", 4345 | "url": "https://github.com/owasp-amass/amass", 4346 | "description": "In-depth attack surface mapping with extensive passive and active subdomain enumeration modules." 4347 | }, 4348 | { 4349 | "name": "Sublist3r", 4350 | "url": "https://github.com/aboul3la/Sublist3r", 4351 | "description": "Python-based subdomain enumerator leveraging public search engines and certificate transparency logs." 4352 | } 4353 | ] 4354 | }, 4355 | { 4356 | "category": "MALWARE", 4357 | "tools": [ 4358 | { 4359 | "name": "Malpedia", 4360 | "url": "https://malpedia.caad.fkie.fraunhofer.de/" 4361 | }, 4362 | { 4363 | "name": "Interactive Online Malware Analysis Sandbox", 4364 | "url": "https://app.any.run/" 4365 | }, 4366 | { 4367 | "name": "Free Automated Malware Analysis Service", 4368 | "url": "https://hybrid-analysis.com/" 4369 | }, 4370 | { 4371 | "name": "VirusTotal", 4372 | "url": "https://www.virustotal.com/gui/" 4373 | }, 4374 | { 4375 | "name": "Maltiverse", 4376 | "url": "https://maltiverse.com/search" 4377 | }, 4378 | { 4379 | "name": "Malware News Search", 4380 | "url": "https://cse.google.com/cse?cx=003248445720253387346:turlh5vi4xc" 4381 | }, 4382 | { 4383 | "name": "AlienVault Open Threat Exchange", 4384 | "url": "https://otx.alienvault.com/" 4385 | }, 4386 | { 4387 | "name": "Jotti's malware scan", 4388 | "url": "https://virusscan.jotti.org/" 4389 | }, 4390 | { 4391 | "name": "IObit Cloud", 4392 | "url": "https://cloud.iobit.com/index.php" 4393 | }, 4394 | { 4395 | "name": "theZoo", 4396 | "url": "https://github.com/ytisf/theZoo" 4397 | }, 4398 | { 4399 | "name": "Vx-underground.org", 4400 | "url": "https://vx-underground.org/" 4401 | }, 4402 | { 4403 | "name": "VX Heaven", 4404 | "url": "https://vx-underground.org/archive/VxHeaven/index.html" 4405 | }, 4406 | { 4407 | "name": "aptnotes/data", 4408 | "url": "https://github.com/aptnotes/data" 4409 | }, 4410 | { 4411 | "name": "exploit-database-papers", 4412 | "url": "https://github.com/offensive-security/exploitdb-papers" 4413 | }, 4414 | { 4415 | "name": "exploitdb-bin-sploits", 4416 | "url": "https://github.com/offensive-security/exploitdb-bin-sploits" 4417 | } 4418 | ] 4419 | }, 4420 | { 4421 | "category": "IoT", 4422 | "tools": [ 4423 | { 4424 | "name": "Webcam Search Engine", 4425 | "url": "https://cse.google.com/cse?cx=013991603413798772546:gjcdtyiytey#gsc.tab=0" 4426 | }, 4427 | { 4428 | "name": "Insecam", 4429 | "url": "http://www.insecam.org/" 4430 | }, 4431 | { 4432 | "name": "Camhacker.com", 4433 | "url": "https://www.camhacker.com/" 4434 | }, 4435 | { 4436 | "name": "EarthCam", 4437 | "url": "https://www.earthcam.com/" 4438 | }, 4439 | { 4440 | "name": "Airport Webcams", 4441 | "url": "https://airportwebcams.net/" 4442 | }, 4443 | { 4444 | "name": "The Webcam Network", 4445 | "url": "http://www.the-webcam-network.com/" 4446 | }, 4447 | { 4448 | "name": "Default Router Login", 4449 | "url": "https://www.cleancss.com/router-default/" 4450 | }, 4451 | { 4452 | "name": "Live Bar and Pub Webcams", 4453 | "url": "http://gobefore.me/cams/" 4454 | }, 4455 | { 4456 | "name": "Webcams Abroad live images", 4457 | "url": "https://www.webcamsabroad.com/" 4458 | }, 4459 | { 4460 | "name": "WEBCAM LIVE", 4461 | "url": "https://www.whatsupcams.com/en/" 4462 | }, 4463 | { 4464 | "name": "city-webcams.com", 4465 | "url": "https://city-webcams.com/" 4466 | }, 4467 | { 4468 | "name": "thingful", 4469 | "url": "http://www.thingful.net/" 4470 | }, 4471 | { 4472 | "name": "Live World Webcam", 4473 | "url": "http://liveworldwebcam.net/" 4474 | }, 4475 | { 4476 | "name": "Live Cams | Iplivecams", 4477 | "url": "https://www.iplivecams.com/live-cams/" 4478 | }, 4479 | { 4480 | "name": "Webcamtaxi", 4481 | "url": "https://www.webcamtaxi.com/en/" 4482 | }, 4483 | { 4484 | "name": "Explorecams.com", 4485 | "url": "https://explorecams.com/" 4486 | }, 4487 | { 4488 | "name": "C4-cams", 4489 | "url": "http://c4-cams.qwazwsx.xyz/c4-cams/" 4490 | }, 4491 | { 4492 | "name": "Nest Cam Directory", 4493 | "url": "https://www.nestcamdirectory.com/" 4494 | }, 4495 | { 4496 | "name": "Opentopia", 4497 | "url": "http://www.opentopia.com/" 4498 | }, 4499 | { 4500 | "name": "WorldCam", 4501 | "url": "https://worldcam.eu/" 4502 | }, 4503 | { 4504 | "name": "Hawaii Traffic Cameras", 4505 | "url": "http://goakamai.org/home" 4506 | }, 4507 | { 4508 | "name": "Honolulu Traffic Cams", 4509 | "url": "http://www2.honolulu.gov/honolulumyway/?trafficcam" 4510 | }, 4511 | { 4512 | "name": "Lake County Fire Cameras", 4513 | "url": "https://www.arcgis.com/apps/webappviewer/index.html?id=0f7aa08cc4b74fc6a0c4308d4eace6b3" 4514 | }, 4515 | { 4516 | "name": "VDOT Traffic Cams", 4517 | "url": "https://www.arcgis.com/apps/dashboards/a0d3fb34cda44f5b8b10be1b245f24a3" 4518 | }, 4519 | { 4520 | "name": "Lubbock Live Traffic Cameras", 4521 | "url": "https://www.arcgis.com/apps/webappviewer/index.html?id=affe50ac55824c7a8c757d3980787e31" 4522 | }, 4523 | { 4524 | "name": "Hong Kong Traffic Data & Cams", 4525 | "url": "https://www.arcgis.com/apps/dashboards/47be6372a0434beaba99ae9c9f1d598d" 4526 | }, 4527 | { 4528 | "name": "Baton Rouge Traffic Cams", 4529 | "url": "https://www.arcgis.com/apps/webappviewer/index.html?id=0ec05ffb0d2d4735a969e8f31f820a7b" 4530 | }, 4531 | { 4532 | "name": "Surveillance under Surveillance", 4533 | "url": "https://sunders.uber.space/" 4534 | }, 4535 | { 4536 | "name": "Ukraine Live Cams", 4537 | "url": "https://nagix.github.io/ukraine-livecams/#5.5/47.774/31.685/0/45" 4538 | }, 4539 | { 4540 | "name": "Fisgonia", 4541 | "url": "http://www.fisgonia.com/" 4542 | } 4543 | ] 4544 | }, 4545 | { 4546 | "category": "[CAN] IOT", 4547 | "tools": [ 4548 | { 4549 | "name": "511on.ca", 4550 | "url": "https://511on.ca/" 4551 | }, 4552 | { 4553 | "name": "Toronto area Live Traffic Cams", 4554 | "url": "https://gtaupdate.com/traffic/" 4555 | }, 4556 | { 4557 | "name": "Outage map", 4558 | "url": "https://www.torontohydro.com/outage-map" 4559 | }, 4560 | { 4561 | "name": "PlowTO", 4562 | "url": "https://www.toronto.ca/services-payments/streets-parking-transportation/road-maintenance/winter-maintenance/plowto/" 4563 | }, 4564 | { 4565 | "name": "tpscalls.live", 4566 | "url": "https://www.tpscalls.live/" 4567 | } 4568 | ] 4569 | }, 4570 | { 4571 | "category": "RADIO", 4572 | "tools": [ 4573 | { 4574 | "name": "Broadcastify", 4575 | "url": "https://www.broadcastify.com/listen/" 4576 | }, 4577 | { 4578 | "name": "Calls Node Status", 4579 | "url": "https://www.broadcastify.com/calls/status/" 4580 | }, 4581 | { 4582 | "name": "Free WiFi Search Engine", 4583 | "url": "http://instabridge.com/free-wifi/" 4584 | }, 4585 | { 4586 | "name": "RadioReference", 4587 | "url": "https://www.radioreference.com/apps/db/", 4588 | "description": "Scanner Frequencies and Radio Frequency Reference Database" 4589 | }, 4590 | { 4591 | "name": "Feeds.talonvoice.com", 4592 | "url": "https://feeds.talonvoice.com/", 4593 | "description": "This a website transcribing scanner feeds to text in real-time, in response to recent events" 4594 | }, 4595 | { 4596 | "name": "Automated transcription for radio stations", 4597 | "url": "https://sonix.ai/radio-stations" 4598 | }, 4599 | { 4600 | "name": "Scanmap", 4601 | "url": "https://scanmap.mobi/" 4602 | }, 4603 | { 4604 | "name": "WiGLE: Wireless Network Mapping", 4605 | "url": "https://wigle.net/" 4606 | }, 4607 | { 4608 | "name": "Ham Radio QRZ Callsign Database Search", 4609 | "url": "https://www.qrz.com/lookup" 4610 | }, 4611 | { 4612 | "name": "Radio-Locator", 4613 | "url": "https://radio-locator.com/" 4614 | }, 4615 | { 4616 | "name": "Mozilla Location Service", 4617 | "url": "https://location.services.mozilla.com/map#0.7/0/0" 4618 | }, 4619 | { 4620 | "name": "RadioID Database", 4621 | "url": "https://database.radioid.net/database/search#!" 4622 | }, 4623 | { 4624 | "name": "Radio-Sherlock", 4625 | "url": "http://dxmaps.com/search.html" 4626 | }, 4627 | { 4628 | "name": "Rfsearch.com", 4629 | "url": "http://rfsearch.com/" 4630 | }, 4631 | { 4632 | "name": "Radiocells.org", 4633 | "url": "https://radiocells.org/" 4634 | }, 4635 | { 4636 | "name": "@murph_live", 4637 | "url": "https://twitter.com/murph_live" 4638 | }, 4639 | { 4640 | "name": "Wifispc.com", 4641 | "url": "https://wifispc.com/" 4642 | }, 4643 | { 4644 | "name": "Wiman", 4645 | "url": "https://www.wiman.me/" 4646 | } 4647 | ] 4648 | }, 4649 | { 4650 | "category": "REAL ESTATE", 4651 | "tools": [ 4652 | { 4653 | "name": "PrimeLocation", 4654 | "url": "https://www.primelocation.com/" 4655 | }, 4656 | { 4657 | "name": "Realtor", 4658 | "url": "https://www.realtor.com/" 4659 | }, 4660 | { 4661 | "name": "EMPORIS", 4662 | "url": "https://www.emporis.com/" 4663 | }, 4664 | { 4665 | "name": "rehold", 4666 | "url": "https://rehold.com/" 4667 | }, 4668 | { 4669 | "name": "Zillow", 4670 | "url": "https://www.zillow.com/" 4671 | }, 4672 | { 4673 | "name": "Zillow Canada", 4674 | "url": "https://www.zillow.com/z/canada/canada-homes/" 4675 | }, 4676 | { 4677 | "name": "Zoopla", 4678 | "url": "https://www.zoopla.co.uk/" 4679 | }, 4680 | { 4681 | "name": "homemetry", 4682 | "url": "https://homemetry.com/" 4683 | }, 4684 | { 4685 | "name": "Explore Canada's Real Estate Market", 4686 | "url": "https://www.remax.ca/find-real-estate" 4687 | }, 4688 | { 4689 | "name": "Onondaga County Home Sales", 4690 | "url": "https://b2.caspio.com/dp.asp?AppKey=18321000d7j6h9j6c1i4e8f0i5a9" 4691 | } 4692 | ] 4693 | }, 4694 | { 4695 | "category": "MAPS", 4696 | "tools": [ 4697 | { 4698 | "name": "Google Maps", 4699 | "url": "https://www.google.com/maps" 4700 | }, 4701 | { 4702 | "name": "Bing Maps", 4703 | "url": "https://www.bing.com/maps" 4704 | }, 4705 | { 4706 | "name": "Yandex.Maps", 4707 | "url": "https://yandex.com/maps/" 4708 | }, 4709 | { 4710 | "name": "Generate a panorama", 4711 | "url": "https://www.udeuschle.de/panoramas/makepanoramas_en.htm" 4712 | }, 4713 | { 4714 | "name": "Mapillary", 4715 | "url": "https://www.mapillary.com/app/" 4716 | }, 4717 | { 4718 | "name": "Geonarra.com", 4719 | "url": "https://www.geonarra.com/" 4720 | }, 4721 | { 4722 | "name": "Waze", 4723 | "url": "https://www.waze.com/live-map" 4724 | }, 4725 | { 4726 | "name": "百度地图", 4727 | "url": "https://map.baidu.com/" 4728 | }, 4729 | { 4730 | "name": "DigitalGlobe", 4731 | "url": "https://discover.digitalglobe.com/" 4732 | }, 4733 | { 4734 | "name": "MapQuest", 4735 | "url": "https://www.mapquest.com/" 4736 | }, 4737 | { 4738 | "name": "OpenStreetMap", 4739 | "url": "https://www.openstreetmap.org/" 4740 | }, 4741 | { 4742 | "name": "Maps.descarteslabs.com", 4743 | "url": "https://maps.descarteslabs.com/" 4744 | }, 4745 | { 4746 | "name": "ArcGIS Wildfire Map", 4747 | "url": "https://www.arcgis.com/home/webmap/viewer.html?webmap=df8bcc10430f48878b01c96e907a1fc3#!" 4748 | }, 4749 | { 4750 | "name": "Living Atlas of the World | ArcGIS", 4751 | "url": "https://livingatlas.arcgis.com/en/browse/" 4752 | }, 4753 | { 4754 | "name": "FIRMS", 4755 | "url": "https://firms.modaps.eosdis.nasa.gov/map/" 4756 | }, 4757 | { 4758 | "name": "COVID-19 Map", 4759 | "url": "https://coronavirus.jhu.edu/map.html" 4760 | }, 4761 | { 4762 | "name": "Ukraine Interactive map", 4763 | "url": "https://liveuamap.com/" 4764 | }, 4765 | { 4766 | "name": "Satellites.pro", 4767 | "url": "https://satellites.pro/" 4768 | }, 4769 | { 4770 | "name": "Military bases around the world. - uMap", 4771 | "url": "https://umap.openstreetmap.fr/en/map/military-bases-around-the-world_510207" 4772 | }, 4773 | { 4774 | "name": "Wikimapia", 4775 | "url": "http://wikimapia.org/" 4776 | }, 4777 | { 4778 | "name": "Map of Syrian Civil War", 4779 | "url": "https://syria.liveuamap.com/" 4780 | }, 4781 | { 4782 | "name": "Radio Garden", 4783 | "url": "http://radio.garden/search" 4784 | }, 4785 | { 4786 | "name": "Windy", 4787 | "url": "https://www.windy.com/-Webcams/webcams" 4788 | }, 4789 | { 4790 | "name": "Gpx File Editor", 4791 | "url": "https://gpx.studio/" 4792 | }, 4793 | { 4794 | "name": "OALLEY", 4795 | "url": "https://www.oalley.net/app/" 4796 | }, 4797 | { 4798 | "name": "fgdc_gp_demos's public fiddles", 4799 | "url": "https://jsfiddle.net/user/fgdc_gp_demos/fiddles/" 4800 | }, 4801 | { 4802 | "name": "KartaView", 4803 | "url": "https://kartaview.org/map/" 4804 | }, 4805 | { 4806 | "name": "Google Map Search Engine", 4807 | "url": "https://cse.google.com/cse?cx=013991603413798772546:mofb1uoaebi" 4808 | }, 4809 | { 4810 | "name": "Power Plants in the United States", 4811 | "url": "https://www.arcgis.com/apps/dashboards/201fc98c0d74482d8b3acb0c4cc47f16" 4812 | }, 4813 | { 4814 | "name": "UK Onshore Oil and Gas Activity", 4815 | "url": "https://www.arcgis.com/apps/webappviewer/index.html?id=29c31fa4b00248418e545d222e57ddaa" 4816 | }, 4817 | { 4818 | "name": "Walmart Store Status", 4819 | "url": "https://www.arcgis.com/apps/dashboards/4e573c79e1224081805165d25b4f33c7" 4820 | }, 4821 | { 4822 | "name": "MODIS Wildfire", 4823 | "url": "https://www.arcgis.com/apps/dashboards/bf5df3a49a624521844a2e5e1ec7df05" 4824 | }, 4825 | { 4826 | "name": "Earthquake Watch", 4827 | "url": "https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780" 4828 | }, 4829 | { 4830 | "name": "InciWeb", 4831 | "url": "https://inciweb.nwcg.gov/" 4832 | }, 4833 | { 4834 | "name": "Earth", 4835 | "url": "https://earth.nullschool.net/#current" 4836 | }, 4837 | { 4838 | "name": "US Labor Strike Map", 4839 | "url": "https://www.google.com/maps/d/viewer?mid=1hE1nDR-Ff_sVgOS67IteJSxGZlvqIP3k" 4840 | }, 4841 | { 4842 | "name": "Active Agency Map", 4843 | "url": "https://www.google.com/maps/d/viewer?mid=1eYVDPh5itXq5acDT9b0BVeQwmESBa4cB" 4844 | }, 4845 | { 4846 | "name": "Ontario GiveSendGo Donors", 4847 | "url": "https://www.google.com/maps/d/viewer?mid=1heAgrb9bDuk287yqseyvhZ7-U_kz64hM" 4848 | }, 4849 | { 4850 | "name": "Live-action-map.com", 4851 | "url": "https://www.live-action-map.com/" 4852 | }, 4853 | { 4854 | "name": "awesome-maps-ukraine", 4855 | "url": "https://github.com/Symbian9/awesome-maps-ukraine", 4856 | "description": "A curated list of maps of Ukraine, ukrainian mappers and tools that they use or develop for creating and publish maps." 4857 | }, 4858 | { 4859 | "name": "Допомога", 4860 | "url": "https://dopomoha.pl/" 4861 | }, 4862 | { 4863 | "name": "Ukraine Live Cams", 4864 | "url": "https://nagix.github.io/ukraine-livecams" 4865 | }, 4866 | { 4867 | "name": "Ukraine War Map/Heatmap", 4868 | "url": "https://ruarq.github.io/ukraine-war-heatmap" 4869 | }, 4870 | { 4871 | "name": "Live map of London Underground trains", 4872 | "url": "https://traintimes.org.uk/map/tube/" 4873 | }, 4874 | { 4875 | "name": "Livecorona.co.kr", 4876 | "url": "https://livecorona.co.kr/" 4877 | }, 4878 | { 4879 | "name": "TfL JamCams", 4880 | "url": "https://www.tfljamcams.net/" 4881 | }, 4882 | { 4883 | "name": "Cesium Stories", 4884 | "url": "https://cesium.com/ion/stories/viewer/?id=8be6f99c-0d4c-46ce-91a3-313e3cac62fe" 4885 | }, 4886 | { 4887 | "name": "Sentinel Hub EO Browser", 4888 | "url": "https://apps.sentinel-hub.com/eo-browser/", 4889 | "description": "Interactive interface for Sentinel, Landsat, and MODIS imagery with spectral indices and time series." 4890 | }, 4891 | { 4892 | "name": "Google Earth Web", 4893 | "url": "https://earth.google.com/web/", 4894 | "description": "3D globe with timelapse, street imagery, and annotation tools for geospatial verification." 4895 | }, 4896 | { 4897 | "name": "NASA Worldview", 4898 | "url": "https://worldview.earthdata.nasa.gov/", 4899 | "description": "Interactive viewer for NASA EOSDIS imagery with 900+ layers and near real-time satellite data." 4900 | }, 4901 | { 4902 | "name": "OpenAerialMap", 4903 | "url": "https://openaerialmap.org/", 4904 | "description": "Community-driven catalog of drone and aerial imagery available for download and analysis." 4905 | } 4906 | ] 4907 | }, 4908 | { 4909 | "category": "GEO", 4910 | "tools": [ 4911 | { 4912 | "name": "GeoNames", 4913 | "url": "https://www.geonames.org/" 4914 | }, 4915 | { 4916 | "name": "Geoseer.net", 4917 | "url": "https://www.geoseer.net/" 4918 | }, 4919 | { 4920 | "name": "GeoINT Search", 4921 | "url": "https://cse.google.com/cse?cx=015328649639895072395:sbv3zyxzmji#gsc.tab=0" 4922 | }, 4923 | { 4924 | "name": "GeoIP Tracker tool", 4925 | "url": "https://shadowcrypt.net/tools/geoip" 4926 | }, 4927 | { 4928 | "name": "Earth Engine Dataset", 4929 | "url": "https://developers.google.com/earth-engine/datasets/" 4930 | }, 4931 | { 4932 | "name": "GeoPlatform Portal", 4933 | "url": "https://www.geoplatform.gov/" 4934 | }, 4935 | { 4936 | "name": "Inspire-geoportal.eu", 4937 | "url": "http://www.inspire-geoportal.eu/" 4938 | }, 4939 | { 4940 | "name": "FAO Map Catalog", 4941 | "url": "https://data.apps.fao.org/map/catalog/srv/eng/catalog.search#/home" 4942 | }, 4943 | { 4944 | "name": "Datacore-gn.unepgrid.ch", 4945 | "url": "https://datacore-gn.unepgrid.ch/" 4946 | }, 4947 | { 4948 | "name": "ISRIC Data Hub", 4949 | "url": "https://data.isric.org/geonetwork/srv/eng/catalog.search#/home" 4950 | }, 4951 | { 4952 | "name": "geocreepy", 4953 | "url": "http://www.geocreepy.com/" 4954 | }, 4955 | { 4956 | "name": "US Crisis Monitor", 4957 | "url": "https://acleddata.com/special-projects/us-crisis-monitor/" 4958 | }, 4959 | { 4960 | "name": "Toronto Live", 4961 | "url": "https://apps.esri.ca/torontolive/" 4962 | }, 4963 | { 4964 | "name": "Residential Fire Fatalities in Indiana", 4965 | "url": "https://www.arcgis.com/apps/dashboards/4d1289ab105145a1b1f80c1ad3cf19fb" 4966 | }, 4967 | { 4968 | "name": "geoprotests API", 4969 | "url": "https://rapidapi.com/gisfromscratch/api/geoprotests/" 4970 | }, 4971 | { 4972 | "name": "geoint-py", 4973 | "url": "https://github.com/gisfromscratch/geoint-py", 4974 | "description": "A bunch of geospatial intelligence workflows implemented using Python." 4975 | }, 4976 | { 4977 | "name": "geoclustering", 4978 | "url": "https://pypi.org/project/geoclustering/" 4979 | }, 4980 | { 4981 | "name": "SunCalc", 4982 | "url": "https://www.suncalc.org/", 4983 | "description": "Visualize sun position and shadow projections to estimate timestamps or verify geolocations." 4984 | }, 4985 | { 4986 | "name": "MapChecking", 4987 | "url": "https://www.mapchecking.com/", 4988 | "description": "Estimate crowd sizes by drawing polygons and applying density presets over interactive maps." 4989 | } 4990 | ] 4991 | }, 4992 | { 4993 | "category": "CRYPTOCURRENCY", 4994 | "tools": [ 4995 | { 4996 | "name": "Cryptocurrency Alerting", 4997 | "url": "https://cryptocurrencyalerting.com/" 4998 | }, 4999 | { 5000 | "name": "Bitcoin Explorer", 5001 | "url": "https://blockchair.com/bitcoin" 5002 | }, 5003 | { 5004 | "name": "Ethereum Block Explorer", 5005 | "url": "https://etherscan.io/" 5006 | }, 5007 | { 5008 | "name": "Flowscan.org", 5009 | "url": "https://flowscan.org/" 5010 | }, 5011 | { 5012 | "name": "Bitcoin Forums Search Engine", 5013 | "url": "https://cse.google.com/cse?cx=f49f9d5e679b15787" 5014 | }, 5015 | { 5016 | "name": "Blockchain Explorer", 5017 | "url": "https://www.blockchain.com/explorer" 5018 | }, 5019 | { 5020 | "name": "Blockcypher", 5021 | "url": "https://live.blockcypher.com/" 5022 | }, 5023 | { 5024 | "name": "Addresschecker.eu", 5025 | "url": "http://addresschecker.eu/" 5026 | }, 5027 | { 5028 | "name": "Coinwink.com", 5029 | "url": "https://coinwink.com/" 5030 | }, 5031 | { 5032 | "name": "Cryptocurrency search tool", 5033 | "url": "https://www.aware-online.com/en/osint-tools/cryptocurrency-search-tool/" 5034 | }, 5035 | { 5036 | "name": "OSINT cryptocurrencies", 5037 | "url": "https://www.aware-online.com/en/osint-tools/cryptocurrency-tools/" 5038 | } 5039 | ] 5040 | }, 5041 | { 5042 | "category": "DARKNET", 5043 | "tools": [ 5044 | { 5045 | "name": "Dark Tracer", 5046 | "url": "https://darktracer.io/" 5047 | }, 5048 | { 5049 | "name": "ransomwatch 👀 🦅", 5050 | "url": "https://ransomwatch.telemetry.ltd/#/INDEX" 5051 | }, 5052 | { 5053 | "name": "Ransomware Darknet websites", 5054 | "url": "https://sizeof.cat/post/ransomware-darknet-websites/" 5055 | }, 5056 | { 5057 | "name": "Ahmia — Search Tor Hidden Services", 5058 | "url": "https://ahmia.fi/", 5059 | "description": "Search Tor Hidden Services" 5060 | }, 5061 | { 5062 | "name": "Onion search engine", 5063 | "url": "https://onionengine.com/" 5064 | }, 5065 | { 5066 | "name": "onionsearch", 5067 | "url": "https://pypi.org/project/onionsearch/" 5068 | }, 5069 | { 5070 | "name": "Tor2Web: Tor Hidden Services Gateway", 5071 | "url": "https://tor2web.onionsearchengine.com/" 5072 | }, 5073 | { 5074 | "name": "Ransomware Group Sites", 5075 | "url": "http://ransomwr3tsydeii4q43vazm7wofla5ujdajquitomtd47cxjtfgwyyd.onion.pet/" 5076 | }, 5077 | { 5078 | "name": "Blockpath.com", 5079 | "url": "https://blockpath.com/" 5080 | }, 5081 | { 5082 | "name": "LinkBaseORG", 5083 | "url": "https://link-base.org/" 5084 | }, 5085 | { 5086 | "name": "Onions - Darknetlive", 5087 | "url": "https://darknetlive.com/onions/" 5088 | }, 5089 | { 5090 | "name": "Darknet Market List", 5091 | "url": "https://darknetlive.com/markets/" 5092 | }, 5093 | { 5094 | "name": "Darkweb Forums", 5095 | "url": "https://darknetlive.com/forums/" 5096 | }, 5097 | { 5098 | "name": "Tool | path", 5099 | "url": "https://learnmeabitcoin.com/tools/path/" 5100 | }, 5101 | { 5102 | "name": "Raklet", 5103 | "url": "http://iwr4usy33opfclmbyemzbmnwwnmmqpqltezpac7fyqqkdv3mabtm6kqd.onion.pet/", 5104 | "description": "Accurately fast search engine" 5105 | }, 5106 | { 5107 | "name": "Dark.fail", 5108 | "url": "https://dark.fail/", 5109 | "description": "Reliability tracker and directory of Tor hidden services with uptime history and mirrors." 5110 | } 5111 | ] 5112 | }, 5113 | { 5114 | "category": "DATA DUMP", 5115 | "tools": [ 5116 | { 5117 | "name": "BreachDirectory", 5118 | "url": "https://breachdirectory.org/" 5119 | }, 5120 | { 5121 | "name": "Have I been pwned", 5122 | "url": "https://haveibeenpwned.com/" 5123 | }, 5124 | { 5125 | "name": "DeepSearch", 5126 | "url": "http://xjypo5vzgmo7jca6b322dnqbsdnp3amd24ybx26x5nxbusccjkm4pwid.onion.pet/" 5127 | }, 5128 | { 5129 | "name": "Personal Data Leak Checker", 5130 | "url": "https://cybernews.com/personal-data-leak-check/" 5131 | }, 5132 | { 5133 | "name": "Intelligence X", 5134 | "url": "https://intelx.io/" 5135 | }, 5136 | { 5137 | "name": "DDoSecrets", 5138 | "url": "https://ddosecrets.com/wiki/Special:AllPages" 5139 | }, 5140 | { 5141 | "name": "Scylla.so", 5142 | "url": "https://scylla.so/" 5143 | }, 5144 | { 5145 | "name": "Leakedpassword.com", 5146 | "url": "https://leakedpassword.com/" 5147 | }, 5148 | { 5149 | "name": "DeHashed", 5150 | "url": "https://dehashed.com/", 5151 | "description": "Have you been compromised? DeHashed provides free deep-web scans and protection against credential leaks. A modern personal asset search engine created for security analysts, journalists, security ..." 5152 | }, 5153 | { 5154 | "name": "Snusbase", 5155 | "url": "https://www.snusbase.com/" 5156 | }, 5157 | { 5158 | "name": "Leaked.site", 5159 | "url": "https://www.leaked.site/" 5160 | }, 5161 | { 5162 | "name": "Ashley Madison hacked email checker", 5163 | "url": "https://ashley.cynic.al/" 5164 | }, 5165 | { 5166 | "name": "Search Ashley Madison Leaked Data", 5167 | "url": "http://checkashleymadison.com/" 5168 | }, 5169 | { 5170 | "name": "Sony Archives", 5171 | "url": "https://wikileaks.org/sony/emails/" 5172 | }, 5173 | { 5174 | "name": "qoob's datasets", 5175 | "url": "https://qoob.keybase.pub/" 5176 | }, 5177 | { 5178 | "name": "Facebook Data Breach Checker", 5179 | "url": "https://haveibeenzuckered.com/" 5180 | } 5181 | ] 5182 | }, 5183 | { 5184 | "category": "VOTER DATABASES", 5185 | "tools": [ 5186 | { 5187 | "name": "Search for US Voters with Custom Search Engines #OSINT | Boolean Strings", 5188 | "url": "https://booleanstrings.com/2021/07/15/search-for-us-voters-with-custom-search-engines-osint/" 5189 | }, 5190 | { 5191 | "name": "Washington State Voter Database", 5192 | "url": "http://www.soundpolitics.com/voterlookup.html" 5193 | }, 5194 | { 5195 | "name": "Arkvoters.com", 5196 | "url": "https://arkvoters.com/" 5197 | }, 5198 | { 5199 | "name": "Coloradovoters.info", 5200 | "url": "https://coloradovoters.info/" 5201 | }, 5202 | { 5203 | "name": "Delawarevoters.info", 5204 | "url": "http://delawarevoters.info/" 5205 | }, 5206 | { 5207 | "name": "Flvoters.com", 5208 | "url": "https://flvoters.com/" 5209 | }, 5210 | { 5211 | "name": "Georgia-voters.com", 5212 | "url": "https://georgia-voters.com/" 5213 | }, 5214 | { 5215 | "name": "Connvoters.com", 5216 | "url": "https://connvoters.com/" 5217 | }, 5218 | { 5219 | "name": "Michiganvoters.info", 5220 | "url": "https://michiganvoters.info/" 5221 | }, 5222 | { 5223 | "name": "Ohiovoters.us", 5224 | "url": "http://ohiovoters.us/" 5225 | }, 5226 | { 5227 | "name": "Oklavoters.com", 5228 | "url": "http://oklavoters.com/" 5229 | }, 5230 | { 5231 | "name": "Rivoters.com", 5232 | "url": "https://rivoters.com/" 5233 | }, 5234 | { 5235 | "name": "Wiscvoters.com", 5236 | "url": "https://wiscvoters.com/" 5237 | }, 5238 | { 5239 | "name": "Utvoters.com", 5240 | "url": "http://utvoters.com/" 5241 | }, 5242 | { 5243 | "name": "Oklahoma Voters Search", 5244 | "url": "http://oklahomadata.com/voters.asp" 5245 | }, 5246 | { 5247 | "name": "New Jersey Voter Records", 5248 | "url": "https://stevemorse.org/njvoters/njvoters.html" 5249 | }, 5250 | { 5251 | "name": "New York State Voter Records", 5252 | "url": "https://stevemorse.org/nysvoters/nysvoters.html" 5253 | } 5254 | ] 5255 | }, 5256 | { 5257 | "category": "EXTREMIST / FAR-RIGHT", 5258 | "tools": [ 5259 | { 5260 | "name": "Unicorn Riot: Discord Leaks", 5261 | "url": "https://discordleaks.unicornriot.ninja/discord/" 5262 | }, 5263 | { 5264 | "name": "Data | DDoSecrets Search", 5265 | "url": "https://search.ddosecrets.com/data/" 5266 | }, 5267 | { 5268 | "name": "Parler Archive Search", 5269 | "url": "https://parler.adatascienti.st/research" 5270 | }, 5271 | { 5272 | "name": "Parler Capitol Videos", 5273 | "url": "https://projects.propublica.org/parler-capitol-videos/" 5274 | }, 5275 | { 5276 | "name": "Project Whispers", 5277 | "url": "https://whispers.ddosecrets.com/" 5278 | }, 5279 | { 5280 | "name": "4chansearch.org", 5281 | "url": "https://4chansearch.org/" 5282 | }, 5283 | { 5284 | "name": "archived.moe", 5285 | "url": "https://archived.moe/" 5286 | }, 5287 | { 5288 | "name": "8chan/8kun QResearch Board Search", 5289 | "url": "https://qresear.ch/" 5290 | }, 5291 | { 5292 | "name": "Extremist Profiles", 5293 | "url": "https://www.splcenter.org/fighting-hate/extremist-files/individual" 5294 | }, 5295 | { 5296 | "name": "Extremist Groups", 5297 | "url": "https://www.splcenter.org/fighting-hate/extremist-files/groups" 5298 | }, 5299 | { 5300 | "name": "Database of suspected terrorists", 5301 | "url": "https://www.nsatt.org/" 5302 | }, 5303 | { 5304 | "name": "TSA No-Fly List", 5305 | "url": "https://www.no-fly-list.com/" 5306 | }, 5307 | { 5308 | "name": "Terrorism Incidents Database", 5309 | "url": "http://smapp.rand.org/rwtid/search_form.php" 5310 | }, 5311 | { 5312 | "name": "Global Terrorism Database", 5313 | "url": "https://www.start.umd.edu/gtd/access/" 5314 | }, 5315 | { 5316 | "name": "Sanctions List Search", 5317 | "url": "https://sanctionssearch.ofac.treas.gov/" 5318 | }, 5319 | { 5320 | "name": "Trump Twitter Archive", 5321 | "url": "https://www.thetrumparchive.com/" 5322 | }, 5323 | { 5324 | "name": "OFAC Sanctioned Search Engine", 5325 | "url": "https://cse.google.com/cse?cx=e96467889fb82b9b0" 5326 | }, 5327 | { 5328 | "name": "INFORMNAPALM", 5329 | "url": "https://informnapalm.org/db/russian-aggression/#lang=en&page=m_unit", 5330 | "description": "Database of Russian Aggression" 5331 | }, 5332 | { 5333 | "name": "gogettr", 5334 | "url": "https://pypi.org/project/gogettr/" 5335 | }, 5336 | { 5337 | "name": "GUTTR", 5338 | "url": "https://github.com/VVX7/GUTTR", 5339 | "description": "GETTR API client library written in Python" 5340 | }, 5341 | { 5342 | "name": "FBI Most Wanted Search Engine", 5343 | "url": "https://cse.google.com/cse?cx=1ee952e6584aa91f9" 5344 | }, 5345 | { 5346 | "name": "Interpol Most Wanted Search Engine", 5347 | "url": "https://cse.google.com/cse?cx=b1746754c83012613" 5348 | }, 5349 | { 5350 | "name": "Europol Most Wanted Search Engine", 5351 | "url": "https://cse.google.com/cse?cx=f08e8dc2172da1ba8" 5352 | }, 5353 | { 5354 | "name": "Ironmarch.exposed", 5355 | "url": "https://www.ironmarch.exposed/" 5356 | } 5357 | ] 5358 | }, 5359 | { 5360 | "category": "FINANCE", 5361 | "tools": [ 5362 | { 5363 | "name": "Greylist Trace", 5364 | "url": "https://greylisttrace.com/" 5365 | }, 5366 | { 5367 | "name": "Tradint Research Tool", 5368 | "url": "https://tradint.io/" 5369 | }, 5370 | { 5371 | "name": "analytics-engine", 5372 | "url": "https://github.com/mashiox/analytics-engine", 5373 | "description": "An environment of open source services used for market analysis" 5374 | }, 5375 | { 5376 | "name": "Ppp.adatascienti.st", 5377 | "url": "https://ppp.adatascienti.st/" 5378 | }, 5379 | { 5380 | "name": "CoVi Analytics", 5381 | "url": "https://www.covianalytics.com/" 5382 | }, 5383 | { 5384 | "name": "Search Our PPP Loan Database", 5385 | "url": "https://ppp.directory/search" 5386 | }, 5387 | { 5388 | "name": "TMX", 5389 | "url": "https://www.m-x.ca/en/trading/data/quotes?symbol=" 5390 | }, 5391 | { 5392 | "name": "TMX TSX", 5393 | "url": "https://www.tsx.com/listings/listing-with-us/listed-company-directory" 5394 | }, 5395 | { 5396 | "name": "Search for Investment Fund Documents", 5397 | "url": "https://www.sedar.com/search/search_form_mf_en.htm" 5398 | } 5399 | ] 5400 | }, 5401 | { 5402 | "category": "BUSINESS", 5403 | "tools": [ 5404 | { 5405 | "name": "Companies & Orgs Search Engine", 5406 | "url": "https://cse.google.com/cse?cx=72ea9d8cfefc142d3" 5407 | }, 5408 | { 5409 | "name": "WhaleSlide", 5410 | "url": "https://whaleslide.com/" 5411 | }, 5412 | { 5413 | "name": "AllPeople", 5414 | "url": "https://allpeople.com/" 5415 | }, 5416 | { 5417 | "name": "Corporation Wiki", 5418 | "url": "https://www.corporationwiki.com/" 5419 | }, 5420 | { 5421 | "name": "PA PPP Database", 5422 | "url": "https://public.flourish.studio/visualisation/3105919/" 5423 | }, 5424 | { 5425 | "name": "Michigan PPP loans", 5426 | "url": "https://c0eib122.caspio.com/dp/74321000d4c16abc2baf480b8934" 5427 | }, 5428 | { 5429 | "name": "Companies House", 5430 | "url": "https://www.gov.uk/government/organisations/companies-house" 5431 | }, 5432 | { 5433 | "name": "Global Brownbook", 5434 | "url": "https://www.brownbook.net/" 5435 | }, 5436 | { 5437 | "name": "list-org", 5438 | "url": "https://www.list-org.com/" 5439 | }, 5440 | { 5441 | "name": "OpenCorporates", 5442 | "url": "https://opencorporates.com/" 5443 | }, 5444 | { 5445 | "name": "ICIJ Offshore Leaks Database", 5446 | "url": "https://offshoreleaks.icij.org/" 5447 | }, 5448 | { 5449 | "name": "Home Comptroller.Texas.Gov", 5450 | "url": "https://comptroller.texas.gov/" 5451 | }, 5452 | { 5453 | "name": "Company search tool", 5454 | "url": "https://www.aware-online.com/en/osint-tools/company-search-tool/" 5455 | }, 5456 | { 5457 | "name": "XRefer", 5458 | "url": "https://www.xrefer.com/" 5459 | }, 5460 | { 5461 | "name": "Ttabcenter.com", 5462 | "url": "https://ttabcenter.com/" 5463 | }, 5464 | { 5465 | "name": "First Search", 5466 | "url": "https://search.firstround.com/" 5467 | }, 5468 | { 5469 | "name": "Findingstartups.com", 5470 | "url": "https://findingstartups.com/" 5471 | }, 5472 | { 5473 | "name": "Startup Tracker", 5474 | "url": "https://startuptracker.io/home" 5475 | }, 5476 | { 5477 | "name": "Shopsearchengine.com", 5478 | "url": "http://shopsearchengine.com/" 5479 | }, 5480 | { 5481 | "name": "Covidbailouttracker.com", 5482 | "url": "https://covidbailouttracker.com/" 5483 | }, 5484 | { 5485 | "name": "Coronavirus Bailouts: Search Every Company Approved for Federal Loans Over $150k", 5486 | "url": "https://projects.propublica.org/coronavirus/bailouts/" 5487 | }, 5488 | { 5489 | "name": "LA County CA Restaurant Health Violations", 5490 | "url": "https://b2.caspio.com/dp.asp?AppKey=22341000af0b9c98ebf047f1b9f2" 5491 | }, 5492 | { 5493 | "name": "Kansas Restaurant Inspections", 5494 | "url": "https://b2.caspio.com/dp/a1a31000af3bac4c5e434987a857" 5495 | }, 5496 | { 5497 | "name": "Lexington-Fayette County KY Health Department Restaurant Inspections", 5498 | "url": "https://b2.caspio.com/dp.asp?AppKey=c8521000c641ab80b6d2448e89d9" 5499 | }, 5500 | { 5501 | "name": "FL Energy Money in Politics", 5502 | "url": "https://b2.caspio.com/dp.asp?AppKey=c73210001174b8c2a8d444768f5c" 5503 | }, 5504 | { 5505 | "name": "ValidFleetList (unknown Sail Boat database)", 5506 | "url": "https://c0eru285.caspio.com/dp/0dc330002829dcc1ad864b5bb094" 5507 | }, 5508 | { 5509 | "name": "Viking Rifle Series Shooter Live Results", 5510 | "url": "https://vikingrifleseries.caspio.com/dp/c8ac5000f29041f935cf42b6a641" 5511 | } 5512 | ] 5513 | }, 5514 | { 5515 | "category": "POLICE / LE / FED", 5516 | "tools": [ 5517 | { 5518 | "name": "Openoversight", 5519 | "url": "https://openoversight.com/" 5520 | }, 5521 | { 5522 | "name": "Criminal Cop Database Lookup", 5523 | "url": "https://extras.mercurynews.com/criminalcops/database/" 5524 | }, 5525 | { 5526 | "name": "The Philadelphia Police Misconduct Database", 5527 | "url": "https://datawrapper.dwcdn.net/3GbVI/1/" 5528 | }, 5529 | { 5530 | "name": "NYPD Misconduct Complaint Database", 5531 | "url": "https://nyclu.shinyapps.io/CCRB_combo/" 5532 | }, 5533 | { 5534 | "name": "NYPD Officer Profile", 5535 | "url": "https://nypdonline.org/link/2" 5536 | }, 5537 | { 5538 | "name": "Maine County Law Enforcement Discipline Chart", 5539 | "url": "https://public.flourish.studio/visualisation/4443849/?utm_source=showcase&utm_campaign=visualisation/4443849" 5540 | }, 5541 | { 5542 | "name": "Arizona LE Database - ABC15", 5543 | "url": "https://datawrapper.dwcdn.net/kkg90/6/" 5544 | }, 5545 | { 5546 | "name": "Police Complaint Lookup", 5547 | "url": "http://complaints.cuapb.org/" 5548 | }, 5549 | { 5550 | "name": "Boston Police Internal Affairs Cases, 2010-2020", 5551 | "url": "https://apps.bostonglobe.com/graphics/2020/law-enforcement/index.html?initialWidth=1029&childId=police-embed&parentTitle=Database%3A%20Search%2010%20years%27%20worth%20of%20Boston%20Police%20Department%20disciplinary%20action&parentUrl=https%3A%2F%2Fwww.bostonglobe.com%2F2020%2F11%2F24%2Fmetro%2Fheres-searchable-database-boston-police-department-internal-investigations-disciplinary-actions-more%2F" 5552 | }, 5553 | { 5554 | "name": "Police Decertifcations Search and Report", 5555 | "url": "https://c0acu882.caspio.com/dp/07da6000e467ebc2a444430c9c1d" 5556 | }, 5557 | { 5558 | "name": "San Francisco CopWatch Database", 5559 | "url": "https://airtable.com/embed/shreS9yA6eWiJAmHZ/tbl0A1AfPBOaPNBhH?backgroundColor=blue", 5560 | "description": "How to use CopWatch SF Cops are listed below alphabetically by last name. You can filter or group officers in different ways. Click on the magnifying glass to search by cop name, date of incident, …" 5561 | }, 5562 | { 5563 | "name": "NJ Police and Fire FY 2011 Pension contribution", 5564 | "url": "https://b2.caspio.com/dp.asp?AppKey=c43d100007eedbb0f0e740188660" 5565 | }, 5566 | { 5567 | "name": "EFF Atlas of Surveillance", 5568 | "url": "https://atlasofsurveillance.org/" 5569 | }, 5570 | { 5571 | "name": "Clearview AI US taxpayer-funded entities", 5572 | "url": "https://datawrapper.dwcdn.net/VOOIE/16/" 5573 | }, 5574 | { 5575 | "name": "Oregon DPSST Professional Standards Cases Database", 5576 | "url": "https://www.oregon.gov/dpsst/CJ/Pages/Cases.aspx" 5577 | }, 5578 | { 5579 | "name": "PA Forfeiture 2010-2016 Search", 5580 | "url": "https://b2.caspio.com/dp/0a921000328dc970793c4364bb2a" 5581 | }, 5582 | { 5583 | "name": "BlueLeaks", 5584 | "url": "https://blueleaks.io/index.html" 5585 | }, 5586 | { 5587 | "name": "Plain View Project", 5588 | "url": "https://www.plainviewproject.org/data" 5589 | }, 5590 | { 5591 | "name": "ICE Patrol", 5592 | "url": "https://ice.wikileaks.org/search" 5593 | }, 5594 | { 5595 | "name": "Policecrime.bgsu.edu", 5596 | "url": "https://policecrime.bgsu.edu/" 5597 | }, 5598 | { 5599 | "name": "CAPstat.nyc", 5600 | "url": "https://www.capstat.nyc/" 5601 | }, 5602 | { 5603 | "name": "Citizens Police Data Project", 5604 | "url": "https://beta.cpdp.co/" 5605 | }, 5606 | { 5607 | "name": "Fatal Encounters", 5608 | "url": "https://fatalencounters.org/people-search/" 5609 | }, 5610 | { 5611 | "name": "The NYPD Files", 5612 | "url": "https://projects.propublica.org/nypd-ccrb/" 5613 | }, 5614 | { 5615 | "name": "Open Data Policing", 5616 | "url": "https://opendatapolicing.com/" 5617 | }, 5618 | { 5619 | "name": "Police Surveillance in Chicago", 5620 | "url": "https://redshiftzero.github.io/policesurveillance/" 5621 | }, 5622 | { 5623 | "name": "Mappingpoliceviolence.org", 5624 | "url": "https://mappingpoliceviolence.org/" 5625 | }, 5626 | { 5627 | "name": "Police Protest Videos", 5628 | "url": "https://projects.propublica.org/protest-police-videos/" 5629 | }, 5630 | { 5631 | "name": "GeorgeFloyd Protest police brutality videos", 5632 | "url": "https://docs.google.com/spreadsheets/u/1/d/1YmZeSxpz52qT-10tkCjWOwOGkQqle7Wd1P7ZM1wMW0E/htmlview?pru=AAABcql6DI8*mIHYeMnoj9XWUp3Svb_KZA#" 5633 | }, 5634 | { 5635 | "name": "Police Body-Worn Camera Footage Access Map", 5636 | "url": "https://www.rcfp.org/resources/bodycams/" 5637 | }, 5638 | { 5639 | "name": "Policebrutalitydatabase.org", 5640 | "url": "https://www.policebrutalitydatabase.org/" 5641 | }, 5642 | { 5643 | "name": "Civilian Office of Police Accountability", 5644 | "url": "https://www.chicagocopa.org/data-cases/case-portal/" 5645 | }, 5646 | { 5647 | "name": "Coplookup.com", 5648 | "url": "https://coplookup.com/" 5649 | }, 5650 | { 5651 | "name": "Project Comport - IMPD/BPD/WPD [Datasets]", 5652 | "url": "https://www.projectcomport.org/" 5653 | }, 5654 | { 5655 | "name": "How many untested rape kits does your city police department or county sheriff's office have?", 5656 | "url": "https://datawrapper.dwcdn.net/uOdaT/4/" 5657 | }, 5658 | { 5659 | "name": "Gun Dealer Inspections | The Trace", 5660 | "url": "https://projects.thetrace.org/inspections/" 5661 | }, 5662 | { 5663 | "name": "Secret Surveillance Catalogue", 5664 | "url": "https://theintercept.com/surveillance-catalogue/" 5665 | }, 5666 | { 5667 | "name": "Chicago Police Department Demographics", 5668 | "url": "https://public.flourish.studio/visualisation/1089756/" 5669 | }, 5670 | { 5671 | "name": "George Floyd - Where black people are most disproportionately killed by police", 5672 | "url": "https://public.flourish.studio/visualisation/2646234/" 5673 | }, 5674 | { 5675 | "name": "Iowa Cities police budgets", 5676 | "url": "https://public.flourish.studio/visualisation/3168834/" 5677 | }, 5678 | { 5679 | "name": "TGCG Members Page", 5680 | "url": "https://c2ffn114.caspio.com/dp/e6a74000833e44e23c324a10987c" 5681 | }, 5682 | { 5683 | "name": "Buffalo Police", 5684 | "url": "https://airtable.com/embed/shra4F3cAE7H2PV5m?backgroundColor=gray&viewControls=on" 5685 | }, 5686 | { 5687 | "name": "postcert", 5688 | "url": "https://post.coag.gov/s/?tabset-1eada=4b5ff" 5689 | } 5690 | ] 5691 | }, 5692 | { 5693 | "category": "[CAN] POLICE", 5694 | "tools": [ 5695 | { 5696 | "name": "Alberta Police Misconduct Database", 5697 | "url": "https://www.policemisconductdatabase.ca/database/" 5698 | }, 5699 | { 5700 | "name": "RCMP Death Search", 5701 | "url": "https://c0cqk108.caspio.com/dp/9156100036f195cdf0934662917c" 5702 | }, 5703 | { 5704 | "name": "RCMP Death Search 2", 5705 | "url": "https://c0cqk108.caspio.com/dp/915610007f161cceda514e33a0b7" 5706 | }, 5707 | { 5708 | "name": "RCMP Death Search 3", 5709 | "url": "https://b2.caspio.com/dp/91561000c38ca49de99e4ecf9619" 5710 | } 5711 | ] 5712 | }, 5713 | { 5714 | "category": "INFORMANT", 5715 | "tools": [ 5716 | { 5717 | "name": "WhosaRat.com", 5718 | "url": "https://whosarat.com/" 5719 | }, 5720 | { 5721 | "name": "Snitch List", 5722 | "url": "https://web.archive.org/web/20200115091633/http://sniitch.com/all/" 5723 | }, 5724 | { 5725 | "name": "Goldensnitches", 5726 | "url": "https://goldensnitches.com/" 5727 | } 5728 | ] 5729 | }, 5730 | { 5731 | "category": "SEX OFFENDER", 5732 | "tools": [ 5733 | { 5734 | "name": "OSINT list of public sex offenders registers – osintme.com", 5735 | "url": "https://www.osintme.com/index.php/2021/08/31/osint-list-of-public-sex-offenders-registers/" 5736 | }, 5737 | { 5738 | "name": "NSOPW", 5739 | "url": "https://www.nsopw.gov/" 5740 | }, 5741 | { 5742 | "name": "Sex Offender Registry Websites", 5743 | "url": "https://www.fbi.gov/scams-and-safety/sex-offender-registry" 5744 | }, 5745 | { 5746 | "name": "Sex Offender Korea", 5747 | "url": "https://www.sexoffender.go.kr/indexN.nsc" 5748 | }, 5749 | { 5750 | "name": "Manitoba Sex Offender", 5751 | "url": "https://www.gov.mb.ca/justice/commsafe/notification/index.html" 5752 | }, 5753 | { 5754 | "name": "Convicted Alberta Sex Offender", 5755 | "url": "http://stoppedophiles.ca/convicted-AB.html" 5756 | }, 5757 | { 5758 | "name": "Convicted Sex Offenders List", 5759 | "url": "https://www.ibbclaims.co.uk/site/services/child-abuse-and-trafficking/convicted-offenders/" 5760 | }, 5761 | { 5762 | "name": "Family Watchdog", 5763 | "url": "https://www.familywatchdog.us/" 5764 | }, 5765 | { 5766 | "name": "Nigeria Sexual Offenders Registers", 5767 | "url": "https://nsod.naptip.gov.ng/view_cases.php" 5768 | }, 5769 | { 5770 | "name": "Rejestr Sprawców Przestępstw na Tle Seksualnym", 5771 | "url": "https://rps.ms.gov.pl/pl-PL/Public#/home" 5772 | }, 5773 | { 5774 | "name": "Maldives Sex Offender", 5775 | "url": "http://www.offenders.mv/offenders/" 5776 | } 5777 | ] 5778 | }, 5779 | { 5780 | "category": "RESIDENT DATABASE", 5781 | "tools": [ 5782 | { 5783 | "name": "Michigan Resident Database", 5784 | "url": "https://www.michiganresidentdatabase.com/" 5785 | }, 5786 | { 5787 | "name": "Ohio Resident Database", 5788 | "url": "https://www.ohioresidentdatabase.com/" 5789 | }, 5790 | { 5791 | "name": "Florida Residents Directory", 5792 | "url": "https://www.floridaresidentsdirectory.com/" 5793 | }, 5794 | { 5795 | "name": "North Carolina Resident Database", 5796 | "url": "https://northcarolinaresidentdatabase.com/" 5797 | }, 5798 | { 5799 | "name": "NY Rent Regulated Building Search", 5800 | "url": "https://apps.hcr.ny.gov/BuildingSearch/" 5801 | } 5802 | ] 5803 | }, 5804 | { 5805 | "category": "PUBLIC RECORDS", 5806 | "tools": [ 5807 | { 5808 | "name": "JudyRecords", 5809 | "url": "https://www.judyrecords.com/" 5810 | }, 5811 | { 5812 | "name": "CourtListener", 5813 | "url": "https://www.courtlistener.com/" 5814 | }, 5815 | { 5816 | "name": "Public Access to Court Electronic Records", 5817 | "url": "https://pacer.uscourts.gov/" 5818 | }, 5819 | { 5820 | "name": "Parallelsearch case law", 5821 | "url": "https://parallelsearch.casetext.com/" 5822 | }, 5823 | { 5824 | "name": "Canadian Legal Information Institute", 5825 | "url": "https://www.canlii.org/en/" 5826 | }, 5827 | { 5828 | "name": "Supreme Court of Canada - Cases", 5829 | "url": "https://www.scc-csc.ca/case-dossier/index-eng.aspx" 5830 | }, 5831 | { 5832 | "name": "Offender Tracking Information System (OTIS)", 5833 | "url": "https://mdocweb.state.mi.us/OTIS2/otis2.aspx" 5834 | }, 5835 | { 5836 | "name": "New York State Prison Records", 5837 | "url": "https://stevemorse.org/prison/prison.html" 5838 | }, 5839 | { 5840 | "name": "Texas Public Records Search", 5841 | "url": "https://publicrecords.searchsystems.net/United_States_Free_Public_Records_by_State/Texas_Public_Records/" 5842 | }, 5843 | { 5844 | "name": "Arrest Bookings Search and Report", 5845 | "url": "https://b2.caspio.com/dp/a1a3100009b7083c53a9405f8c6b" 5846 | }, 5847 | { 5848 | "name": "Credibly Accused", 5849 | "url": "https://projects.propublica.org/credibly-accused/" 5850 | }, 5851 | { 5852 | "name": "Sortedbybirthdate", 5853 | "url": "https://sortedbybirthdate.com/" 5854 | }, 5855 | { 5856 | "name": "NJParcels.com", 5857 | "url": "http://njparcels.com/property/" 5858 | }, 5859 | { 5860 | "name": "Social Security Death Master File", 5861 | "url": "https://ssdmf.info/" 5862 | }, 5863 | { 5864 | "name": "SortedByName.com", 5865 | "url": "https://sortedbyname.com/" 5866 | }, 5867 | { 5868 | "name": "Cemetery.directory", 5869 | "url": "https://cemetery.directory/" 5870 | }, 5871 | { 5872 | "name": "Social Security Death Index", 5873 | "url": "https://stevemorse.org/ssdi/ssdi.html" 5874 | }, 5875 | { 5876 | "name": "FamilySearch's United States Record Collections", 5877 | "url": "https://stevemorse.org/fhl/websitesunitedstates.html" 5878 | }, 5879 | { 5880 | "name": "Chicago Cook County Genealogy", 5881 | "url": "https://stevemorse.org/vital/cook.html" 5882 | }, 5883 | { 5884 | "name": "BoatInfoWorld", 5885 | "url": "https://www.boatinfoworld.com/" 5886 | }, 5887 | { 5888 | "name": "51,000 University of Michigan employee salaries", 5889 | "url": "https://www.mlive.com/news/ann-arbor/2020/12/see-the-2020-salaries-for-all-45000-university-of-michigan-employees.html" 5890 | }, 5891 | { 5892 | "name": "Street Name Changes", 5893 | "url": "https://stevemorse.org/census/changes.html" 5894 | }, 5895 | { 5896 | "name": "Brooklyn Genealogy", 5897 | "url": "http://bklyn-genealogy-info.stevemorse.org/index.html" 5898 | }, 5899 | { 5900 | "name": "Little Rock AR Crime Search", 5901 | "url": "https://b2.caspio.com/dp.asp?AppKey=88321000961d92fc4ed343f38a0e" 5902 | }, 5903 | { 5904 | "name": "New England Facts", 5905 | "url": "https://newenglandfacts.com/" 5906 | }, 5907 | { 5908 | "name": "Michigan State Records", 5909 | "url": "https://michigan.staterecords.org/" 5910 | }, 5911 | { 5912 | "name": "Cancelthesefunerals.com", 5913 | "url": "http://cancelthesefunerals.com/" 5914 | }, 5915 | { 5916 | "name": "Independent fundamental Baptist sexual misconduct database", 5917 | "url": "https://datawrapper.dwcdn.net/UyECh/20/" 5918 | }, 5919 | { 5920 | "name": "York County PA 2017 Write in Report", 5921 | "url": "https://b2.caspio.com/dp/0a9210000bece9f2f50642ff9cac" 5922 | }, 5923 | { 5924 | "name": "PA teacher salary average", 5925 | "url": "https://b2.caspio.com/dp/0a921000a059622d4771466aab79" 5926 | }, 5927 | { 5928 | "name": "High schools that received NRA grants 2010-2016", 5929 | "url": "https://b4.caspio.com/dp/55073000c492127ebd8d4a03a06a" 5930 | }, 5931 | { 5932 | "name": "Corrections Books Approval Search", 5933 | "url": "https://b2.caspio.com/dp/0a921000cae47f9702f44d2bb94b" 5934 | }, 5935 | { 5936 | "name": "Wisconsin Fox River Veterans' Grave Registration Database", 5937 | "url": "https://c3cqk813.caspio.com/dp/b201500011643c5f4c7f4bfba7d1" 5938 | }, 5939 | { 5940 | "name": "OH marijuana docs", 5941 | "url": "https://c0eru132.caspio.com/dp/95d310003d6c2e38182a48ef9bb2" 5942 | }, 5943 | { 5944 | "name": "FAFSA Search and Report", 5945 | "url": "https://c0dcb948.caspio.com/dp/726780004ccd83a96316450caead" 5946 | }, 5947 | { 5948 | "name": "AL Local Surety Association Directory", 5949 | "url": "https://c0gaf106.caspio.com/dp/2d4e1000c7506b7686a540d3b10f" 5950 | }, 5951 | { 5952 | "name": "Ohio obituaries, death & marriage Search", 5953 | "url": "https://c0abe732.caspio.com/dp/679e5000cbc8c6a587bb42efa9ef" 5954 | }, 5955 | { 5956 | "name": "SECO Verification of Course Attendance 2018", 5957 | "url": "https://c0esh132.caspio.com/dp/9040200005c29c35a74342e2b357" 5958 | }, 5959 | { 5960 | "name": "IUS The Horizon Search and Report", 5961 | "url": "https://c0acy802.caspio.com/dp/cf3b6000f61f1e0724984cb28f5c" 5962 | }, 5963 | { 5964 | "name": "Katrina Spending Search", 5965 | "url": "https://b2.caspio.com/dp/a4321000cb4905373d1946e5b33f" 5966 | }, 5967 | { 5968 | "name": "AR College University 2017 Salaries", 5969 | "url": "https://b2.caspio.com/dp.asp?AppKey=883210005c5e51279b424364aab2" 5970 | }, 5971 | { 5972 | "name": "The Weapons ID Database", 5973 | "url": "http://www.smallarmssurvey.org/weapons-and-markets/tools/weapons-id-database.html" 5974 | }, 5975 | { 5976 | "name": "Yearbooks", 5977 | "url": "https://www.e-yearbook.com/" 5978 | }, 5979 | { 5980 | "name": "Yearbooks | High School Yearbooks | Ancestry", 5981 | "url": "https://www.ancestry.com/search/collections/1265/" 5982 | }, 5983 | { 5984 | "name": "Yearbooks - MyHeritage", 5985 | "url": "https://www.myheritage.com/research/category-10010/yearbooks" 5986 | } 5987 | ] 5988 | }, 5989 | { 5990 | "category": "GOVERNMENT", 5991 | "tools": [ 5992 | { 5993 | "name": "data.occrp.org", 5994 | "url": "https://data.occrp.org/" 5995 | }, 5996 | { 5997 | "name": "The Pegasus Project | OCCRP", 5998 | "url": "https://cdn.occrp.org/projects/project-p/#/" 5999 | }, 6000 | { 6001 | "name": "COP26 registered attendees", 6002 | "url": "https://datawrapper.dwcdn.net/UCUWs/3/" 6003 | }, 6004 | { 6005 | "name": "MuckRock", 6006 | "url": "https://www.muckrock.com/" 6007 | }, 6008 | { 6009 | "name": "GovSalaries", 6010 | "url": "https://govsalaries.com/" 6011 | }, 6012 | { 6013 | "name": "Openpayrolls.com", 6014 | "url": "https://openpayrolls.com/" 6015 | }, 6016 | { 6017 | "name": "SeeThroughNY :: Pensions", 6018 | "url": "https://www.seethroughny.net/pensions" 6019 | }, 6020 | { 6021 | "name": "Scotussearch.com", 6022 | "url": "https://www.scotussearch.com/" 6023 | }, 6024 | { 6025 | "name": "Nonprofit Explorer", 6026 | "url": "https://projects.propublica.org/nonprofits/" 6027 | }, 6028 | { 6029 | "name": "Coronavirus Bailouts", 6030 | "url": "https://projects.propublica.org/coronavirus/bailouts/" 6031 | }, 6032 | { 6033 | "name": "Nursing Home Inspect", 6034 | "url": "https://projects.propublica.org/nursing-homes/" 6035 | }, 6036 | { 6037 | "name": "Macron Campaign Emails", 6038 | "url": "https://wikileaks.org//macron-emails/" 6039 | }, 6040 | { 6041 | "name": "DNC email database", 6042 | "url": "https://wikileaks.org//dnc-emails/" 6043 | }, 6044 | { 6045 | "name": "GI Files", 6046 | "url": "https://search.wikileaks.org/gifiles/" 6047 | }, 6048 | { 6049 | "name": "AKP email database", 6050 | "url": "https://wikileaks.org//akp-emails/" 6051 | }, 6052 | { 6053 | "name": "LittleSis", 6054 | "url": "https://littlesis.org/" 6055 | }, 6056 | { 6057 | "name": "Lexington KY Employee Salaries 2021", 6058 | "url": "https://c0ect130.caspio.com/dp/c852100055664d756c6e441aa963" 6059 | }, 6060 | { 6061 | "name": "Greater Sacramento Area Public Salaries", 6062 | "url": "https://b2.caspio.com/dp/c48210000605c38aa22f4080a1be" 6063 | }, 6064 | { 6065 | "name": "Illinois Public Salaries", 6066 | "url": "https://c0ctb111.caspio.com/dp/1a7210001e4dbabdb7204962bc03" 6067 | }, 6068 | { 6069 | "name": "St. Louis County salaries fiscal 2020", 6070 | "url": "https://c0bkr141.caspio.com/dp/936b1000d0c132c8cbbb4f0c8c1f" 6071 | }, 6072 | { 6073 | "name": "Milwaukee Wisconsin City Employee Salaries 2019", 6074 | "url": "https://c0ebl104.caspio.com/dp/eab010008ed5ca97d7404269bf89" 6075 | }, 6076 | { 6077 | "name": "Texas Local Superintendent Salaries Search and Report", 6078 | "url": "https://b3.caspio.com/dp/5a5b1000b41b35162a3844b4b7ec" 6079 | }, 6080 | { 6081 | "name": "Baytown TX Employee Directory", 6082 | "url": "https://c0ctb134.caspio.com/dp/c5f5200097e7aef4edb54e09bd5e" 6083 | }, 6084 | { 6085 | "name": "MA Middlesex County City employee salary 2019", 6086 | "url": "https://c0eib112.caspio.com/dp/6ee01000497ba7e2d63b46229a99" 6087 | }, 6088 | { 6089 | "name": "KY State Salary 2019", 6090 | "url": "https://c0ect130.caspio.com/dp/c8521000065e102da08c40e696ad" 6091 | }, 6092 | { 6093 | "name": "UKY Salaries 2019", 6094 | "url": "https://c0ect130.caspio.com/dp/c8521000eca729c2125e46c487fd" 6095 | }, 6096 | { 6097 | "name": "Mobile AL Salaries Search and Report", 6098 | "url": "https://b2.caspio.com/dp/362210004ae292fb5cf34f0fb079" 6099 | }, 6100 | { 6101 | "name": "NC State Government Salaries Search and Report", 6102 | "url": "https://b2.caspio.com/dp/96073000345d59bc5b1744109afe", 6103 | "description": "The State Personnel Salary database lists all state government employees and their salary, department and position. It does not include Public School, General Assembly, University System or UNC Hospitals employees. The salary reflects the current base pay only and does not include supplemental wages (bonus, overtime, longevity, etc.)." 6104 | }, 6105 | { 6106 | "name": "NC State Employee Overtime 2018 Search and Report", 6107 | "url": "https://c0eib112.caspio.com/dp/6ee01000325ae85bbfe24ade9bea" 6108 | }, 6109 | { 6110 | "name": "PA 2017 Certificate Actions (Education)", 6111 | "url": "https://b2.caspio.com/dp/0a9210006dbe656876084f9b9f59" 6112 | }, 6113 | { 6114 | "name": "First Philadelphia Preparatory Charter School Staff Public Release 2017", 6115 | "url": "https://b2.caspio.com/dp/0a921000842668d3d3e644d2bd8f" 6116 | }, 6117 | { 6118 | "name": "PA School Districts Deeds user-facing web search", 6119 | "url": "https://b2.caspio.com/dp/0a92100000938817df46468fa2a0" 6120 | }, 6121 | { 6122 | "name": "PA Perry County 2017 Compensation Search and Report", 6123 | "url": "https://b2.caspio.com/dp/0a921000e05cf4b592b245aeae20" 6124 | }, 6125 | { 6126 | "name": "Gettysburg PA Adams County 2017 Payroll Search and Report", 6127 | "url": "https://b2.caspio.com/dp/0a9210006f0ddf22afd8417f9711" 6128 | }, 6129 | { 6130 | "name": "Lebanon County PA 2017 Search and Report", 6131 | "url": "https://b2.caspio.com/dp/0a9210001cc98f2f21004ce4a3d4" 6132 | }, 6133 | { 6134 | "name": "Dauphin County PA 2017 Compensation", 6135 | "url": "https://b2.caspio.com/dp/0a921000a2f20d556db84221a92c" 6136 | }, 6137 | { 6138 | "name": "York City PA Compensation", 6139 | "url": "https://b2.caspio.com/dp/0a92100001903125816c4d34a37a" 6140 | }, 6141 | { 6142 | "name": "York County VA 2017 Public Salaries", 6143 | "url": "https://b2.caspio.com/dp/0a921000b12e238357df42e7affc" 6144 | }, 6145 | { 6146 | "name": "OH Court Costs", 6147 | "url": "https://b2.caspio.com/dp/95d31000da9841d5980644c98761" 6148 | }, 6149 | { 6150 | "name": "German Gov Employee Database (Unknown)", 6151 | "url": "https://c0acz339.caspio.com/dp/E171600054612b9f79fb4ddf8f2b" 6152 | }, 6153 | { 6154 | "name": "Brazillian Address CEP Search and Report", 6155 | "url": "https://c2abn462.caspio.com/dp/6c2d80006c6adb825b3b45079cb8" 6156 | }, 6157 | { 6158 | "name": "Darpan NGO Search", 6159 | "url": "https://c7ect427.caspio.com/dp/c45e900062d54a7f263942979465" 6160 | }, 6161 | { 6162 | "name": "UNC System employees with the biggest paychecks", 6163 | "url": "https://c0dzk127.caspio.com/dp/b95b1000e0821c125a8a43cd9cc1" 6164 | }, 6165 | { 6166 | "name": "HEALTHCARE EDUCATION PROVIDERS", 6167 | "url": "https://c3dug085.caspio.com/dp/1fec4000740ace75fdb94ec5bca5" 6168 | }, 6169 | { 6170 | "name": "Cal Poly Email Search", 6171 | "url": "https://c0acw966.caspio.com/dp/5dbe60009c7190a3b0bb407eaea0" 6172 | }, 6173 | { 6174 | "name": "Dutchess and Ulster bridge safety ratings 2015", 6175 | "url": "https://b2.caspio.com/dp.asp?AppKey=996f1000109b0cd3b24b408daf60" 6176 | }, 6177 | { 6178 | "name": "Lou Barletta 2017 Donors", 6179 | "url": "https://b2.caspio.com/dp/0a9210001cdd2eaac90941488478" 6180 | }, 6181 | { 6182 | "name": "Worcester MA Employee Gross Pay", 6183 | "url": "https://c0acu481.caspio.com/dp/e0536000108787410ed749fdb240" 6184 | } 6185 | ] 6186 | }, 6187 | { 6188 | "category": "[CAN] GOVERNMENT", 6189 | "tools": [ 6190 | { 6191 | "name": "Advanced Registry Search", 6192 | "url": "https://lobbycanada.gc.ca/app/secure/ocl/lrs/do/advSrch?lang=eng" 6193 | }, 6194 | { 6195 | "name": "Statistics Canada", 6196 | "url": "https://www150.statcan.gc.ca/n1/en/type/data?HPA=1" 6197 | }, 6198 | { 6199 | "name": "Canada Gazette", 6200 | "url": "https://www.gazette.gc.ca/accueil-home-eng.html" 6201 | }, 6202 | { 6203 | "name": "Completed Access to Information Requests", 6204 | "url": "https://open.canada.ca/en/search/ati" 6205 | }, 6206 | { 6207 | "name": "Canadian Importers Database", 6208 | "url": "https://strategis.ic.gc.ca/eic/site/cid-dic.nsf/eng/home" 6209 | }, 6210 | { 6211 | "name": "Canadian Institute for Health Information", 6212 | "url": "https://www.cihi.ca/en" 6213 | }, 6214 | { 6215 | "name": "Association-assq.qc.ca", 6216 | "url": "https://www.association-assq.qc.ca/" 6217 | }, 6218 | { 6219 | "name": "Trouver une décision", 6220 | "url": "http://citoyens.soquij.qc.ca/" 6221 | }, 6222 | { 6223 | "name": "Regional Municipality of Durham", 6224 | "url": "https://opendata.durham.ca/" 6225 | }, 6226 | { 6227 | "name": "Find a Teacher", 6228 | "url": "https://www.oct.ca/Home/FindATeacher" 6229 | }, 6230 | { 6231 | "name": "INFO-GO", 6232 | "url": "https://www.infogo.gov.on.ca/infogo/home.html" 6233 | }, 6234 | { 6235 | "name": "Employee Contact Directory Search | novascotia.ca", 6236 | "url": "https://novascotia.ca/psc/geds/" 6237 | }, 6238 | { 6239 | "name": "Search for Open Information Documents", 6240 | "url": "https://www2.gov.bc.ca/gov/search?id=0882CD53C45A4AE1A42D5E22D8712AD8" 6241 | }, 6242 | { 6243 | "name": "Search the Open Information Catalogue", 6244 | "url": "https://www2.gov.bc.ca/gov/search?id=9199E7BC9682482EB9EA0B6D6B8D386C" 6245 | }, 6246 | { 6247 | "name": "Registrant directory", 6248 | "url": "https://www.cpsbc.ca/public/registrant-directory" 6249 | }, 6250 | { 6251 | "name": "Government staff directory", 6252 | "url": "https://www.alberta.ca/staff-directory.cfm" 6253 | }, 6254 | { 6255 | "name": "Canadian Intellectual Property Office", 6256 | "url": "https://www.ic.gc.ca/eic/site/cipointernet-internetopic.nsf/eng/Home" 6257 | }, 6258 | { 6259 | "name": "Gouvernement du Québec", 6260 | "url": "https://www.donneesquebec.ca/organisation/gouvernement-du-quebec/" 6261 | }, 6262 | { 6263 | "name": "Library and Archives Canada (LAC)", 6264 | "url": "https://www.bac-lac.gc.ca/eng/Pages/home.aspx" 6265 | }, 6266 | { 6267 | "name": "Montreal Council of Social Agencies Database", 6268 | "url": "http://www.archives.mcgill.ca/resources/db/mcsasearch.htm" 6269 | }, 6270 | { 6271 | "name": "Media Room & Blue Book", 6272 | "url": "https://media.utoronto.ca/" 6273 | }, 6274 | { 6275 | "name": "Resources.library.ubc.ca", 6276 | "url": "https://resources.library.ubc.ca/" 6277 | }, 6278 | { 6279 | "name": "Security Licence Status Verification", 6280 | "url": "https://justice.gov.bc.ca/security/utilities/" 6281 | } 6282 | ] 6283 | }, 6284 | { 6285 | "category": "[CAN] CORPORATION", 6286 | "tools": [ 6287 | { 6288 | "name": "RJSC Connect", 6289 | "url": "https://rjsc.novascotia.ca/" 6290 | }, 6291 | { 6292 | "name": "Search for a Federal Corporation", 6293 | "url": "https://www.ic.gc.ca/app/scr/cc/CorporationsCanada/fdrlCrpSrch.html?locale=en_CA" 6294 | }, 6295 | { 6296 | "name": "FederalCorporation", 6297 | "url": "https://federalcorporation.ca/" 6298 | }, 6299 | { 6300 | "name": "Corporate Affairs Registry Database", 6301 | "url": "https://www.pxw2.snb.ca/card_online/cardsearch.aspx" 6302 | }, 6303 | { 6304 | "name": "MRAS Business Registry Search", 6305 | "url": "https://beta.canadasbusinessregistries.ca/search" 6306 | }, 6307 | { 6308 | "name": "Alberta Business Search", 6309 | "url": "https://albertacorporations.com/" 6310 | }, 6311 | { 6312 | "name": "LeoList", 6313 | "url": "https://www.leolist.cc/" 6314 | }, 6315 | { 6316 | "name": "Toronto Star", 6317 | "url": "https://misc.thestar.com/interactivegraphic/2019/07-july/25-housing-complaints-database/index.html" 6318 | }, 6319 | { 6320 | "name": "Rental in Canada", 6321 | "url": "https://www.n49.com/search/rental/1/canada/" 6322 | }, 6323 | { 6324 | "name": "Manitoba Assessment Online", 6325 | "url": "https://www.gov.mb.ca/mao/public/search_select.aspx" 6326 | }, 6327 | { 6328 | "name": "Search for Company Documents", 6329 | "url": "https://www.sedar.com/search/search_form_pc_en.htm" 6330 | }, 6331 | { 6332 | "name": "Business Directory | OCC", 6333 | "url": "https://occ.ca/business-directory/" 6334 | }, 6335 | { 6336 | "name": "Rechercher par entreprise", 6337 | "url": "https://www.pes.rbq.gouv.qc.ca/RegistreLicences/Recherche?mode=Entreprise" 6338 | }, 6339 | { 6340 | "name": "Rechercher par répondant", 6341 | "url": "https://www.pes.rbq.gouv.qc.ca/RegistreLicences/Recherche?mode=Repondant" 6342 | }, 6343 | { 6344 | "name": "Rechercher par région ou type de travaux", 6345 | "url": "https://www.pes.rbq.gouv.qc.ca/RegistreLicences/Recherche?mode=RegionTypeTravaux" 6346 | }, 6347 | { 6348 | "name": "Services en ligne", 6349 | "url": "https://www.pes.ctq.gouv.qc.ca/pes/faces/dossierclient/recherche.jsp" 6350 | }, 6351 | { 6352 | "name": "Alcool - Régie des alcools, des courses et des jeux (RACJ)", 6353 | "url": "https://www.racj.gouv.qc.ca/en/registres-publics/alcool.html" 6354 | }, 6355 | { 6356 | "name": "BAnQ numérique", 6357 | "url": "https://numerique.banq.qc.ca/resultats" 6358 | }, 6359 | { 6360 | "name": "Online Services PEI Business / Corporate Registry", 6361 | "url": "https://www.princeedwardisland.ca/en/feature/pei-business-corporate-registry-original#/service/LegacyBusiness/LegacyBusinessSearch" 6362 | }, 6363 | { 6364 | "name": "XBRL Voluntary Filing Program", 6365 | "url": "https://www.sedar.com/issuers/issuers_en.htm" 6366 | }, 6367 | { 6368 | "name": "Registrant Lookup", 6369 | "url": "https://www.cdsbc.org/home/registrant-lookup#/lookup/dentists" 6370 | } 6371 | ] 6372 | } 6373 | ] 6374 | --------------------------------------------------------------------------------