AssppWeb
原作者:Lakr233
A web-based tool for acquiring and installing iOS apps outside the App Store. Authenticate with your Apple ID, search for apps, acquire licenses, and install IPAs directly to your device.

Zero-Trust Architecture
AssppWeb uses a zero-trust design where the server never sees your Apple credentials. All Apple API communication happens directly in your browser via WebAssembly (libcurl.js with Mbed TLS 1.3). The server only acts as a blind TCP relay (Wisp protocol) and handles IPA compilation from public CDN downloads.
⚠️ Important Security Notice: There are no official Asspp Web instances. Use any public instance at your own risk. While the backend cannot read your encrypted traffic, a malicious host could serve a modified frontend to capture your credentials before encryption. Therefore, do not blindly trust public instances. We strongly recommend self-hosting your own instance or using one provided by a trusted partner. Always verify the SSL certificate and ensure you are connecting to a secure, authentic endpoint.
▲重要安全提示:不存在官方 Asspp Web实例。请自行承担风险使用任何公共实例。尽管后端无法读取您加密的通信内容,但恶意主机仍可能提供经过修改的前端服务,以便在加密前捕获您的凭据。因此,切勿盲目信任公共实例。我们强烈建议自行托管自己的实例或使用由可信合作伙伴提供的实例。务必验证 SSL证书,并确保您连接的是安全、可靠的端点。
原作者声明:

安装
curl -O https://raw.githubusercontent.com/Lakr233/AssppWeb/main/compose.yml
docker compose up -dservices:
asspp:
image: ghcr.io/lakr233/assppweb:latest
ports:
- "8080:8080"
volumes:
- ./mnt/asspp-data:/data
environment:
- DATA_DIR=/data
- PORT=8080
# - DOWNLOAD_THREADS=8
# - ACCESS_PASSWORD=your_password_here
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "128m"
max-file: "5"