https://github.com/OSINTI4L/cupidcr4wl
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.
https://github.com/OSINTI4L/cupidcr4wl
cupidcr4wl hacking information-gathering open-source-intelligence osint osint-tool phone-number phone-number-search username-checker username-enumeration username-osint username-search
Last synced: 7 months ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/OSINTI4L/cupidcr4wl
- Owner: OSINTI4L
- Created: 2025-04-13T20:41:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-01T05:20:56.000Z (8 months ago)
- Last Synced: 2025-07-01T06:26:12.715Z (8 months ago)
- Topics: cupidcr4wl, hacking, information-gathering, open-source-intelligence, osint, osint-tool, phone-number, phone-number-search, username-checker, username-enumeration, username-osint, username-search
- Language: Python
- Homepage:
- Size: 152 KB
- Stars: 21
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
- cybersources - Cupidcr4wl
- awesome-osint - Cupidcr4wl - Username and phone number search tool that crawls adult content platforms to see if a targeted account or person is present. ([↑](#-table-of-contents) Username Check / [↑](#-table-of-contents) GitHub)
README
# 💘 cupidcr4wl 💘
**[Version 2.1](https://github.com/OSINTI4L/cupidcr4wl/releases/tag/cupidcr4wl-v2.1)**
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](https://github.com/OSINTI4L/cupidcr4wl/blob/main/.github/CONTRIBUTING.md) 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.
⚠️**WARNING**⚠️
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](https://github.com/OSINTI4L/cupidcr4wl/blob/main/.github/LEReportingResources.md) section to report it.
## [Installation](#installation) | [Usage](#usage) | [Contributing](https://github.com/OSINTI4L/cupidcr4wl/blob/main/.github/CONTRIBUTING.md) | [Documentation](https://github.com/OSINTI4L/cupidcr4wl/wiki)
## Requirements
- Python 3.6 or higher
- ```requests```
- ```rich```
## Installation
1) Clone the repository:
```git clone https://github.com/OSINTI4L/cupidcr4wl```
2) Change directories to cupidcr4wl:
```cd cupidcr4wl```
3) Install the requirements:
```pip install -r requirements.txt```
## Usage
1) 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.
```
2) 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```
3) 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```
4) To perform a search of multiple phone numbers simultaneously separate them by commas (with no spaces):
```python3 cc.py -p 1234567890,123-456-7890```
5) 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```
6) To view a list of all sites that cupidcr4wl will search by username:
```python3 cc.py --username-sites```
7) To view a list of all sites that cupidcr4wl will search by phone number:
```python3 cc.py --phone-number-sites```
8) 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](https://github.com/OSINTI4L/cupidcr4wl/wiki/Usage-Options) section)