srknzcn/ios-reset-ip

There is no license information available for the latest version (dev-master) of this package.

Resets the cellular ip adress and gets new one with activator app on jailbroken iphone.

Installs: 23

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/srknzcn/ios-reset-ip

dev-master 2017-07-16 20:49 UTC

This package is not auto-updated.

Last update: 2025-09-28 08:43:36 UTC


README

Resets the cellular ip adress and gets new one with activator app on jailbroken iphone.

This package requires a jailbroken iphone and activator app installed.

You can install Activator via cydia on your device.

Install via composer

composer require srknzcn/ios-reset-ip

Example:

<?php
require './vendor/autoload.php';

try {
    // use true for debug
    // $resetIPResult = new \IOSResetIP\IP(true);

    $resetIPResult = new \IOSResetIP\IP();
    var_dump($resetIPResult->getIP());

} catch (\Exception $e) {
    echo $e->getMessage();
}