hashes.com Escrow API Tool
Hash Cracking
3
Posts
1
Posters
563
Views
1
Watching
-
Title
: hashes.com-escrow-tool
Author
: cyclone
URL
: https://github.com/cyclone-github/hashes.com-escrow-tool
Description
:
Tool written in Go for interacting with https://hashes.com escrow's API.
###################################################################### # Cyclone's Hashes.com API Escrow Tool v1.1.1 # # github.com/cyclone-github/hashes.com-escrow-tool # # This tool requires an API key from hashes.com # # 'Search Hashes' requires credits # # See hashes.com for more info # ###################################################################### API key verified Select an option: 1. Upload Founds 2. Upload History 3. Download Left Lists 4. Search Hashes 5. Hash Identifier 6. Wallet Balance 7. Show Profit 8. Withdrawal History 9. Monitor Escrow WebSocket n. Enter New API r. Remove API Key c. Clear Screen q. Quit
Tool written in Go for interacting with https://hashes.com escrow's API. Currently supports all known API calls from hashes.com.
Inspiration from Plum's python3 CLI tool:
https://github.com/PlumLulz/hashes.com-cliFeatures:
- Upload Founds
- Select from file list
- Paste custom file path
- Paste hash:plaintext
- Show Upload History
- Download List Lists
- Search Hashes (requires credits from hashes.com)
- Hash Identifier
- Wallet Balance
- Show Profit
- Withdraw History
- Monitor Escrow WebSocket
- Saves API key locally with AES encrypted key file
Usage:
- Run tool normally
escrow_tool
- Start tool in websocket escrow monitor mode (can be used to monitor escrow and/or pipe escrow job json into external program)
escrow_tool -websocket
escrow_tool -websocket | jq
escrow_tool -websocket | escrow_cracking_bot
Compile from source:
- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
- This assumes you have Go and Git installed
git clone https://github.com/cyclone-github/hashes.com-escrow-tool.git
# clone repocd hashes.com-escrow-tool
# enter project directorygo mod init escrow_tool
# initialize Go module (skips if go.mod exists)go mod tidy
# download dependenciesgo build -ldflags="-s -w" .
# compile binary in current directorygo install -ldflags="-s -w" .
# compile binary and install to $GOPATH
- Compile from source code how-to:
Changelog:
Mentions:
- hashes.com offical docs: https://hashes.com/docs
- hashpwn forum: https://forum.hashpwn.net/post/76
- Upload Founds
-
New version released.
https://github.com/cyclone-github/hashes.com-escrow-tool/releases/tag/v1.1.1Changelog: updated print statements to use stdout / stderr where applicable beta: added escrow websocket monitor (option #9) beta: added -websocket flag to start tool in escrow websocket monitor mode