Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
ChatGPT Plus/Team/Pro 订阅协议端到端重放工具集 · hCaptcha 视觉求解器 · 反欺诈机制实证研究 / End-to-end protocol replay toolkit for ChatGPT Plus/Team/Pro subscription with from-scratch hCaptcha solver and empirical anti-fraud research
| Date | Stars |
|---|---|
| 2026-07-24 | 2161 |
| 2026-07-25 | 2162 |
| 2026-07-28 | 2169 |
| 2026-07-30 | 2168 |
| 2026-08-06 | 2168 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
> **简体中文** | [English](README.en.md)
<p align="center">
<img src="docs/images/logo-light.png#gh-light-mode-only" width="120" alt="Gpt-Agreement-Payment logo">
<img src="docs/images/logo-dark.png#gh-dark-mode-only" width="120" alt="Gpt-Agreement-Payment logo">
</p>
# Gpt-Agreement-Payment
ChatGPT Plus / Team 订阅协议的端到端重放工具:从抓包逆出 `Stripe Checkout → PayPal / GoPay / QRIS → ChatGPT manual-approval → Codex OAuth + PKCE` 整条链路,并实现成可运行客户端。附带从零实现的 hCaptcha 视觉求解器、PayPal 风控早退分支、和一组真实运行采集的反欺诈机制实证数据。
[](LICENSE)
[](https://www.python.org/)
[](https://github.com/DanOps-1/Gpt-Agreement-Payment/actions)
[](#法律边界)
---
## 作者自营 API 中转站
| Logo | 名称 | 介绍 | 官网 |
| --- | --- | --- | --- |
| <a href="https://api.lukyface.com/register?aff=9ipF" target="_blank"><img src="docs/images/sponsors/lukyface.png" alt="lukyface API" width="140" /></a> | lukyface API(作者自营中转站) | 统一的 AI 模型聚合 / 分发网关(基于 new-api),OpenAI / Claude / Gemini 三协议互转,自用余量分享。**作者自营、长期稳定**。<br><br>**对所有人开放** · 作者自营中转站交流群:**`1104565621`** | [https://api.lukyface.com/register?aff=9ipF](https://api.lukyface.com/register?aff=9ipF) |
<p align="center">
<a href="https://api.lukyface.com/register?aff=9ipF" target="_blank">
<img src="docs/images/sponsors/lukyface-screenshot.png" width="600" alt="lukyface API 主界面" />
</a>
<br>
<sub>👆 点击图片访问 lukyface · 邀请码 <code>9ipF</code> · 交流群 <code>1104565621</code></sub>
</p>
---
> [!CAUTION]
> **使用本项目即视为同意 [`NOTICE`](NOTICE) 的全部条款。** 项目按 AS IS 提供、无任何担保、维护者不负任何责任。仅限你拥有的系统 / 合法 CTF / 授权 bug bounty 项目 in-scope 资产 / 安全研究。**严禁**用于欺诈、规避支付、批量造号转售、违反第三方 ToS、未授权目标。一切法律责任由使用者自负。不接受条款就**不要使用**。
---
## 这是什么
支持四条订阅开通路径:
| 路径 | 入口 | 用途 |
|---|---|---|
| **Team / Plus(PayPal billing agreement)** | `pipeline.py --paypal` | Stripe Checkout → PayPal billing agreement → ChatGPT manual approval |
| **Plus(promo 长链接 + PayPal 协议授权)** | `scripts/no_card_paypal_plus.py` | OpenAI 官方 promo campaign 长链接 + PayPal guest checkout 走完 billing agreement 协议 |
| **Plus / Team(GoPay 印尼)** | `pipeline.py --gopay` | Midtrans linking + GoPay 钱包绑定,IDR 区域专用 |
| **Plus / Team(QRIS 扫码)** | `pipeline.py --qris` | Midtrans QRIS,远端预览 + reference 轮询结算 |
给一个干净代理 + 一个支付凭证,命令跑完拿到 OAuth `refresh_token`。
四个值得看的点:
- **N-worker 并发 + phone-lock OTP 临界区互斥**(`webui/backend/parallel_runner.py`)。同 phone 多 worker 用 advisory lock 串行 OTP 阶段,pre/post-OTP 全并行;DB atomic claim + 占位 INSERT 防多 worker 抢同 promo_link / 同 inventory 邮箱。前端配 phone 池(M 行) + 并发数 N(可大于 M),worker 按 `i % M` 轮询映射到 phone 池。
- **hCaptcha 视觉求解器**(`CTF-pay/hcaptcha_auto_solver.py`,约 4000 行,独立可用)。VLM 主路径 + CLIP/OpenCV 启发式回退 + Playwright 人类动作合成,覆盖 12 种已知 hCaptcha 题型。
- **反欺诈机制实证数据**。IP 字符串级精确指纹、批次关联延迟封禁、probe 层 vs ban 层分离。45 个号 24 小时存活率约 2% 的实测样本,含修正模型。详见 [`docs/anti-fraud-research.md`](docs/anti-fraud-research.md)。
- **十二路自愈环 daemon**(`pipeline.py::daemon()`)。Webshare API 自动换 IP(webshare 抖时回退到 `/tmp/gost_last.json` cache)、CF DNS 配额清理、tmpfs 孤儿回收、gost 中继看门狗、DataDome 滑块自动拖拽。设计目标是无人值守跑数周。
---
## 架构
```mermaid
flowchart LR
A[pipeline.py / webui] --> B[CTF-reg/<br/>browser_register.py<br/>Camoufox + Turnstile]
B --> C[CTF-pay/card.py<br/>Stripe Checkout 重放]
C --> D{支付路径}
D -->|paypal| E1[Camoufox / Node RPA<br/>PayPal billing agreement]
D -->|gopay| E2[Midtrans linking<br/>+ WhatsApp OTP]
D -->|qris| E3[QRIS QR<br/>+ 远端预览]
E1 --> F[Stripe poll<br/>state=succeeded]
E2 --> F
E3 --> F
F --> G[Camoufox 二次登录<br/>Codex OAuth + PKCE]
G --> H[refresh_token<br/>output/webui.db (SQLite)]
```
详细子系统拆解、文件分工、协议链路细节看 [`docs/architecture.md`](docs/architecture.md)。
---
## 现状与门槛
实事求是讲,这不是个开箱即用的工具。要把整条链路跑通,至少需要:
- 一个真实可登录的 PayPal 账号(也可走 PayPal guest checkout 协议授权流程)
- 一个出口在 EU / US / ID 的代理(按选择的支付路径锁地Excerpt of 12,916 characters
Read on GitHub38
1
1
1
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:2e573c384c5a3e9d, topic:vlm
matched fp:2e573c384c5a3e9d, topic:chatgpt
matched fp:2e573c384c5a3e9d, topic:playwright