Last active
April 24, 2025 18:05
-
-
Save FazziCLAY/75f72acc8b728530a637121fdee4dfb5 to your computer and use it in GitHub Desktop.
Disable Encrypted ClientHello in CloudFlare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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"}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Windows: https://gist.github.com/FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be