cupidcr4wl is an open-source intelligence username and phone number 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 and Gifting | Social | Dating and hook-up | Fetish | 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. As web developers update site code, it is inevitabile that at some point certain results may be inaccurate. Contributing is a helpful way of alerting to these inaccuracies so they can be fixed. You can also submit a site to be added 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.
-
Python 3.6 or higher
-
requests
-
rich
-
- 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] [-p PHONENUMBER] [-u USERNAME] [--export-results] [--debug]
[--username-sites] [--phone-number-sites]
A tool for checking if a username or phone number exists across various adult content
platforms.
options:
-h, --help show this help message and exit
-p PHONENUMBER Enter a phone number or multiple phone numbers (separated by commas)
to search.
-u USERNAME Enter a username or multiple usernames (separated by commas) to
search.
--export-results Search results will be exported to an HTML file named
'cc_results.html' 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.
--username-sites Prints all sites that cupidcr4wl will search by username.
--phone-number-sites Prints all sites that cupidcr4wl will search by phone number.
- To perform a search of a username:
python3 cc.py -u username
Due to how different platforms structure their URL parameters 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 simultaneously separate them by commas (with no spaces):
python3 cc.py -u username1,username2,username3
To perform a search of a phone number:
python3 cc.py -p 1234567890
Due to how different platforms structure their URL parameters it is recommended to run your target username in multiple different variations. E.g.,
1234567890
123-456-7890
- To perform a search of multiple phone numbers simultaneously separate them by commas (with no spaces):
python3 cc.py -p 1234567890,123-456-7890
- To export a copy of the search results to an HTML file named 'cc_results.html' in the current working directory:
python3 cc.py -u username --export-results
- To view a list of all sites that cupidcr4wl will search by username:
python3 cc.py --username-sites
- To view a list of all sites that cupidcr4wl will search by phone number:
python3 cc.py --phone-number-sites
- To run cupidcr4wl in debug mode to test for false positives/negatives and display timeouts/errors add the
--debug
argument:
python3 cc.py -u username --debug
(more can be read on this mode in the documentation section)