There are several ways to verify that Clacks Overhead headers have been set, either using a web browser or command line tools.
In the browser, there two methods to verify the presence of the X-Clacks-Overhead
header:
There are browser plugins available for both Firefox and Chrome that can help you verify the presence of the X-Clacks-Overhead
header.
Chrome | Firefox | |
---|---|---|
Clacks active | ![]() |
![]() |
Clacks not active | ![]() |
![]() |
If the page contains Clacks Overhead headers, you should see a header named X-Clacks-Overhead
with the value GNU Robbert Muller
.
There are various tools that can be used to check for the presence of the X-Clacks-Overhead
header in the HTTP response.
After opening a terminal or command prompt, run an appropriate command based on the tool you prefer:
Replacing https://example.com
in the examples below with the URL of the page to check).
If the header is present, you should see output similar to:
x-clacks-overhead: GNU Robbert Muller
If the header is not present, there will be no output.
curl
curl --head --silent https://example.com | grep --ignore-case clacks
wget
wget --quiet --server-response --spider https://example.com 2>&1 | grep --ignore-case clacks