Last active
January 31, 2025 17:44
-
-
Save FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be to your computer and use it in GitHub Desktop.
[Windows] Disable 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
@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\"}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Linux: https://gist.github.com/FazziCLAY/75f72acc8b728530a637121fdee4dfb5