← 返回 Skills 市场
0
总下载
1
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install weakpass
功能描述
Search hashes through 25 billion leaked passwords using the Weakpass API (no API key required).
使用说明 (SKILL.md)
\r \r
Weakpass\r
\r One primary service, no API keys needed.\r \r
API References:\r
\r
- https://weakpass.com/openapi.json\r
- https://weakpass.com/openapi.yaml\r
- https://weakpass.com/api\r \r Use the API references when you're stuck. Try the json reference before trying others.\r \r
Searching Hashes\r
\r Search supplied hash in the database. You do not need to specify exact hash type.\r \r Required arg: hash\r \r Hash must have size between 32 and 64 characters and contains only next chars - [A-Fa-f0-9]\r \r JSON:\r
curl -X 'GET' 'https://weakpass.com/api/v1/search/12345678902dd833fc9db9d72e9483c5.json' -H 'accept: application/json'\r
# Output: { "type": "md5", "hash": "12345678902dd833fc9db9d72e9483c5", "pass": "4kgdjv1"}\r
```\r
\r
Text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/search/12345678902dd833fc9db9d72e9483c5.txt' -H 'accept: text/plain'\r
# Output: md5;12345678902dd833fc9db9d72e9483c5;4kgdjv1\r
```\r
\r
## Searching Ranges\r
\r
Retrieve a list of hash-password pairs based on a specific prefix.\r
\r
Required arg: hash prefix\r
Optional args:\r
- filter: ["hash", "pass"]\r
- type: ["md5", "ntlm", "sha1", "sha256"]\r
\r
Hash prefix must have size between 6 and 64 characters and contains only next chars - [A-Fa-f0-9]\r
\r
If the hash filter is selected, it will return only hashes in the range of the hash prefix\r
\r
If the pass filter is selected, it will return only passwords in the range of the hash prefix\r
\r
Get hash-password pairs with a hash prefix range in JSON:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.json' -H 'accept: application/json'\r
# Output: [{"hash": "f2df2a00138a4f18bb49a8f16bc51dbd","pass": "m6o6veja5y"},{"hash":"f2df2a003215c2063f56f4dccd4a94b6","pass": "viDushiBhaDana"},{...}]\r
```\r
\r
Get hash-password pairs with a hash prefix range in text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.txt' -H 'accept: text/plain'\r
# Output: \r
# f2df2a00138a4f18bb49a8f16bc51dbd:m6o6veja5y\r
# f2df2a003215c2063f56f4dccd4a94b6:viDushiBhaDana\r
# f2df2a0063a32dc7e3c8ec9fb7a0328c:Carbel@\r
# ...\r
```\r
\r
Get hash-password pairs with a hash prefix range and a hash type in JSON:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.json?type=sha1' -H 'accept: application/json'\r
# Output: [{"hash": "f2df2a0059611f885f7c98eafcf70d9440f4166c","pass": "a`7^x"},{"hash":"f2df2a014638901607ec9570815bb9d25c0dccea","pass": "6984egon"},{...}]\r
```\r
\r
Get hash-password pairs with a hash prefix range and a hash type in text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.txt?type=sha1' -H 'accept: text/plain'\r
# Output:\r
# f2df2a0059611f885f7c98eafcf70d9440f4166c:a`7^x\r
# f2df2a014638901607ec9570815bb9d25c0dccea:6984egon\r
# f2df2a03cf01794e5171a94f7739fb9ccc060d2b:MelBay\r
# ...\r
```\r
\r
Get hashes with a hash prefix range and a filter for hashes in JSON:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.json?filter=hash' -H 'accept: application/json'\r
# Output: [{"hash": "f2df2a00138a4f18bb49a8f16bc51dbd"},{"hash": "f2df2a003215c2063f56f4dccd4a94b6"},{...}]\r
```\r
\r
Get hashes with a hash prefix range and a filter for hashes in text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.txt?filter=hash' -H 'accept: text/plain'\r
# Output:\r
# f2df2a00138a4f18bb49a8f16bc51dbd\r
# f2df2a003215c2063f56f4dccd4a94b6\r
# f2df2a0063a32dc7e3c8ec9fb7a0328c\r
# ...\r
```\r
\r
### Combining Filters and Types\r
\r
You can combine filters and types together.\r
\r
Get hashes with a hash prefix range, a filter for hashes, and a hash type in JSON:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.json?filter=hash&type=sha1' -H 'accept: application/json'\r
# Output: [{"hash": "f2df2a0059611f885f7c98eafcf70d9440f4166c"},{"hash": "f2df2a014638901607ec9570815bb9d25c0dccea"},{...}]\r
```\r
\r
Get hashes with a hash prefix range, a filter for hashes, and a hash type in text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.txt?filter=hash&type=sha1' -H 'accept: text/plain'\r
# Output:\r
# f2df2a0059611f885f7c98eafcf70d9440f4166c\r
# f2df2a014638901607ec9570815bb9d25c0dccea\r
# f2df2a03cf01794e5171a94f7739fb9ccc060d2b\r
# ...\r
```\r
\r
Get passwords with a hash prefix range, a filter for passwords, and a hash type in JSON:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.json?filter=pass&type=sha1' -H 'accept: application/json'\r
# Output: [{"pass": "a`7^x"},{"pass": "3"},{"pass":"MelBay"}. {"pass":"KORESSA3790"}, {...}]\r
```\r
\r
Get passwords with a hash prefix range, a filter for passwords, and a hash type in text/plain:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/range/f2df2a.txt?filter=pass&type=sha1' -H 'accept: text/plain'\r
# Output:\r
# a`7^x\r
# 6984egon\r
# MelBay\r
# ...\r
```\r
\r
## Generating Wordlists\r
\r
Generate wordlist for a certain words based on specific hashcat rules\r
\r
Required args:\r
\r
- word: the word to generate a wordlist on using the specified hashcat rules\r
\r
- set: [\r
"online.rule", "top_3000.rule", "top_1500.rule", "top_750.rule", "top_500.rule", "top_250.rule", \r
"nsa_64.rule", "numbers.rule", "numbers100.rule", "years_1900_2025.rule", "years.rule", "symbols.rule"\r
]\r
\r
- type: ["txt", "json"]\r
\r
\r
Generate a wordlist of the word "myword" with a rule set "online.rule" using type "txt":\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/generate/myword?set=online.rule&type=txt' -H 'accept: text/plain'\r
# Output:\r
# myword\r
# Myword\r
# MYWORD\r
# ...\r
```\r
\r
Generate a wordlist of the word "myword" with a rule set "top_3000.rule" using type "json":\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/generate/myword?set=top_3000.rule&type=json' -H 'accept: text/plain'\r
# Output: ["myword","yword","word","rd","ord","ywordm","wordmy","myword1","d","drowym",...]\r
```\r
\r
Yes, even though the type is json, the header is still `'accept: text/plain'`.\r
\r
## Getting Wordlists\r
\r
Retrieve available wordlists on Weakpass or get wordlists data in chunks of specified size.\r
\r
Getting available wordlists:\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/wordlists' -H 'accept: application/json'\r
# Output: \r
# 10_million_password_list_top_10000.txt\r
# hashmob.net.small.found.txt\r
# ignis-10K.txt\r
# nsa64.rule\r
# rockyou.txt\r
```\r
\r
Getting wordlist/rule data in chunks\r
\r
Required arg:\r
\r
wordlist: ["10_million_password_list_top_10000.txt", "hashmob.net.small.found.txt", "ignis-10K.txt", "nsa64.rule", "rockyou.txt"]\r
\r
```bash\r
curl -X 'GET' 'https://weakpass.com/api/v1/wordlists/10_million_password_list_top_10000.txt' -H 'accept: text/plain'\r
# Output: [file]\r
能力标签
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install weakpass - 安装完成后,直接呼叫该 Skill 的名称或使用
/weakpass触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of weakpass skill.
- Search hashes against 25 billion leaked passwords via the Weakpass API, no API key required.
- Lookup hash-password pairs in ranges with optional filters and hash type.
- Generate custom wordlists for given words using popular hashcat rules.
- Retrieve available wordlists and download their contents by chunk.
- Supports both JSON and text/plain responses for most endpoints.
元数据
常见问题
Weakpass 是什么?
Search hashes through 25 billion leaked passwords using the Weakpass API (no API key required). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 0 次。
如何安装 Weakpass?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install weakpass」即可一键安装,无需额外配置。
Weakpass 是免费的吗?
是的,Weakpass 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Weakpass 支持哪些平台?
Weakpass 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。
谁开发了 Weakpass?
由 Shaffan(@ibnaleem)开发并维护,当前版本 v1.0.0。
推荐 Skills