> For the complete documentation index, see [llms.txt](https://pentesting.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pentesting.mrw0l05zyn.cl/post-explotacion/pivoting/proxy.md).

# Proxy

## General

```sh
HTTP_PROXY="http://127.0.0.1:8080" <command>
```

## Hydra

Establecer configuración de proxy.

```bash
HYDRA_PROXY_HTTP="http://127.0.0.1:8080"
export HYDRA_PROXY_HTTP
```

Revisar configuración de proxy.

```bash
printenv | grep HYDRA
```

Eliminar configuración de proxy.

```bash
unset HYDRA_PROXY_HTTP
```
