설명 없음

rhcp011235 5b49d484a6 Add ios.exe which is https://github.com/danielpaulus/go-ios 2 달 전
client 34a583b431 Initial release: iOS Activation Tool V1.0 & Server Backend 2 달 전
server 34a583b431 Initial release: iOS Activation Tool V1.0 & Server Backend 2 달 전
LICENSE ca37689c6f Initial commit 2 달 전
README.md 536d5a732f Add initial README for iOS Activation Tool Suite 2 달 전
client.cs 22a9b70640 Add C# Version 2 달 전
client_windows.cs d1bbe1d3d5 Add Windows C# Version 2 달 전
ios.exe 5b49d484a6 Add ios.exe which is https://github.com/danielpaulus/go-ios 2 달 전
offline_bypass.py 581952cb91 Feat: Implement standalone offline activation mode via embedded server 2 달 전

README.md

iOS Activation Tool Suite

A complete, end-to-end solution for iOS device activation management. This repository contains both the client-side automation logic and the server-side infrastructure required to handle device activation payloads.

Architecture Overview

The suite is divided into two core components:

Client Automation (client/): A Python-based utility that interacts directly with connected iOS devices via USB. It handles lifecycle management (reboots), system log analysis, and filesystem operations (AFC).

Server Backend (server/): A PHP application that dynamically generates device-specific activation payloads. It serves as the central authority for handling device requests and delivering the necessary configuration databases.

Repository Structure

. ├── client/ # Python client application │ ├── activator.py # Main automation entry point │ └── README.md # Client-specific documentation ├── server/ # PHP backend infrastructure │ ├── public/ # Web root │ ├── templates/ # SQL templates for payload generation │ ├── assets/ # Device configuration storage │ └── SETUP.md # Server deployment guide └── package_builder.sh # Deployment automation utility

Prerequisites

Client-Side (macOS)

Python 3.6+

libimobiledevice (via Homebrew)

pymobiledevice3 (via pip)

curl

Server-Side

PHP 7.4 or newer

SQLite3 extension enabled

Write permissions for cache directories

Quick Start

  1. Build Release Package

Use the included builder utility to generate a deployable package. This handles asset extraction and directory setup automatically.

chmod +x package_builder.sh ./package_builder.sh

This will generate release_package.tar.gz.

  1. Server Deployment

Deploy the contents of the server directory from the release package to your web host. Ensure the public folder is set as the document root.

See server/SETUP.md for detailed configuration steps.

  1. Client Configuration

Update the activator.py script to point to your deployed server URL before running.

Run the client tool

sudo python3 client/activator.py

Disclaimer

This tool is provided for educational and research purposes only. The authors are not responsible for any misuse of this software or damage to devices. Ensure you have authorization before performing operations on any device.