Skip to content

Instantly share code, notes, and snippets.

@FazziCLAY
Last active April 24, 2025 18:05
Show Gist options
  • Save FazziCLAY/75f72acc8b728530a637121fdee4dfb5 to your computer and use it in GitHub Desktop.
Save FazziCLAY/75f72acc8b728530a637121fdee4dfb5 to your computer and use it in GitHub Desktop.
Disable Encrypted ClientHello in CloudFlare
# Made by fazziclay.com
# Related: https://habr.com/ru/articles/856602/
# LIN: https://gist.github.com/FazziCLAY/75f72acc8b728530a637121fdee4dfb5
# WIN: https://gist.github.com/FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be
# scroll down in overview domain
ID_ZONE=enter
# https://dash.cloudflare.com/profile/api-tokens
GLOBAL_API_KEY=enter
# enter email
ACCOUNT_EMAIL=enter
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

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