This package allows a user to cycle an Android phones flight mode using Automate app and cloud messages. The result is automated 4G IP renewal. Not root required.
- A clean 4G capable Android phone (ie ideally not the one you use day to day to avoid any identity leaks via App session fingerprinting). Does not require root.
- A clean Google account not used for anything else to receive cloud messages.
Automate
app https://play.google.com/store/apps/details?id=com.llamalab.automate
- Set your
"Toggle Flight Mode"
quick access icon to the first icon on your pull down list. - Copy the two
.flo
scripts to your phone. (Note you might need to edit the Flow in step19
&43
(as per PDF) if your language pack calls Flight Mode something like"Airplane Mode"
or"Aeroplane Mode"
etc) - In step
42
(as per PDF)"Cloud Receive"
, set the account to your clean Google account. - Disable phone Wifi and start the Flow on your phone. After the flow is started you can exit Automate and it will stay running.
Install the package:
$ npm install renew-ip
Instantiate a new Router
in your application.
An example is provided here, and also in the ./examples
folder.
import { RenewableRouter, Router } from "renew-ip"
/**
* @class Demonstration
* @class An abstract demo of how to implement the package. Note that in practice you would import from `renew-ip` not `../src`.
*/
export class Demo {
/**
* Protected container for the router.
* @type {RenewableRouter}
* @protected
*/
protected _router: RenewableRouter = new Router()
/**
* Public method to toggle the handset's ip.
*
* @return {Promise<boolean>}
*/
public async renewIp(): Promise<boolean> {
return await this._router.renew()
}
/**
* Example method for executing a web scrape with a fresh IP.
*
* @param {string} url
* @return {Promise<void>}
*/
public async scrape(url: string): Promise<void> {
// Only continue if a fresh IP is obtained.
if (await this.renewIp()) {
// ... some sort of scrape task for example...
}
else {
throw new Error(`Could not get a fresh ip, aborting scrape.`)
}
}
}
import { useRouter } from "renew-ip"
// Generate renewal function.
const renewIp: RenewIp = useRouter({
maxAttempts: 5,
delay: 1500
})
// ...
// Renew ip!
await renewIp()
$ npx renew-ip 5 # (optional: attempts)
To access IP reputation context you will need an IPData API key.
As you will generally be cycling less than 1500 times daily, the free plan will suffice.
IP_RENEWAL_SECRET=<enter-your-automate-secret>
IP_RENEWAL_EMAIL=<enter-your-automate-email>
IP_RENEWAL_PRIORITY=normal
IP_RENEWAL_PAYLOAD=renew
IP_RENEWAL_MAX_ATTEMPTS=3
IP_RENEWAL_DELAY=1000
IPDATA_API_KEY=<your-ipdata-api-key>
const config: RouterConfig = {
secret: "<your-secret>",
to: "<your-email>",
priority: "normal",
payload: "renew",
maxAttempts: 3,
delay: 1200
}
const router: RenewableRouter = new Router(config)
Recommend enabling the Auto Tether
flow on the handset to avoid having to manually enable USB tethering each time you plug it in as a USB modem.
Additionally, you can use this via Wi-Fi Tethering, although it's quite a bit more complicated / less reliable to manage this in a Node script.
To avoid data excess, disable your phones' auto update over 4G and set to only update over Wi-Fi.
But what if you need to access 4G IPs in a different country?
- A cheap headless nano-PC such as an "Intel Compute Stick": https://www.intel.com/content/www/us/en/products/boards-kits/compute-stick.html
- WireGuard: https://www.wireguard.com
- 3Proxy with a local SOCKS5 config. Example: https://github.com/prescience-data/3proxy-config
- Configure your package to connect out via a VPN WireGuard (as listener) and 3proxy.
- Install the 3proxy config to create a local SOCKS5 proxy and install as a service.
- Setup WireGuard VPN as a client instance on your regular PC.
- VPN to the headless PC and you'll have access to its SOCKS5 proxy!
The optimal solution is to connect the Compute Stick to Wi-Fi (which WireGuard will use to connect in) and proxy connections out via 4G USB tethering to avoid congestion, but it is possible to go in and out via the same 4G provided you have enough bandwidth.
You can install some remote management software such as AnyDesk
to remote into the headless PC whenever you need to fix or install something provided it remains connected to local internet.
When configured correctly, the package should run like this: