cupidcr4wl is an Open-Source Intelligence username search tool that crawls adult content platforms to see if a targeted account or person is present. The need for a tool of this manner derived from missing persons investigations where dating, adult video/photo platforms, and concerns of human trafficking were found relevant.
cupidcr4wl searches the following platforms:
Payment | Gifting | Link directory | Social | Dating and hook-up | Adult video and photo | Camming | Escort
Please see the contributing section if you find cupidcr4wl is returning false positive/negative results so it can be fixed. You can also submit a site to add to the cupidcr4wl search list!
The site list that cupidcr4wl utilizes for searching is updated for accuracy and expanded regularly.
cupidcr4wl will search and return results for platforms that host content for mature adult audiences. You are expected to use this tool in accordance with the laws and regulations in your respective jurisdiction(s). If while using cupidcr4wl you believe that you have discovered a platform hosting illegal content, you can utilize the law enforcement reporting resources section to report it.
- Clone the repository:
git clone https://github.com/OSINTI4L/cupidcr4wl
- Change directories to cupidcr4wl:
cd cupidcr4wl
- Install the requirements:
pip install -r requirements.txt
- To see all cupidcr4wl command line arguments:
python3 cc.py -h
or python3 cc.py --help
usage: cc.py [-h] [-u USERNAME] [--export-results] [--debug] [--sites] [--export-sites]
A tool for checking if a username exists across various platforms.
options:
-h, --help show this help message and exit
-u USERNAME Enter a username or multiple usernames (separated by commas) to search.
--export-results Search results will be exported to a text file named 'cc_results.txt' in
the current working directory.
--debug Debug mode shows all results, HTTP response codes, check_text/not_found_text
matches, timeouts, and errors for each site checked.
--sites Prints all sites that cupidcr4wl will search.
--export-sites Exports the list of sites that cupidcr4wl will search to a text file
named 'cc_sitelist.txt' in the current working directory.
- To perform a search of a username:
python3 cc.py -u username
Due to how different platforms structure their usernames it is recommended to run your target username in multiple different variations. E.g., janedoe,'jane doe',jane-doe,jdoe.
- To perform a search of multiple usernames separate them by commas (with no spaces):
python3 cc.py -u username1,username2,username3
- To export a copy of the search results to a text named 'cc_results.txt' in the current working directory:
python3 cc.py -u username --export-results
- To view a list of all sites that cupidcr4wl will search:
python3 cc.py --sites
- To export the list of all sites that cupidcr4wl will search to a text file named "cc_sitelist.txt" in the current working directory:
python3 cc.py --export-sites
- To run cupidcr4wl in debug mode to test for false positives/negatives and display timeouts/errors:
python3 cc.py -u username --debug
(more can be read on this mode in the documentation)