BeClaude

appleid-extract

New
1GitHub TrendingGeneralby 6Kmfi6HP

从 appleid-share.bitmusthk.com 自动提取共享 Apple ID 完整账号和密码。支持 OCR 验证码自动识别,输出 JSON/TXT 报告。

Summary

com, bypassing front-end masking and OCR captchas.

  • It saves developers time by programmatically collecting valid credentials and outputting structured JSON/TXT reports for testing or personal use.

Overview

Apple ID 共享站提取器

从 <https://appleid-share.bitmusthk.com/> 自动提取所有共享 Apple ID 的完整账号和密码,绕过前端打码限制。

触发方式

斜杠命令

code
/appleid-extract                   # 提取全部有效账号
/appleid-extract --ids 0,5,42      # 按 ID 提取
/appleid-extract --retry-failed    # 重试失败项
/appleid-extract --delay 1.5       # 自定义请求间隔

自然语言

"帮我提取 Apple ID 共享账号"

"获取免费苹果账号"

"提取 appleid-share 站点的账号"

工作流程

  1. 调用 get_accounts.php 获取完整账号列表(含打码用户名)
  2. 过滤 VIP 专享等无效账号
  3. 对每个有效账号过验证码:

- 请求 captcha.png → ddddocr 识别数学算式(如 "15+9") - 计算结果 → POST 验证 → 获取完整凭据

  1. 保存 JSON + TXT 报告

参数说明

参数类型默认值说明
--idsstring-指定账号 ID,逗号分隔
--retry-failedflag-重试之前提取失败的账号
--output-dirstring./output输出目录
--delayfloat0.8请求间隔(秒)
--max-retriesint3每个账号最大重试次数

输出文件

  • output/extracted.json — 成功提取的账号,格式:[{id, username, password, region}]
  • output/extracted.txt — 格式化报告,含地区分布统计
  • output/failed.json — 提取失败的账号,格式:[{id, username_masked, region}]

注意事项

  • 验证码识别使用 ddddocr,首次运行会自动下载模型文件
  • 请求间隔默认 0.8 秒避免被限流
  • 站点可能随时更新反爬策略,OCR 正则匹配可能需要调整
  • 提取的账号随时可能失效,建议提取后尽快使用

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file

Add the configuration to .claude/skills/appleid-extract.md

3
Invoke in Claude Code
/appleid-extract

Use Cases

Quickly retrieve a batch of shared Apple IDs for testing app logins or media purchases.
Automate extraction of fresh accounts when existing ones expire or get revoked.
Integrate with a CI pipeline to periodically fetch and validate shared credentials.
Generate a formatted report of available accounts with region distribution for analysis.
Retry only failed extractions to save time without reprocessing successful ones.
Use custom request delays to avoid rate limiting while scraping large account lists.

Usage Examples

1

/appleid-extract

2

/appleid-extract --ids 0,5,42 --delay 1.5

3

帮我提取 appleid-share 站点的账号并保存到 ./output

View source on GitHub

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is appleid-extract?

This skill automatically extracts shared Apple ID accounts and passwords from appleid-share.bitmusthk.com, bypassing front-end masking and OCR captchas. It saves developers time by programmatically collecting valid credentials and outputting structured JSON/TXT reports for testing or personal use.

How to install appleid-extract?

To install appleid-extract: create the skills directory (mkdir -p .claude/skills), then add the config to .claude/skills/appleid-extract.md. Finally, /appleid-extract in Claude Code.

What is appleid-extract best for?

appleid-extract is a other categorized under General. Created by 6Kmfi6HP.

What can I use appleid-extract for?

appleid-extract is useful for: Quickly retrieve a batch of shared Apple IDs for testing app logins or media purchases.; Automate extraction of fresh accounts when existing ones expire or get revoked.; Integrate with a CI pipeline to periodically fetch and validate shared credentials.; Generate a formatted report of available accounts with region distribution for analysis.; Retry only failed extractions to save time without reprocessing successful ones.; Use custom request delays to avoid rate limiting while scraping large account lists..