http_headers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
http_headers [2016/07/08 09:34] – luke7858 | http_headers [2024/05/23 07:26] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | + | ~~NOCACHE~~ | |
- | ^ Flag ^ Description | + | ====== |
- | | -I, --head | + | {{tabembed> |
- | | -v, --verbose | + | |
- | | -s, --silent | + | |
- | | -i, --include | + | |
- | | -X , --request | Specify a customer request when communicating with HTTP web server | | + | |
- | | -L, | Follow the redirect | + | |
- | \\ | + | |
- | __**Troubleshooting a website**__. You can replace http:// | + | |
- | <sxh bash> | + | |
- | curl -LIX GET 12.34.56.78 -H 'Host: example.com' | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | The following command is used to test a https domain. -k will skip the certificate check | + | |
- | <sxh bash> | + | |
- | curl -LIkX GET https:// | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | **__Testing a vhost on the localhost__** | + | |
- | <sxh bash> | + | |
- | curl -LIvX GET localhost -H 'Host: vhost.com' | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | **__Body String Match__** | + | |
- | \\ | + | |
- | <sxh bash> | + | |
- | curl -sLX GET www.lukeslinux.co.uk | grep -i lukeslinux | + | |
- | </ | + | |
- | <sxh bash> | + | |
- | curl -isX GET lukeslinux.co.uk | grep Maintenance | + | |
- | </ | + | |
- | Output: | + | |
- | <sxh bash> | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | Example without the s flag | + | |
- | <sxh bash> | + | |
- | curl -LiX GET https:// | + | |
- | </ | + | |
- | Output: | + | |
- | <sxh bash> | + | |
- | % Total % Received % Xferd Average Speed | + | |
- | | + | |
- | 100 9885 100 9885 0 | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | \\ | + | |
- | Curling localhost and ignoring ssl | + | |
- | If the website has an ssl certificate you can also apply the ' | + | |
- | <sxh bash> | + | |
- | curl -ikL localhost -H ' | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | **__Time__** | + | |
- | <sxh bash> | + | |
- | time for i in {1..10}; do curl -IsX GET http:// | + | |
- | </ | + | |
- | **__Using Lynx__** | + | |
- | \\ | + | |
- | Note: This is not as accurate as curl | + | |
- | Testing to see if a website returns a certain string. Body match strings are often used in monitoring alerts | + | |
- | <sxh bash> | + | |
- | lynx -dump http:// | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | === Time to First Byte === | + | |
- | Make sure you replace x.x.x.x with the server IP and Host: Example.com with the website | + | |
- | <sxh bash> | + | |
- | curl -sko /dev/null -w " | + | |
- | </ | + | |
- | + | ||
- | \\ | + | |
- | \\ | + | |
- | \\ | + | |
- | __**HTTP AUTHENTICATION**__ | + | |
- | <sxh bash> | + | |
- | curl --user luke: | + | |
- | </ | + |
http_headers.1467970442.txt.gz · Last modified: 2024/05/23 07:26 (external edit)