Skip to content

Instantly share code, notes, and snippets.

@FazziCLAY
Last active January 31, 2025 17:44
Show Gist options
  • Save FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be to your computer and use it in GitHub Desktop.
Save FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be to your computer and use it in GitHub Desktop.
[Windows] Disable ClientHello in CloudFlare
@echo off
REM Made by fazziclay.com
REM Related: https://habr.com/ru/articles/856602/
REM LIN: https://gist.github.com/FazziCLAY/75f72acc8b728530a637121fdee4dfb5
REM WIN: https://gist.github.com/FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be
REM scroll down in overview domain
set ID_ZONE=1111
REM https://dash.cloudflare.com/profile/api-tokens
set GLOBAL_API_KEY=1111
REM enter email
set ACCOUNT_EMAIL=1111
curl -X PATCH "https://api.cloudflare.com/client/v4/zones/%ID_ZONE%/settings/ech" ^
-H "X-Auth-Email: %ACCOUNT_EMAIL%" ^
-H "X-Auth-Key: %GLOBAL_API_KEY%" ^
-H "Content-Type:application/json" --data "{\"id\":\"ech\",\"value\":\"off\"}"
@FazziCLAY
Copy link
Author

FazziCLAY commented Nov 20, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment