http_headers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
http_headers [2015/09/08 08:44] – luke7858 | http_headers [2024/05/23 07:26] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | __**Troubleshooting a website**__. You can replace http:// | + | ~~NOCACHE~~ |
- | <sxh bash> | + | ====== HTTP Headers ====== |
- | curl -Iv -X GET 12.34.56.78 -H 'Host: example.com' | + | {{tabembed>[[curl_basics|Curl Basics, [[website_cloaking|Website Cloaking}} |
- | </sxh> | + | |
- | \\ | + | |
- | The following command is used to test a https domain. -k will skip the certificate check | + | |
- | <sxh bash> | + | |
- | curl -Ik -X GET https:// | + | |
- | </ | + | |
- | \\ | + | |
- | **__Testing a vhost on the localhost__** | + | |
- | <sxh bash> | + | |
- | curl -Iv -x GET localhost -H 'Host: vhost.com' | + | |
- | </ | + | |
- | \\ | + | |
- | **__Body String Match__** | + | |
- | \\ | + | |
- | -s flag hides the download speed etc | + | |
- | <sxh bash> | + | |
- | curl -is https:// | + | |
- | </ | + | |
- | Output: | + | |
- | <sxh bash> | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | Example without the s flag | + | |
- | <sxh bash> | + | |
- | curl -i https:// | + | |
- | </ | + | |
- | Output: | + | |
- | <sxh bash> | + | |
- | % Total % Received % Xferd Average Speed | + | |
- | | + | |
- | 100 9885 100 9885 0 | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | Testing to see if a website returns a certain string. Body match strings are often used in monitoring alerts | + | |
- | <sxh bash> | + | |
- | lynx -dump http:// | + | |
- | </ | + | |
- | + | ||
- | If the website has an ssl certificate you can also apply the ' | + | |
- | <sxh bash> | + | |
- | curl -ik https:// | + | |
- | </ | + |
http_headers.1441701888.txt.gz · Last modified: 2024/05/23 07:26 (external edit)