批量验证 Sora 账号手机号的 Web 服务。
├── main.py # 主程序
├── static/
│ ├── index.html # 用户前端
│ └── admin.html # 管理后台
├── data/ # 数据目录(自动创建,已忽略)
│ └── sora_bind.sqlite3
├── Dockerfile # Docker 部署
├── requirements.txt # Python 依赖
└── README.md
pip install -r requirements.txt
python main.pydocker build -t sora-bind .
docker run -d -p 8899:8899 -v ./data:/app/data sora-bind| 变量 | 说明 | 默认值 |
|---|---|---|
SORA_ADMIN_PASSWORD |
管理员密码 | admin123 |
- RT 转 AT(并发)
- 手机号验证(并发、轮询)
- 暂停/恢复/终止任务
- 自动移除已满手机号
- 数据持久化(SQLite)
| 平台 | 地址 |
|---|---|
| CC 接码 | https://api.cc/ |
| US API | https://usapi6.com/ |
| 平台 | 地址 |
|---|---|
| Webshare | https://www.webshare.io/ |
data/目录包含数据库,已在.gitignore中忽略- 生产环境请修改默认管理员密码