For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom Headers

Web Unblocker supports the use of custom HTTP headers, allowing you to tailor requests for specific use cases.

Allowed Headers (Forwarded As-Is)

These headers are allowed and passed through the unblocker unchanged:

  • Cookie

  • User-Agent

  • Accept-Language

  • Accept-Encoding

  • Custom headers (e.g., X-My-Header)

  • Other headers not listed as blocked

Example usage:

curl -x <http://unblocker.example> \\
     --proxy-user user:pass \\
     -H 'Cookie: user=hello; theme=dark' \\
     -H 'X-My-Header: custom-value' \\
     <https://httpbin.org/headers>

User-Agent Rules

If your client:

  • Uses User-Agent: curl/... or User-Agent: wget/...

  • Or sends no User-Agent at all

Then the unblocker will replace it with a randomized browser User-Agent, such as:

Blocked (Hop-by-Hop) Headers

The unblocker removes these headers:

  • Connection

  • Keep-Alive

  • Proxy-Authenticate

  • Proxy-Authorization

  • Proxy-Connection

  • TE

  • Trailer

  • Transfer-Encoding

  • Upgrade

  • X-Render-JS

Ignored by Chromium Engine (if triggered)

When Chromium is triggered by the unblocker, it additionaly ignores the following headers:

  • Content-Length

  • Host

  • Cookie2

  • Keep-Alive

  • Set-Cookie

  • Origin

  • Referer

  • Any Sec-Fetch-* header

Chromium will also override the Accept header with the following:

So you may expect this even you explicitly pass “application/json”.

See Chromium documentation for more information.

Last updated

Was this helpful?