Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Anof-cyber/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.
https://github.com/Anof-cyber/Androset
android-pentesting burpsuite pentesting pentesting-tools python security-tools
Last synced: 6 days ago
JSON representation
Automated script to convert and push Burp Suite certificate in Android, and modify Android's IP table to redirect all traffic to Burp Suite.
- Host: GitHub
- URL: https://github.com/Anof-cyber/Androset
- Owner: Anof-cyber
- License: mit
- Created: 2022-12-03T10:17:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-30T09:32:32.000Z (over 1 year ago)
- Last Synced: 2024-11-06T04:23:05.093Z (8 days ago)
- Topics: android-pentesting, burpsuite, pentesting, pentesting-tools, python, security-tools
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 108
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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```bash
git clone https://github.com/Anof-cyber/androset
cd androset
pip install -r requirements.txt
```Install with PIP
```
pip install androset
```
## Usage/ExamplesConvert and push Burp Certificate to android
```bash
python3 androset.py cert --cert cacert.der
```Specify ADB IP and Port
```bash
python3 androset.py cert --cert cacert.der --adbip 127.0.0.1:5555
```Modify Android IPTable to redirect all traffic to burp
```bash
python3 androset.py burp --burpip 127.0.0.1:8080
``````bash
python3 androset.py burp --burpip 127.0.0.1:8080 --adbip 127.0.0.1:5555
```push burp cert and modify IP table
```bash
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](https://chat.openai.com/chat) with some custom modification.