Packages and Binaries:

tookie-osint

OSINT information gathering tool for finding social media accounts
Tookie-osint has a simple-to-use UI and is really straightforward. The main idea of Tookie-osint is to discover usernames that are requested from an input. Tookie-osint is similar to the tool called Sherlock. It discovers all the user accounts across different websites and Tookie-osint is successful at this task almost 80% of the time.

Installed size: 1.12 MB
How to install: sudo apt install tookie-osint

Dependencies:
  • chromium-driver
  • python3
  • python3-colorama
  • python3-requests
  • python3-selenium
  • python3-webdriver-manager
tookie-osint
root@kali:~# tookie-osint -h
usage: tookie-osint [-h] (-u USER | -U USERFILE) [-t THREADS] [-d] [-sk]
                    [-p PROXY] [-W] [-o {txt,csv,json}] [-D DELAY] [-a] [-H]

Username OSINT scanner

options:
  -h, --help            show this help message and exit
  -u, --user USER       Username to scan
  -U, --userfile USERFILE
                        File path to username file
  -t, --threads THREADS
                        Threads. Defualt is 2
  -d, --debug           Allows debugging options
  -sk, --skipheaders    skips using random user agents
  -p, --proxy PROXY     proxy
  -W, --webscraper      Toggles uses the webscraper
  -o, --output {txt,csv,json}
                        Output format (txt, csv, json)
  -D, --delay DELAY     Delay webscraper should wait for the page to load
  -a, --all             Show all results (positive and negative)
  -H, --harvest         Webscrape data from the sites

Examples:
  Basic scan (default txt output):
    tookie-osint -u alfred

  JSON output with 10 threads:
    tookie-osint -u alfred -o json -t 10

  Scan usernames from a file:
    tookie-osint -U users.txt -o csv

  Use proxy and show all results:
    tookie-osint -u alfred -p http://127.0.0.1:8080 -a

  Skip random headers:
    tookie-osint -u alfred --skipheaders

  Use webscraper:
    tookie-osint -u alfred -W -H

  Use a user file list
    tookie-osint -U users.txt -t 20



Updated on: 2026-May-25