Metadata-Version: 2.1
Name: androset
Version: 1.1
Summary: Auto setup android for pentest with auto push burp certificate and redirect traffic to burp with IP Table
Home-page: https://github.com/Anof-cyber/androset
Download-URL: https://github.com/Anof-cyber/androset/archive/v1.1.zip
Author: Sourav Kalal
Author-email: kalalsourav20@gmail.com
License: MIT license
Keywords: androset,bug bounty,android,pentesting,security
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyOpenSSL (==23.1.1)
Requires-Dist: termcolor (==2.3.0)

# Android-Certificate-
Automated script to push Burp Suite certificate in Android 

## 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/Examples

Convert 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. 

