> For the complete documentation index, see [llms.txt](https://viperone.gitbook.io/pentest-everything/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://viperone.gitbook.io/pentest-everything/everything/everything-osint/social-media-osint-tools.md).

# Social Media OSINT Tools

## Facebook

### Fuck Facebook (TM)

URL: <https://4wbwa6vcpvcr3vvf4qkhppgy56urmjcj2vagu2iqgp3z656xcmfdbiqd.onion.pet/>

<figure><img src="/files/swUcw9eLKroDuTS4U0mB" alt=""><figcaption></figcaption></figure>

**Database:** <https://github.com/davidfegyver/facebook-533m>

After download fix the file formatting:

```
sed -i -r 's/ [0-9]{2}:[0-9]{2}:[0-9]{2} AM//g' USA.txt
```

## Instagram

### OSintgram

**Github:** <https://github.com/Datalux/Osintgram>

**Install:** <https://github.com/Datalux/Osintgram#installation-%EF%B8%8F>

```
git clone https://github.com/Datalux/Osintgram.git
pip install -r requirements.txt
```

Once installed ensure your sock puppet Instagram account details are entered into `/config/credentils.ini`.

**Usage:** <https://github.com/Datalux/Osintgram#tools-and-commands->

## Reddit

### Reddit-Analyzer

**Github:** <https://github.com/sshell/reddit-analyzer>

**Install**

```bash
git clone https://github.com/sshell/reddit-analyzer.git

# If missing module ascii_graphs
pip install ascii_graphs
```

**Usage**

```bash
python3 reddit-analyzer.py "<Username>"
```

![](/files/Z6IHWENm1P3voQrnpvcm)

## Snapchat

### Snapchat Username Checker

**Github:** <https://github.com/SudoSuu/SnapchatUsernameChecker>

**Install:** <https://github.com/SudoSuu/SnapchatUsernameChecker#installing>

```bash
git clone https://github.com/SudoSuu/SnapchatUsernameChecker.git
cd SnapchatUsernameChecker
pip3 install -r requirements.txt
python3 snapchat.py
```

![](/files/TJkmx0gQ7BD4WFYRBy4r)

## Twitter

### Twint

**Github:** <https://github.com/twintproject/twint>

**Install**

```bash
git clone --depth=1 https://github.com/twintproject/twint.git
cd twint
pip3 install . -r requirements.txt
```

**Usage:** <https://github.com/twintproject/twint#cli-basic-examples-and-combos> **And** <https://github.com/twintproject/twint#followersfollowing>

Better usage examples are shown above. However, some are shown below.

```bash
# Scrape tweets from a user
twint -u <User>

# Scrape keywords from a specific user
twint -u <User> -s <Word>

# Scrape keywords from verified users
twint -s "Doge" --verified

# Scrape followers from a specific user
twint -u <User> --followers

# Scrape who a specific user is following
twint -u <User> --following

# Scrape tweets from a specified date
twint -u <User> --since 2015-12-20

# Output results to a CSV file.
twint -u <User> -o <File.csv> --csv
```

![](/files/6qXdu3BLc17AaykgxRZR)
