HuntPastebin is a command-line tool designed to search for leaked information on the web using the psbdmp.ws API. It can search for domains, emails, or perform a general search.
-
Clone the repository:
git clone https://github.com/pr0d33p/huntPastebin.git
-
Navigate to the project directory:
cd huntPastebin
-
Install the required dependencies:
pip install -r requirements.txt
To search for information related to a domain, use:
python huntPastebin.py -d domain.com
To search for information related to an email, use:
python huntPastebin.py -e foo@bar.com
To perform a general search, use:
python huntPastebin.py -g search_term
-
Number of Threads (
-t
): Control how many threads the tool uses for searching. Default is 10. Example:python huntPastebin.py -d domain.com -t 20
-
Rate Limit (
-r
): Set a delay between requests to avoid hitting API rate limits. Default is 0 (no delay). Example:python huntPastebin.py -d domain.com -r 2
The tool saves the results in text files within a directory named according to the search type. Each file contains the content of the search result. It also provides a simple progress update as it works.
For a domain search with a custom number of threads and rate limit:
python huntPastebin.py -d domain.com -t 20 -r 1
This command searches for domain.com
using 20 threads and waits 1 second between requests.