https://github.com/cbeuw/Cloak Skip to content Toggle navigation Sign up * Product + Actions Automate any workflow + Packages Host and manage packages + Security Find and fix vulnerabilities + Codespaces Instant dev environments + Copilot Write better code with AI + Code review Manage code changes + Issues Plan and track work + Discussions Collaborate outside of code + Explore + All features + Documentation + GitHub Skills + Blog * Solutions + By Plan + Enterprise + Teams + Compare all + By Solution + CI/CD & Automation + DevOps + DevSecOps + Case Studies + Customer Stories + Resources * Open Source + GitHub Sponsors Fund open source developers + The ReadME Project GitHub community articles + Repositories + Topics + Trending + Collections * Pricing [ ] * # In this repository All GitHub | Jump to | * No suggested jump to results * # In this repository All GitHub | Jump to | * # In this user All GitHub | Jump to | * # In this repository All GitHub | Jump to | Sign in Sign up {{ message }} cbeuw / Cloak Public * Notifications * Fork 187 * Star 1.7k A censorship circumvention tool to evade detection by authoritarian state adversaries License GPL-3.0 license 1.7k stars 187 forks Star Notifications * Code * Issues 64 * Pull requests 1 * Actions * Projects 0 * Wiki * Security * Insights More * Code * Issues * Pull requests * Actions * Projects * Wiki * Security * Insights cbeuw/Cloak This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository. master Switch branches/tags [ ] Branches Tags Could not load branches Nothing to show {{ refName }} default View all branches Could not load tags Nothing to show {{ refName }} default View all tags Name already in use A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch? Cancel Create 3 branches 29 tags Code * Clone HTTPS GitHub CLI [https://github.com/c] Use Git or checkout with SVN using the web URL. [gh repo clone cbeuw/] Work fast with our official CLI. Learn more. * Open with GitHub Desktop * Download ZIP Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Launching Xcode If nothing happens, download Xcode and try again. Launching Visual Studio Code Your codespace will open once ready. There was a problem preparing your codespace, please try again. Latest commit @cbeuw cbeuw Merge pull request #186 from HirbodBehnam/master ... e305871 Mar 31, 2022 Merge pull request #186 from HirbodBehnam/master Update browser fingerprints e305871 Git stats * 644 commits Files Permalink Failed to load latest commit information. Type Name Latest commit message Commit time .github/workflows Update Go version Sep 2, 2021 cmd ServerName rotation (#158) Mar 25, 2021 example_config Make AdminUID optional and implement better validation on empty confi... Dec 19, 2020 internal Update firefox fingerprint Mar 24, 2022 .gitignore Minor refactors to remove unnecessary function Feb 2, 2022 LICENSE Create LICENSE Jan 25, 2019 Makefile pprof now will not require debug build flag Jul 25, 2019 README.md Fix typo in README Mar 20, 2022 codecov.yaml Tweak CI Dec 1, 2020 go.mod Update dependencies Feb 2, 2022 go.sum Update dependencies Feb 2, 2022 release.sh Add native support for Apple Silicon Mar 25, 2021 View code [ ] Quick Start Table of Contents Build Configuration Server Client Setup Server To add users Unrestricted users Users subject to bandwidth and credit controls Client Support me README.md Build Status codecov Go Report Card Donate [96387206-3] [155593583-] [155629720-] Cloak is a pluggable transport that enhances traditional proxy tools like OpenVPN to evade sophisticated censorship and data discrimination. Cloak is not a standalone proxy program. Rather, it works by masquerading proxied traffic as normal web browsing activities. In contrast to traditional tools which have very prominent traffic fingerprints and can be blocked by simple filtering rules, it's very difficult to precisely target Cloak with little false positives. This increases the collateral damage to censorship actions as attempts to block Cloak could also damage services the censor state relies on. To any third party observer, a host running Cloak server is indistinguishable from an innocent web server. Both while passively observing traffic flow to and from the server, as well as while actively probing the behaviours of a Cloak server. This is achieved through the use a series of cryptographic steganography techniques. Cloak can be used in conjunction with any proxy program that tunnels traffic through TCP or UDP, such as Shadowsocks, OpenVPN and Tor. Multiple proxy servers can be running on the same server host and Cloak server will act as a reverse proxy, bridging clients with their desired proxy end. Cloak multiplexes traffic through multiple underlying TCP connections which reduces head-of-line blocking and eliminates TCP handshake overhead. This also makes the traffic pattern more similar to real websites. Cloak provides multi-user support, allowing multiple clients to connect to the proxy server on the same port (443 by default). It also provides traffic management features such as usage credit and bandwidth control. This allows a proxy server to serve multiple users even if the underlying proxy software wasn't designed for multiple users Cloak also supports tunneling through an intermediary CDN server such as Amazon Cloudfront. Such services are so widely used, attempts to disrupt traffic to them can lead to very high collateral damage for the censor. Quick Start To quickly deploy Cloak with Shadowsocks on a server, you can run this script written by @HirbodBehnam Table of Contents * Quick Start * Build * Configuration + Server + Client * Setup + Server o To add users # Unrestricted users # Users subject to bandwidth and credit controls + Client * Support me Build git clone https://github.com/cbeuw/Cloak cd Cloak go get ./... make Built binaries will be in build folder. Configuration Examples of configuration files can be found under example_config folder. Server RedirAddr is the redirection address when the incoming traffic is not from a Cloak client. Ideally it should be set to a major website allowed by the censor (e.g. www.bing.com) BindAddr is a list of addresses Cloak will bind and listen to (e.g. [":443",":80"] to listen to port 443 and 80 on all interfaces) ProxyBook is an object whose key is the name of the ProxyMethod used on the client-side (case-sensitive). Its value is an array whose first element is the protocol, and the second element is an IP:PORT string of the upstream proxy server that Cloak will forward the traffic to. Example: { "ProxyBook": { "shadowsocks": [ "tcp", "localhost:51443" ], "openvpn": [ "tcp", "localhost:12345" ] } } PrivateKey is the static curve25519 Diffie-Hellman private key encoded in base64. BypassUID is a list of UIDs that are authorised without any bandwidth or credit limit restrictions AdminUID is the UID of the admin user in base64. You can leave this empty if you only ever add users to BypassUID. DatabasePath is the path to userinfo.db, which is used to store user usage information and restrictions. Cloak will create the file automatically if it doesn't exist. You can leave this empty if you only ever add users to BypassUID. This field also has no effect if AdminUID isn't a valid UID or is empty. KeepAlive is the number of seconds to tell the OS to wait after no activity before sending TCP KeepAlive probes to the upstream proxy server. Zero or negative value disables it. Default is 0 (disabled). Client UID is your UID in base64. Transport can be either direct or CDN. If the server host wishes you to connect to it directly, use direct. If instead a CDN is used, use CDN. PublicKey is the static curve25519 public key in base64, given by the server admin. ProxyMethod is the name of the proxy method you are using. This must match one of the entries in the server's ProxyBook exactly. EncryptionMethod is the name of the encryption algorithm you want Cloak to use. Options are plain, aes-256-gcm ( synonymous to aes-gcm), aes-128-gcm, and chacha20-poly1305. Note: Cloak isn't intended to provide transport security. The point of encryption is to hide fingerprints of proxy protocols and render the payload statistically random-like. You may only leave it as plain if you are certain that your underlying proxy tool already provides BOTH encryption and authentication (via AEAD or similar techniques). ServerName is the domain you want to make your ISP or firewall think you are visiting. Ideally it should match RedirAddr in the server's configuration, a major site the censor allows, but it doesn't have to. AlternativeNames is an array used alongside ServerName to shuffle between different ServerNames for every new connection. This may conflict with CDN Transport mode if the CDN provider prohibits domain fronting and rejects the alternative domains. Example: { "ServerName": "bing.com", "AlternativeNames": ["cloudflare.com", "github.com"] } CDNOriginHost is the domain name of the origin server (i.e. the server running Cloak) under CDN mode. This only has effect when Transport is set to CDN. If unset, it will default to the remote hostname supplied via the commandline argument (in standalone mode), or by Shadowsocks (in plugin mode). After a TLS session is established with the CDN server, this domain name will be used in the HTTP request to ask the CDN server to establish a WebSocket connection with this host. NumConn is the amount of underlying TCP connections you want to use. The default of 4 should be appropriate for most people. Setting it too high will hinder the performance. Setting it to 0 will disable connection multiplexing and each TCP connection will spawn a separate short-lived session that will be closed after it is terminated. This makes it behave like GoQuiet. This maybe useful for people with unstable connections. BrowserSig is the browser you want to appear to be using. It's not relevant to the browser you are actually using. Currently, chrome and firefox are supported. KeepAlive is the number of seconds to tell the OS to wait after no activity before sending TCP KeepAlive probes to the Cloak server. Zero or negative value disables it. Default is 0 (disabled). Warning: Enabling it might make your server more detectable as a proxy, but it will make the Cloak client detect internet interruption more quickly. StreamTimeout is the number of seconds of Cloak waits for an incoming connection from a proxy program to send any data, after which the connection will be closed by Cloak. Cloak will not enforce any timeout on TCP connections after it is established. Setup Server 0. Install at least one underlying proxy server (e.g. OpenVPN, Shadowsocks). 1. Download the latest release or clone and build this repo. 2. Run ck-server -key. The public should be given to users, the private key should be kept secret. 3. (Skip if you only want to add unrestricted users) Run ck-server -uid. The new UID will be used as AdminUID. 4. Copy example_config/ckserver.json into a desired location. Change PrivateKey to the private key you just obtained; change AdminUID to the UID you just obtained. 5. Configure your underlying proxy server so that they all listen on localhost. Edit ProxyBook in the configuration file accordingly 6. Configure the proxy program. Run sudo ck-server -c . ck-server needs root privilege because it binds to a low numbered port (443). Alternatively you can follow https: //superuser.com/a/892391 to avoid granting ck-server root privilege unnecessarily. To add users Unrestricted users Run ck-server -uid and add the UID into the BypassUID field in ckserver.json Users subject to bandwidth and credit controls 0. First make sure you have AdminUID generated and set in ckserver.json, along with a path to userinfo.db in DatabasePath (Cloak will create this file for you if it didn't already exist). 1. On your client, run ck-client -s -l -a -c to enter admin mode 2. Visit https://cbeuw.github.io/Cloak-panel (Note: this is a pure-js static site, there is no backend and all data entered into this site are processed between your browser and the Cloak API endpoint you specified. Alternatively you can download the repo at https://github.com/cbeuw/Cloak-panel and open index.html in a browser. No web server is required). 3. Type in 127.0.0.1: as the API Base, and click List. 4. You can add in more users by clicking the + panel Note: the user database is persistent as it's in-disk. You don't need to add the users again each time you start ck-server. Client Android client is available here: https://github.com/cbeuw/ Cloak-android 0. Install the underlying proxy client corresponding to what the server has. 1. Download the latest release or clone and build this repo. 2. Obtain the public key and your UID from the administrator of your server 3. Copy example_config/ckclient.json into a location of your choice. Enter the UID and PublicKey you have obtained. Set ProxyMethod to match exactly the corresponding entry in ProxyBook on the server end 4. Configure the proxy program. Run ck-client -c -s Support me If you find this project useful, you can visit my merch store; alternatively you can donate directly to me Donate BTC: bc1q59yvpnh0356qq9vf0j2y7hx36t9ysap30spx9h ETH: 0x8effF29a8F9bD38A367580527AC303972c92b60c About A censorship circumvention tool to evade detection by authoritarian state adversaries Topics openvpn proxy tor shadowsocks censorship-circumvention vpn censorship gfw pluggable-transports Resources Readme License GPL-3.0 license Stars 1.7k stars Watchers 57 watching Forks 187 forks Releases 26 v2.6.0 Latest Mar 31, 2022 + 25 releases Packages 0 No packages published Contributors 8 * * * * * * * * Languages * Go 99.4% * Other 0.6% Footer (c) 2022 GitHub, Inc. Footer navigation * Terms * Privacy * Security * Status * Docs * Contact GitHub * Pricing * API * Training * Blog * About You can't perform that action at this time. You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.