[Project deprecated - do not use anymore.]
A Typescript CLI utility for searching in the PwnDB 2 Tor Hidden service database for leaked password. Warning : Trying to get leaked password on domain or email you do not own is illegal.
[x] Filtering Inputs args
[x] Make http request through TOR Protocol
[x] Extract Data from RAW Html response
[x] Forge JSON response
1 - Install Tor Service
2 - Git clone this repo
3 -
npm install && npm run build && cd lib
4 -
node index.js %@domain or user@domain%
node index.js [email protected]
node index.js @myCorporateDomain.com
On Success
{
"count": 2,
"inputs": {
"domain": "pwndomain.com",
"username": "%"
},
"message": "You have been pwned... :(",
"outputs": [{
"domain": "pwndomain.com",
"password": "1234",
"username": "test"
}, {
"domain": "pwndomain.com",
"password": "ABCDE",
"username": "test2"
}],
"status": {
"code": 200,
"error": ""
}
}
On Error
{
"count": 0,
"inputs": {
"domain": "notpwndomain.com",
"username": "test"
},
"message": "No leak found for this query... :)",
"outputs": [],
"status": {
"code": 200,
"error": ""
}
}