├── .github └── workflows │ ├── check-for-dupe-url.yml │ └── validate-json.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── sample.json ├── whatsmyname.png ├── wmn-data-schema.json └── wmn-data.json /.github/workflows/check-for-dupe-url.yml: -------------------------------------------------------------------------------- 1 | name: Check for Duplicate check_uri 2 | on: [pull_request] 3 | 4 | jobs: 5 | duplicate-url-checker: 6 | runs-on: ubuntu-latest 7 | defaults: 8 | run: 9 | shell: bash 10 | steps: 11 | - uses: actions/checkout@v3 12 | - name: Check for duplicate in new JSON 13 | run: if [ $(grep "uri_check" wmn-data.json | cut -f4 -d'"' | grep -v "replit.com" | uniq -D | head -1) ]; then echo "Found duplicate in wmn-data.json!"; exit 1; else echo "No duplicates found"; fi 14 | shell: bash 15 | -------------------------------------------------------------------------------- /.github/workflows/validate-json.yml: -------------------------------------------------------------------------------- 1 | name: Validate JSON 2 | on: [pull_request] 3 | jobs: 4 | verify-json-validation: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - uses: actions/checkout@v3 8 | 9 | - name: Validate JSON 10 | uses: docker://orrosenblatt/validate-json-action:latest 11 | env: 12 | INPUT_SCHEMA: /wmn-data-schema.json 13 | INPUT_JSONS: /wmn-data.json 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### JetBrains template 3 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 4 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 5 | 6 | # User-specific stuff 7 | .idea/**/workspace.xml 8 | .idea/**/tasks.xml 9 | .idea/**/usage.statistics.xml 10 | .idea/**/dictionaries 11 | .idea/**/shelf 12 | 13 | # Generated files 14 | .idea/**/contentModel.xml 15 | 16 | # Sensitive or high-churn files 17 | .idea/**/dataSources/ 18 | .idea/**/dataSources.ids 19 | .idea/**/dataSources.local.xml 20 | .idea/**/sqlDataSources.xml 21 | .idea/**/dynamic.xml 22 | .idea/**/uiDesigner.xml 23 | .idea/**/dbnavigator.xml 24 | 25 | # Gradle 26 | .idea/**/gradle.xml 27 | .idea/**/libraries 28 | 29 | # Gradle and Maven with auto-import 30 | # When using Gradle or Maven with auto-import, you should exclude module files, 31 | # since they will be recreated, and may cause churn. Uncomment if using 32 | # auto-import. 33 | # .idea/artifacts 34 | # .idea/compiler.xml 35 | # .idea/jarRepositories.xml 36 | # .idea/modules.xml 37 | # .idea/*.iml 38 | # .idea/modules 39 | # *.iml 40 | # *.ipr 41 | 42 | # CMake 43 | cmake-build-*/ 44 | 45 | # Mongo Explorer plugin 46 | .idea/**/mongoSettings.xml 47 | 48 | # File-based project format 49 | *.iws 50 | 51 | # IntelliJ 52 | out/ 53 | 54 | # mpeltonen/sbt-idea plugin 55 | .idea_modules/ 56 | 57 | # JIRA plugin 58 | atlassian-ide-plugin.xml 59 | 60 | # Cursive Clojure plugin 61 | .idea/replstate.xml 62 | 63 | # Crashlytics plugin (for Android Studio and IntelliJ) 64 | com_crashlytics_export_strings.xml 65 | crashlytics.properties 66 | crashlytics-build.properties 67 | fabric.properties 68 | 69 | # Editor-based Rest Client 70 | .idea/httpRequests 71 | 72 | # Android studio 3.1+ serialized cache file 73 | .idea/caches/build_file_checksums.ser 74 | /.venv/ 75 | /Pipfile 76 | /Pipfile.lock 77 | /.idea/ 78 | 79 | # VS Code 80 | .vscode/ 81 | 82 | # Virtualenv 83 | venv/ 84 | .venv/ 85 | 86 | # Byte-compiled / optimized / DLL files 87 | __pycache__/ 88 | *.py[cod] 89 | 90 | # C extensions 91 | *.so 92 | 93 | # Distribution / packaging 94 | bin/ 95 | build/ 96 | develop-eggs/ 97 | dist/ 98 | eggs/ 99 | lib/ 100 | lib64/ 101 | parts/ 102 | sdist/ 103 | var/ 104 | *.egg-info/ 105 | .installed.cfg 106 | *.egg 107 | 108 | # Installer logs 109 | pip-log.txt 110 | pip-delete-this-directory.txt 111 | 112 | # Unit test / coverage reports 113 | .tox/ 114 | .coverage 115 | .cache 116 | nosetests.xml 117 | coverage.xml 118 | 119 | # Translations 120 | *.mo 121 | 122 | # Mr Developer 123 | .mr.developer.cfg 124 | .project 125 | .pydevproject 126 | 127 | # Rope 128 | .ropeproject 129 | 130 | # Django stuff: 131 | *.log 132 | *.pot 133 | 134 | # Sphinx documentation 135 | docs/_build/ 136 | 137 | /.env 138 | 139 | # Apple 140 | .DS_Store 141 | 142 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, caste, color, religion, or sexual 11 | identity and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the overall 27 | community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or advances of 32 | any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email address, 36 | without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official email address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at `micah` `@` 64 | `myosint.training`. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning 85 | 86 | **Community Impact**: A violation through a single incident or series of 87 | actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or permanent 94 | ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within the 114 | community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.1, available at 120 | [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. 121 | 122 | Community Impact Guidelines were inspired by 123 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. 124 | 125 | For answers to common questions about this code of conduct, see the FAQ at 126 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at 127 | [https://www.contributor-covenant.org/translations][translations]. 128 | 129 | [homepage]: https://www.contributor-covenant.org 130 | [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html 131 | [Mozilla CoC]: https://github.com/mozilla/diversity 132 | [FAQ]: https://www.contributor-covenant.org/faq 133 | [translations]: https://www.contributor-covenant.org/translations 134 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | You can contribute to the project in at least a couple ways. 2 | 3 | ## Method 1. Non-technical 4 | 5 | Suggest a new site to be covered by the tool. 6 | 7 | How to do that: 8 | 9 | - Find the new site which has public profiles of people (with no authentication required) 10 | - Use [this form](https://forms.office.com/r/TscnNQqrD1) to tell us about it.... OR.... 11 | - Create a Github Issue and submit the link to an example profile. You can 12 | do that by navigating to [Issues](https://github.com/WebBreacher/WhatsMyName/issues) 13 | and clicking "New issue" 14 | 15 | 16 | ## Method 2. Technical, no programming skills required 17 | 18 | Requires a basic understanding of how Web/HTTP works (HTTP status codes, how 19 | what you see in a website translates to the source code). 20 | And some experience in Github contributions (fork, pull-request). 21 | 22 | Implement support for a new site or fix an existing implementation for a site. 23 | 24 | How to do that: 25 | 26 | - Among existing [Issues](https://github.com/WebBreacher/WhatsMyName/issues) 27 | or from somewhere else, establish which site you want to add 28 | - Using a web client of your choice (preferred `curl` or `wget`) perform 29 | simple requests for two different scenarios: existing profile, 30 | non-existing profile, e.g. 31 | ``` 32 | # existing 33 | curl https://infosec.exchange/WebBreacher 34 | 35 | # non-existing 36 | curl https://infosec.exchange/ThisDoesNotExistForSure504 37 | ``` 38 | - Observe the outcome for non-existing profile. Some sites use 404 (error), some use 302 39 | (redirection), some confusingly use 200 (OK) for profiles which don't exist. 40 | ``` 41 | $ curl https://github.com/ThisDoesNotExistForSure504 42 | [...] 43 | HTTP request sent, awaiting response... 404 Not Found 44 | ``` 45 | - Observe the outcome for existing profile. The response code should be 200. 46 | And among the downloaded source code find a text expected to be observed in 47 | all profiles. Avoid picking a text which might be dynamic (e.g. include the 48 | profile name). 49 | This seems right: 50 | ``` 51 |

You are browsing the profile of 52 | ``` 53 | This is too specific: 54 | ``` 55 |

You are browsing the profile of WebBreacher

56 | ``` 57 | This is too general: 58 | ``` 59 | the profile 60 | ``` 61 | - Add a section to `wmn-data.json` 62 | - Test your configuration by running a tool for a given site 63 | - Submit a pull request with that change 64 | - There is also the `sample.json` file that you can use for testing. Simply replace the existing content with new data and test. 65 | 66 | ## Format of the JSON File 67 | 68 | ### Format of the JSON file 69 | 70 | #### Alphabetize by "Name" 71 | 72 | We try to keep the entries in the `wmn-data.json` file alphabetized (A-Z) by the `name` value. So you can find `"name" : "Github"` earlier in the file than `"name" : "Snapchat"`. 73 | 74 | #### `wmn-data.json` JSON has 3 main elements 75 | 76 | 1. License - The license for this project and its data 77 | 2. Authors - The people that have recently contributed to this project 78 | 3. Sites - This is the main data 79 | 80 | Within the `sites` elements, the format is as follows (with several parameters being optional): 81 | 82 | ```json 83 | ... 84 | { 85 | "name" : "name of the site", 86 | "uri_check" : "URI to check the site with the {account} string replaced by a username", 87 | "uri_pretty" : "[OPTIONAL] if the check_uri is for an API, this element can show a human-readable page", 88 | "post_body" : "[OPTIONAL] if non-empty, then this entry is an HTTP POST and the content of this field are the data", 89 | "strip_bad_char" : "[OPTIONAL] checking apps should ignore or strip these characters from usernames", 90 | "e_code" : "the HTTP response code for a good 'account is there' response as an integer", 91 | "e_string" : "the string in the response that we look for for a good response", 92 | "m_string" : "this string will only be in the response if there is no account found", 93 | "m_code" : "the HTTP response code for a bad 'account is not there' response as an integer", 94 | "known" : ["a list of user accounts that can be used to test", "for user enumeration"], 95 | "cat" : "a category for what the site is mainly used for. The current categories are found at the top of the JSON", 96 | "valid" : "[OPTIONAL] single value of False. If it is present and False, then checkers should skip this site", 97 | "protection" : "[OPTIONAL] a list of 1 or more site protections like: [captcha, cloudflare, userauth, multiple, other]", 98 | "headers": {"[OPTIONAL] a dictionary of headers that should be passed to a site"} 99 | }, 100 | ... 101 | ``` 102 | 103 | Here are examples of the site elements for both HTTP GET and HTTP POST entries: 104 | 105 | **HTTP GET entry:** 106 | 107 | ```json 108 | { 109 | "name" : "Example GET", 110 | "uri_check" : "https://www.example.com/load_profile_info.php?name={account}", 111 | "uri_pretty" : "https://www.test.com/profile/{account}", 112 | "e_code" : 200, 113 | "e_string" : "regist_at", 114 | "m_code" : 404, 115 | "m_string" : "Account not found", 116 | "known" : ["whoami", "johndoe"], 117 | "cat" : "images", 118 | "protection" : ["captcha", "cloudflare"], 119 | "headers" : { 120 | "accept": "text/html" 121 | } 122 | }, 123 | ``` 124 | 125 | **HTTP POST entry:** 126 | 127 | ```json 128 | { 129 | "name" : "Example POST", 130 | "uri_check" : "https://www.example.com/interact_api/load_profile_info.php", 131 | "post_body" : "Name=Gareth+Wylie&Age=24&Formula=a%2Bb+%3D%3D+21", 132 | "e_code" : 200, 133 | "e_string" : "regist_at", 134 | "m_code" : 404, 135 | "m_string" : "Account not found", 136 | "known" : ["whoami", "johndoe"], 137 | "cat" : "images" 138 | }, 139 | ``` 140 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (C) 2025 Micah Hoffman 2 | 3 | This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. 4 | To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, 5 | PO Box 1866, Mountain View, CA 94042, USA. 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | # WhatsMyName 6 | 7 | What is WhatsMyName? It is a project that [Micah "WebBreacher" Hoffman](https://webbreacher.com) created in 2015 with the goal of discovering if usernames were used on a given website. He was frustrated with the false positives that were present in the username checkers of that time and so he made his own. Fast forward to today and many people have helped this open-source project evolve into what it is today. 8 | 9 | If you are an OSINT person that has come here to run the tool, well, you are probably a bit disappointed right now. In May 2023, we removed all checker scripts from the project and focus on the project's core: its data file (`wmn-dat.json`). 10 | 11 | So, we will keep finding sites and adding them and you can feel free to try any of the checker sites and scripts below that use our data. 12 | 13 | 14 | ## How Does It Work? 15 | 16 | WhatsMyName (WMN) consists of a JSON file with detections in it. Submissions from people all over the world are included. When a request is made to one of those sites from a tool like the ones in the next section, the server replies with data that will match one of our detections. It'll tell the checker script whether there is a valid user account with the name we specified on their site or not. 17 | 18 | For a site to be included in WMN it has to: 19 | 20 | 1. **Be accessible.** _We cannot check sites behind paywalls or user authentication._ 21 | 2. **Put the username in the URL.** _If the URL to view a user's profile does not have that username in it, this tool won't work._ 22 | 3. **Not modify the username in the URL.** _URLs that have added user ID numbers to the username will not work in WMN. Also, sites that take your username and map it to a user ID number and then put that in the URL will not work._ 23 | 24 | 25 | ## Tools/Web Sites Using WhatsMyName 26 | 27 | * https://whatsmyname.app/ - [Chris Poulter](https://twitter.com/osintcombine) created this site which draws the project's JSON file into an easy to use web interface. 28 | * Filters for category and in search results. 29 | * Exports to CSV and other formats. 30 | * Pulls the latest version of the project's JSON file when run. 31 | * Submit a username in the URL using `https://whatsmyname.app/?q=USERNAME` like https://whatsmyname.app/?q=john 32 | * [Who Am I](https://chromewebstore.google.com/detail/who-am-i/gdnhlhadhgnhaenfcphpeakdghkccfoo) Google/Brave extension that not only integrates WhatsMyName's data but Sherlock and Maigret username checkers as well. Made by [OSINT Liar](https://osintliar.com/). 33 | * [Naminter](https://github.com/3xp0rt/Naminter) developed specifically for the **Whats My Name** list with a beautiful console interface, browser impersonating, capable of bypassing Cloudflare and other basic protection, concurrent checking, and extensive configuration options. 34 | * [Blackbird](https://github.com/p1ngul1n0/blackbird) uses the **Whats My Name** list in its search. 35 | * [K2OSINT Bookmarklet](https://github.com/K2SOsint/Bookmarklets/blob/main/WhatsMyName.js) - Bookmarklet that lets you enter a username in a popup and then opens a new tab with the WMN results. 36 | * [LinkScope](https://github.com/AccentuSoft/LinkScope_Client) uses this in the **Whats My Name** resolution under the **Online Identity** category. 37 | * [Maltego WhatsMyName Transforms](https://github.com/TURROKS/Maltego_WhatsMyName) - **Maltego Local Transforms** that leverage the JSON file and check for usernames in real time. 38 | * [Reveal My Name](https://github.com/yooper/reveal-my-name) is created by [@yooper](https://github.com/yooper) and is the Python checker tool that was bundled with this project. 39 | * [sn0int](https://github.com/kpcyrd/sn0int) downloads and uses the JSON file in the [kpcyrd/whatsmyname](https://sn0int.com/r/kpcyrd/whatsmyname) module, see https://twitter.com/sn0int/status/1228046880459907073 for details and instructions. 40 | * [Spiderfoot](https://github.com/smicallef/spiderfoot) uses this in the **sfp_account** module. There is also [this video](https://asciinema.org/a/295923) showing how to use this project using the Spiderfoot Command Line Interface (CLI). 41 | * [WhatsMyName-Python](https://github.com/C3n7ral051nt4g3ncy/WhatsMyName-Python) **Whats My Name** simple Python script made by [@C3n7ral051nt4g3ncy](https://github.com/C3n7ral051nt4g3ncy) 42 | * [WMN_screenshooter](https://github.com/swedishmike/WMN_screenshooter) a helper script that uses Selenium to try and grab screenshots of identified profile pages. 43 | * [WhatsMyName-Client](https://github.com/grabowskiadrian/WhatsMyName-Client) a simple Python script with 'request headers' and 'POST requests' support made by [@grabowskiadrian](https://github.com/grabowskiadrian). The script also allows you to test the configuration of the wmn-data.json file. 44 | * [WhatsMyName-Web](https://github.com/AXRoux/WhatsMyName-Web) **Whats My Name-Web** is a simple Flask web app iteration of WhatsMyName made by [@AXRoux](https://github.com/AXRoux/) 45 | * [WhatsMyName Docker](https://github.com/kodamaChameleon/wmn-docker) is a Docker API Wrapper over this WhatsMyName tool. Dockerization made by [@kodamaChameleon](https://github.com/kodamaChameleon) 46 | 47 | ## Content 48 | 49 | If you would like to help with detections, we are happy to accept them via: 50 | 1. GitHub pull request or ... 51 | 2. [Create an issue](https://github.com/WebBreacher/WhatsMyName/issues) with the details of the site or ... 52 | 3. Use [this form](https://forms.office.com/r/TscnNQqrD1). 53 | 54 | 55 | ## Format 56 | 57 | See [CONTRIBUTING](CONTRIBUTING.md) 58 | 59 | 60 | # License 61 | 62 | Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. 63 | 64 | 65 | # Social Media 66 | Stay up to date with our project by following our BlueSky Account. 67 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Reporting a Vulnerability 4 | 5 | To report a vulnerability, please create an [Issue](https://github.com/WebBreacher/WhatsMyName/issues) in this project or send an email to `micah` `@` `myosint.training` 6 | -------------------------------------------------------------------------------- /sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "_comment1": "Do not submit your changes in this sample.json file as it is only for testing!", 3 | 4 | "categories" : ["archived","art","blog","business","coding","dating","finance","gaming","health", 5 | "hobby","images","misc","music","news","political","search","shopping","social", 6 | "tech","video","xx NSFW xx"], 7 | 8 | "sites" : [ 9 | { 10 | "name" : "Example GET", 11 | "uri_check" : "https://www.example.com/load_profile_info.php?name={account}", 12 | "uri_pretty" : "https://www.test.com/profile/{account}", 13 | "e_code" : 200, 14 | "e_string" : "regist_at", 15 | "m_code" : 404, 16 | "m_string" : "Account not found", 17 | "known" : ["whoami", "johndoe"], 18 | "cat" : "images" 19 | }, 20 | { 21 | "name" : "Example POST", 22 | "uri_check" : "https://www.example.com/interact_api/load_profile_info.php", 23 | "post_body" : "Name=Gareth+Wylie&Age=24&Formula=a%2Bb+%3D%3D+21", 24 | "strip_bad_char" : ".", 25 | "e_code" : 200, 26 | "e_string" : "regist_at", 27 | "m_code" : 404, 28 | "m_string" : "Account not found", 29 | "known" : ["whoami", "johndoe"], 30 | "cat" : "images", 31 | "protection" : ["captcha"], 32 | "headers": { 33 | "accept": "text/html" 34 | } 35 | } 36 | ] 37 | } 38 | -------------------------------------------------------------------------------- /whatsmyname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/WhatsMyName/4ec90c4d1267288fb0e88aac05b9b3c3c3fb964f/whatsmyname.png -------------------------------------------------------------------------------- /wmn-data-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "definitions": {}, 3 | "$schema": "http://json-schema.org/draft-07/schema#", 4 | "$id": "https://example.com/object1658520065.json", 5 | "title": "Root", 6 | "type": "object", 7 | "required": [ 8 | "license", 9 | "authors", 10 | "categories", 11 | "sites" 12 | ], 13 | "properties": { 14 | "license": { 15 | "$id": "#root/license", 16 | "title": "License", 17 | "type": "array", 18 | "default": [], 19 | "items":{ 20 | "$id": "#root/license/items", 21 | "title": "Items", 22 | "type": "string", 23 | "default": "", 24 | "examples": [ 25 | "Copyright (C) 2025 Micah Hoffman" 26 | ], 27 | "pattern": "^.*$" 28 | } 29 | }, 30 | "authors": { 31 | "$id": "#root/authors", 32 | "title": "Authors", 33 | "type": "array", 34 | "default": [], 35 | "items":{ 36 | "$id": "#root/authors/items", 37 | "title": "Items", 38 | "type": "string", 39 | "default": "", 40 | "examples": [ 41 | "WebBreacher" 42 | ], 43 | "pattern": "^.*$" 44 | } 45 | }, 46 | "categories": { 47 | "$id": "#root/categories", 48 | "title": "Categories", 49 | "type": "array", 50 | "default": [], 51 | "items":{ 52 | "$id": "#root/categories/items", 53 | "title": "Items", 54 | "type": "string", 55 | "default": "", 56 | "examples": [ 57 | "archived" 58 | ], 59 | "pattern": "^.*$" 60 | } 61 | }, 62 | "sites": { 63 | "$id": "#root/sites", 64 | "title": "Sites", 65 | "type": "array", 66 | "default": [], 67 | "items":{ 68 | "$id": "#root/sites/items", 69 | "title": "Items", 70 | "type": "object", 71 | "required": [ 72 | "name", 73 | "uri_check", 74 | "e_code", 75 | "e_string", 76 | "m_string", 77 | "m_code", 78 | "known", 79 | "cat" 80 | ], 81 | "properties": { 82 | "name": { 83 | "$id": "#root/sites/items/name", 84 | "title": "Name", 85 | "type": "string", 86 | "default": "", 87 | "examples": [ 88 | "101010.pl" 89 | ], 90 | "pattern": "^.*$" 91 | }, 92 | "uri_check": { 93 | "$id": "#root/sites/items/uri_check", 94 | "title": "Uri_check", 95 | "type": "string", 96 | "default": "", 97 | "examples": [ 98 | "https://101010.pl/@{account}" 99 | ], 100 | "pattern": "^.*$" 101 | }, 102 | "post_body": { 103 | "$id": "#root/sites/items/post_body", 104 | "title": "Post_body", 105 | "type": "string", 106 | "default": "", 107 | "examples": [ 108 | "" 109 | ], 110 | "pattern": "^.*$" 111 | }, 112 | "strip_bad_char": { 113 | "$id": "#root/sites/items/strip_bad_char", 114 | "title": "Strip_bad_char", 115 | "type": "string", 116 | "default": "", 117 | "examples": [ 118 | "." 119 | ], 120 | "pattern": "^.*$" 121 | }, 122 | "e_code": { 123 | "$id": "#root/sites/items/e_code", 124 | "title": "E_code", 125 | "type": "integer", 126 | "default": "", 127 | "examples": [ 128 | 200 129 | ], 130 | "pattern": "^.*$" 131 | }, 132 | "e_string": { 133 | "$id": "#root/sites/items/e_string", 134 | "title": "E_string", 135 | "type": "string", 136 | "default": "", 137 | "examples": [ 138 | "@101010.pl" 139 | ], 140 | "pattern": "^.*$" 141 | }, 142 | "m_string": { 143 | "$id": "#root/sites/items/m_string", 144 | "title": "M_string", 145 | "type": "string", 146 | "default": "", 147 | "examples": [ 148 | "The page you are looking for isn't here." 149 | ], 150 | "pattern": "^.*$" 151 | }, 152 | "m_code": { 153 | "$id": "#root/sites/items/m_code", 154 | "title": "M_code", 155 | "type": "integer", 156 | "default": "", 157 | "examples": [ 158 | 404 159 | ], 160 | "pattern": "^.*$" 161 | }, 162 | "known": { 163 | "$id": "#root/sites/items/known", 164 | "title": "Known", 165 | "type": "array", 166 | "default": [], 167 | "items":{ 168 | "$id": "#root/sites/items/known/items", 169 | "title": "Items", 170 | "type": "string", 171 | "default": "", 172 | "examples": [ 173 | "szekspir" 174 | ], 175 | "pattern": "^.*$" 176 | } 177 | }, 178 | "cat": { 179 | "$id": "#root/sites/items/cat", 180 | "title": "Cat", 181 | "type": "string", 182 | "default": "", 183 | "examples": [ 184 | "social" 185 | ], 186 | "pattern": "^.*$" 187 | }, 188 | "valid": { 189 | "$id": "#root/sites/items/valid", 190 | "title": "Valid", 191 | "type": "boolean", 192 | "examples": [ 193 | true 194 | ], 195 | "default": "" 196 | }, 197 | "protection": { 198 | "$id": "#root/sites/items/protection", 199 | "title": "Protection", 200 | "type": "array", 201 | "default": [], 202 | "items":{ 203 | "$id": "#root/sites/items/protection/items", 204 | "title": "Items", 205 | "type": "string", 206 | "default": "", 207 | "examples": [ 208 | "cloudflare", "captcha" 209 | ], 210 | "pattern": "^.*$" 211 | } 212 | }, 213 | "headers": { 214 | "$id": "#root/sites/items/headers", 215 | "title": "Headers", 216 | "type": "object", 217 | "default": [], 218 | "items":{ 219 | "$id": "#root/sites/items/headers/items", 220 | "title": "Items", 221 | "type": "string", 222 | "default": "", 223 | "examples": [ 224 | {"accept": "text/html"} 225 | ], 226 | "pattern": "^.*$" 227 | } 228 | } 229 | } 230 | } 231 | 232 | } 233 | } 234 | } 235 | --------------------------------------------------------------------------------