# cURL

Ejecutar cURL utilizando proxy.

```shell
curl <request> -x http://127.0.0.1:8080 -k
```

URL encode de parámetro.

```shell
value=$(echo "<parameter-value>" | jq -sRr @uri); curl -i -s "http://<target>/index.php?parameter=$value"
```
