# Android

{% hint style="info" %}
port 5555 is the android debug port
{% endhint %}

### Install adb to allow you to connect to android device

```
apt-get install adb
```

### connect to device&#x20;

```
adb connect $ip:port
```

### get shell

```
adb shell
```
