Androset icon indicating copy to clipboard operation
Androset copied to clipboard

Automated script to convert and push Burp Suite certificate in Android, and modify Android's IP table to redirect all traffic to Burp Suite.

Androset

Automated script to convert and push Burp Suite certificate in Android, and modify Android's IP table to redirect all traffic to Burp Suite.

Prerequisites

  • Python 3+ (Not verified)
  • adb in system environment variables
  • Burp or Other CA cert in DER

Installation

Manual Installation

  git clone https://github.com/Anof-cyber/androset
  cd androset
  pip install -r requirements.txt

Install with PIP

pip install androset

Usage/Examples

Convert and push Burp Certificate to android

python3 androset.py cert --cert cacert.der

Specify ADB IP and Port

python3 androset.py cert --cert cacert.der --adbip 127.0.0.1:5555

Modify Android IPTable to redirect all traffic to burp

python3 androset.py burp --burpip 127.0.0.1:8080
python3 androset.py burp --burpip 127.0.0.1:8080 --adbip 127.0.0.1:5555

push burp cert and modify IP table

python3 androset.py cert burp --burpip 127.0.0.1:8080 --adbip 127.0.0.1:5555 --cert cacert.der

Acknowledgements

The tool is Created using ChatGPT with some custom modification.