Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
curl [03/09/2024 - 11:06] – [Request/Response Information] admin1 | curl [03/09/2024 - 11:12] (aktuell) – [Proxy Auth] admin1 | ||
---|---|---|---|
Zeile 4: | Zeile 4: | ||
https:// | https:// | ||
- | |||
- | [[https:// | ||
[[https:// | [[https:// | ||
+ | [[https:// | ||
+ | |||
+ | https:// | ||
====== Request/ | ====== Request/ | ||
Zeile 68: | Zeile 69: | ||
Content-Type: | Content-Type: | ||
<* Connection #0 to host www.netzwissen.de left intact | <* Connection #0 to host www.netzwissen.de left intact | ||
- | < | + | </code> |
====== Proxy Anfragen ====== | ====== Proxy Anfragen ====== | ||
+ | |||
+ | Basis Syntax | ||
+ | |||
+ | < | ||
+ | curl -x proxy_address: | ||
+ | </ | ||
+ | |||
+ | Mit dieser Anfrage bekommt an die eigene IP zurück, als Beweis, dass der Proxy selber tut: | ||
+ | |||
+ | < | ||
+ | curl -x 195.154.243.38: | ||
+ | </ | ||
+ | |||
+ | ===== Proxy Auth ===== | ||
+ | |||
+ | < | ||
+ | curl --proxy-user username: | ||
+ | </ | ||
+ | |||
+ | Kaputte Zertifikate umgehen | ||
+ | |||
+ | < | ||
+ | curl --proxy http:// | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Proxy Request mit Header ===== | ||
+ | |||
+ | < | ||
+ | curl -x proxy_address -H " | ||
+ | </ | ||
+ | |||