Hash Finder

Data & APIs

Crack and identify hashes by attempting to match them against known hash databases and common plaintext values.

Install

openclaw skills install hash-finder

Overview

The Hash Finding Tool is a security utility designed to identify the plaintext values behind cryptographic hashes. By leveraging extensive hash databases and intelligent matching algorithms, this tool helps security professionals, penetration testers, and incident responders quickly determine the original values of captured or discovered hashes.

This tool supports common hash types and performs rapid lookups against curated datasets of known hash-plaintext pairs. It is ideal for password auditing, forensic analysis, breach investigation, and general security research where hash identification is required.

Whether you're validating password strength in a security assessment or recovering plaintext from discovered hashes during an incident, the Hash Finding Tool provides fast, accurate results through a simple API interface.

Usage

Request Example:

{
  "hash": "5d41402abc4b2a76b9719d911017c592"
}

Response Example:

{
  "hash": "5d41402abc4b2a76b9719d911017c592",
  "plaintext": "hello",
  "hash_type": "MD5",
  "found": true,
  "confidence": 0.99
}

Endpoints

POST /crack-hash

Description:
Attempts to crack or identify a given hash by matching it against known hash databases and common plaintext values.

Method: POST
Path: /crack-hash

Request Parameters:

NameTypeRequiredDescription
hashstringYesThe hash value to crack. Accepts MD5, SHA-1, SHA-256, and other common hash formats.

Response Schema:

The response returns a JSON object containing:

FieldTypeDescription
hashstringThe input hash that was queried.
plaintextstringThe plaintext value if a match was found; null if not found.
hash_typestringThe detected or inferred hash algorithm type (e.g., "MD5", "SHA-1", "SHA-256").
foundbooleantrue if a match was located in the database; false otherwise.
confidencenumberA confidence score between 0 and 1 indicating the likelihood of an accurate match.

Status Codes:

  • 200 OK — Hash lookup completed successfully.
  • 422 Unprocessable Entity — Validation error (e.g., missing or malformed hash parameter).

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in — 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.mkkpro.com/security/hash-finder
  • API Docs: https://api.mkkpro.com:8008/docs