
Una herramienta en golang que utiliza la API de dehashed.com para buscar activos comprometidos.
Una herramienta en golang que utiliza la API de dehashed.com para buscar activos comprometidos. Los resultados se pueden compilar en un CSV para su posterior análisis.

Debes proporcionar una clave API a la herramienta. Consulta apikey_template.txt como ejemplo.
Para instalar la herramienta en CLI, ejecuta el siguiente comando. Tu $GOPATH debe estar configurado.
go get https://github.com/an00byss/godehashed
./godehashed -s email -i apikey.txt -e SOMEDOMAIN -o leaks.csv
Godehashed Usage():
-e string
Email we are searching for
-i string
Name of apikey to import.
-n string
Name we are searching for.
-o string
Outfile file name, will output in CSV Format.
-p int
Phone number we are searching for
-s string
Specify what we are searching for: "name", "email", "phone", "username" or "list". Then add corresponding switch.
-u string
Username we are searching for
-l list
Search a list of emails.
[!] Legal disclaimer: Usage of godehashed for attacking targets without
prior mutual consent is illegal. It is the end user's responsibility
to obey all applicable local, state and federal laws. Developers assume
no liability and are not responsible for any misuse or damage caused.
| Término de búsqueda | Ejemplos |
|---|
| Correo electrónico | godehashed -s email -i apikey.txt -e SOMEDOMAIN.com -o leaks.csv |
| Lista | godehashed -s list -e email -i apikey.txt -l list.txt -o leaks.csv |
| Nombre de usuario | godehashed -s username -i apikey.txt -u USERNAME -o leaks.csv |
| Nombre | godehashed -s name -i apikey.txt -n "Name" -o leaks.csv |
| Teléfono | godehashed -s phone -i apikey.txt -p "phonenumber" -o leaks.csv |