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.

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

This package is not auto-updated.

Last update: 2024-05-12 01:44:44 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();
}