Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/osinti4l/cupidcr4wl

An Open-Source Intelligence username search tool that crawls adult content platforms to see if a targeted account or person is present.
https://github.com/osinti4l/cupidcr4wl

cybersecurity hacking intelligence-gathering open-source-intelligence opensourceintelligence osint osint-tool username-search

Last synced: 9 days ago
JSON representation

An Open-Source Intelligence username search tool that crawls adult content platforms to see if a targeted account or person is present.

Awesome Lists containing this project

README

        

# 💘 cupidcr4wl 💘
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:

**Adult photo, video, and camming platforms | Dating, hook-up, and social platforms | Escort service platforms**

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. 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.

⚠️**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/LEReportingResources.md) section to report it.

## [Installation](#installation) | [Usage](#usage) | [Contributing](https://github.com/OSINTI4L/cupidcr4wl/blob/main/.github/CONTRIBUTING.md)

![demogifcomp](https://github.com/user-attachments/assets/e2853512-6fae-4b01-a173-b25995a2de69)

## 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] [-u USERNAME] [--export-results] [--debug] [--sites]
A tool for checking if an account exists across various websites.
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'.

--debug Debug mode, shows HTTP response codes and check_text/not_found_text
matches for each site checked.

--sites Print all sites that cupidcr4wl will check.
```
2) To perform a search of a username:

    ```python3 cc.py -u username```

3) To perform a search of multiple usernames:

    ```python3 cc.py -u username1,username2,username3```

4) To export a copy of the search results to a text document:

    ```python3 cc.py -u username --export-results```

    The results will be saved as cc_results.txt in the current working directory.

5) To view a list of all sites that cupidcr4wl will search:

    ```python3 cc.py --sites```

6) To run cupidcr4wl in debug mode to test for false positives/negatives:

    ```python3 cc.py -u username --debug```

    (More can be read on this mode in the wiki documentation)