I am not a native English speaker; this article was translated by AI.
It started with a routine check while freeing up disk space: ~/.zcode was taking up over 700MB. After digging into it intermittently, I confirmed something pretty wild:
Whenever you are logged in, ZCode (Zhipu’s official AI coding desktop app) silently packages your entire workspace — complete .git history, LFS asset cache, reflogs, and global app configs — encrypts it, and uploads it directly to Aliyun OSS.
Even more ironic: the RSA public key used for encryption is delivered on the fly by the server, while the private key lives exclusively in the cloud. You cannot decrypt that multi-hundred-megabyte ciphertext sitting right on your own disk, and neither can the ZCode client itself.
Here is the complete record of the investigation, the evidence chain, and a one-liner defense that permanently shuts it down.
Update, 2026-09-19 #
Following widespread community attention after this post, Z.ai released an official statement in their user community on Sep 18 at 17:44 (with tech media like IT Home picking up the story later that evening). This section provides an objective cross-check. The original investigation below remains unchanged.
What the company said #
Z.ai posted their statement on Sep 18 at 17:44; public coverage can be found on IT Home. Key points:
- The issue came from “codebase indexing”, used for local indexes, session checkpoint restore, and Repo Wiki;
- Generating Wiki pages in the cloud “may” trigger an upload of repository data;
- After the Wiki is generated, the uploaded data is destroyed immediately and is not stored;
- The feature was on by default in its early launch period; some users were affected; the issue “has been fixed”;
- ZCode will be open-sourced soon, with third-party review; all users get one extra weekly quota reset.
The fact that uploads occurred is no longer contested by Zhipu. What remains in question is the actual upload scope, user toggles, and how anyone outside the company is supposed to verify “destroyed immediately”.
Reverse Engineering & Local Evidence vs. Official Claims (Old Version 3.12.3 vs. 3.14.0 vs. Official Statement) #
To prevent confusion between client versions, here is a direct comparison between the affected old version (3.12.3) when caught, the reverse-engineered 3.14.0 release, and the official statement:
| Dimension | Official Statement (Sep 18 17:44) | 3.12.3 Client Audit (Affected Version) | 3.14.0 Client Audit (Remediated Version) |
|---|---|---|---|
| What was sent | Repository data (for Wiki) | Full-workspace snapshots, ~87% .git — objects, LFS, reflogs |
Upload pipeline code physically stripped; only local checkpoints remain |
| Trigger mechanism | Wiki page generation “may” upload | Upload sidecar resident with login; captureBeforePrompt (before every prompt) and repo-wiki-update trigger unconditionally |
Upload sidecar dismantled; no longer triggers cloud packaging |
| Can you turn it off | No mention of a switch to stop uploads | Disabling “Optimize Experience” and “Repo Snapshot Indexing” still packaged and attempted direct OSS uploads | Code pipeline physically removed |
| Cloud-side handling | Destroyed immediately after generation | Not verifiable from outside (and logically contradicts the claimed “checkpoint restore” feature) | Cloud upload-credential endpoint pulled (returns 404) |
| Retained data | Claims data is not stored post-Wiki | Snapshot of a 538-file public repo accepted by server; retention/decryption rights unaddressed | Whether existing cloud snapshots were physically wiped cannot be verified externally |
One thing the original post left easy to misread: the 313MB commercial project sat in pending (failureCount: 564) and did not upload successfully. A separate, tiny public-repo workspace did: 538 files, about 15KB after compression and encryption, status accepted by the server. So “did anything actually leave the machine” — yes, at least that one.
Someone else reproduced the same directory layout and state files on Windows, including multiple small workspaces with no failure record that look accepted: NodeSeek. Another local cross-check: silencestar.
I archived the privacy policy on Sep 18. The page still said it was last updated 2026-06-15, and still did not mention full-workspace snapshots or cloud sync.
A Few Personal Clarifications #
- Did the 313MB commercial project actually get uploaded?: To be 100% clear, that 313MB commercial repo snapshot failed 564 times because it exceeded size limits, remaining stuck in local
pending— it was never successfully uploaded. I run an OpenWrt router at home; checking connection tracking and traffic flow records confirmed those encrypted chunks never left the local network. - Definitely not a “reverse engineering wizard” — credit goes to my base-spec MBA: Some people online started calling me a “reverse engineering expert,” which is completely unnecessary. The entire trigger was laughably mundane: thanks to Apple’s storage being priced like solid gold, my base-spec 256GB MacBook Air is perpetually starved for disk space. I was freeing up space when I noticed
~/.zcodemysteriously devouring over 700MB. My engineering spider-sense tingled, so I unpackedapp.asarto see what the hell was going on (on my other machine with a 2TB NVMe running Arch Linux, I wouldn’t have blinked twice at a measly few hundred megs). Besides, given the state of modern AI, anyone with a coding agent is effectively a reverse engineer now — pull any decent agent off the shelf, feed it this post and the source files, and it’ll break down the entire architecture with flawless clarity. It’s hardly some exclusive black magic; it was just basic engineering curiosity and troubleshooting. - The bitter irony: I was actually a long-term subscriber and supporter of GLM Coding Max myself. The funniest part is that on the evening of Sep 17, I was enthusiastically pitching ZCode to peers in a developer group chat. Less than half a day later, reality hit me right in the face when I caught this silent whole-repo packaging routine myself.
Does the mitigation still matter #
Yes. Even though 3.14.0 removed the code and the gateway route returns 404, the desktop client can still receive hot updates. The filesystem lock below remains active as a tripwire. The NodeSeek post has the Windows ACL equivalent.
Still unanswered #
- How do you prove “destroyed immediately” from the outside? Have existing cloud-stored encrypted snapshots been physically purged, and who holds private key decryption rights?
- The claimed “checkpoint restore” contradicts “destroyed immediately” — what exactly was retained in the cloud?
- Will the open-source drop include the historical upload sidecar that was caught, or only the latest sanitized commit?
If the repo actually ships, I will write a follow-up against the source.
The Starting Point: A 313MB Archive Stuck in Pending #
~/.zcode is the data root of ZCode. The size breakdown looked roughly like this:
cli/: ~257MB (session databases, execution logs)computer-use/: ~130MB (bundled app and runtime dependencies)v2/checkpoints/: ~303MB (the main suspect)
Inside v2/checkpoints/, I found a 313MB .enc file alongside a state metadata file:
{
"workspacePath": "/Users/ferstar/myprojects/<a commercial project>",
"lastCompressedSize": {
"encryptedSizeBytes": 313070842,
"workspaceSizeBytes": 345549173
},
"kind": "baseline",
"failureCount": 564
}The story was straightforward:
- The client scanned my active commercial project, excluded
node_modulesand a few others, and packaged the remaining 345MB into a 313MB encrypted archive labeledbaseline(full snapshot); - It recorded 564 failed upload attempts, leaving it sitting in the local
pending/directory waiting for the next retry.
The repository totaled 10GB; minus dependencies, the remaining 345MB was almost entirely core intellectual property.
Where It Goes: From Logs to asar Reverse Engineering #
The logs contained no explicit upload URLs, so I cracked open the client’s app.asar. The reconstructed upload flow:
sequenceDiagram
participant C as ZCode client
participant S as zcode.z.ai
participant O as Aliyun OSS
C->>S: POST /api/v1/snapshot/upload-credential
S-->>C: snapshot_id + RSA public key + max_size + OSS form credentials + callback
C->>C: tar.gz pack → AES-256-CTR encrypt → RSA-OAEP wrap key
C->>O: PostObject direct upload of tar.gz.enc
O->>S: callback confirms receipt
The pipeline runs in two stages:
- Request credentials from coordinator: The client calls
https://zcode.z.ai(VITE_ZCODE_ENDPOINT_ORIGINin code). The server returns OSS form signatures (policy,x-oss-signature), a dynamic Object Key, size limits, and the RSA public key for this encryption round; - Direct form POST to OSS: After archiving and streaming encryption locally, the client bypasses ZCode’s own application servers and posts
tar.gz.encdirectly to Aliyun OSS via an HTTP POST form. OSS then calls back to Zhipu’s backend to register the snapshot.
Inspecting active sockets confirmed this: the running ZCode process maintained persistent HTTPS connections to zcode.z.ai IP endpoints plus two Aliyun OSS storage nodes.
The Most Ironic Part: The Key Belongs to the Server #
The encryption implementation uses textbook envelope encryption:
keyId: String(i.encryption.key_version),
keyWrapAlgorithm: "rsa-oaep-sha256",
publicKeySpkiPem: Ylt(i.encryption.public_key)- Content is encrypted using an ephemeral symmetric key via AES-256-CTR;
- The symmetric key is wrapped using RSA-OAEP-SHA256 with the public key supplied by the server.
The critical catch is that public key: it is handed down by the server during credential negotiation, and the corresponding private key never touches your machine. Unwrapping the envelope key with all local private keys on my system failed, as expected.
In other words: that 313MB ciphertext on your drive cannot be opened by you or the client. Only Zhipu’s backend holds the key to unlock it.
If this feature were genuinely built for user-facing rollback or cross-device sync, the keys would live locally (just like Git or Time Machine). A key that only the server can use serves exactly one purpose: making sure the server can read your code whenever it wants.
What Gets Packed: Nearly 90% Is .git #
Even though the ciphertext is locked, the Manifest (file inventory) generated during packaging is saved locally in plaintext. Breaking down a snapshot of 42,411 files:
| Content | Size | Proportion | Information Contained |
|---|---|---|---|
.git/lfs/ |
196.1 MB | 56.8% | LFS cache — all binary assets and large media ever downloaded |
.git/objects/ |
102.2 MB | 29.6% | Complete commit history object store (commits, trees, blobs) |
.git/logs/ |
0.6 MB | 0.2% | reflogs — local branch history and unpushed operational traces |
| Source code & docs | ~46.2 MB | 13.4% | src/, config files, internal documentation |
The .git directory alone accounts for 86.6% of the payload.
Once uploaded, the cloud receives far more than your current working tree — it gets the entire lineage of your repository since day one:
- Historical API keys and sensitive configs that were deleted in later commits;
- Unpushed local branch names (which reveal unreleased feature plans);
- Internal GitLab hostnames and repository paths configured in
.git/config.
Furthermore, an extra manifest named repo_snapshot_extra_manifest hashes your global ZCode configuration files (such as settings.behavior.json) and bundles them across workspaces with every snapshot.
The Truth About the Switches: UI Toggles Don’t Stop It #
The natural reaction is checking settings to toggle it off. I cross-referenced the UI options with the codebase:
| Switch | What you expect it to do | What it actually does |
|---|---|---|
Optimize Experience (optimizeAgentExperienceEnabled) |
Disables telemetry / data collection | Only controls whether data is authorized for model training. Snapshot capture and upload still run |
Repo Snapshot Indexing (repoSnapshotIndexingEnabled) |
Disables the snapshot feature | Only controls whether the server indexes uploaded snapshots. Local packaging and upload continue uninterrupted |
Looking at host assembly code makes it crystal clear: the capture/upload sidecar is instantiated unconditionally at startup. There are no gating if checks on user preferences; the only requirement is that tokenProvider can return a valid JWT.
Bottom line: as long as you are logged in, this background pipeline is permanently active, and no UI setting can turn it off.
Capture triggers occur at two points: captureBeforePrompt (before every prompt) and on task completion tagged with repo-wiki-update. In session logs, a single active session generated up to 62 capture events.
What the Privacy Policy Says #
Checking ZCode’s privacy policy, it explicitly states that it collects “text, files, and code submitted during conversations” — standard practice for feeding context to LLMs.
However, across the entire policy, FAQs, and changelogs, there is not a single mention of silently packaging and uploading entire workspaces and full Git histories.
The closest mention is the generic template statement: “optimization program is off by default, and inputs will not be used for training without consent”.
Defense: Deleting Is Whack-a-Mole; Lock the Directory #
When I first found the pending package, I simply deleted it. Within half an hour, it re-captured — a fresh 313MB archive with the retry counter ticking from 564 to 565. When the uploader sees the file is gone, it just packs a new one. Manual deletion is whack-a-mole.
The cleanest and most effective solution is setting an immutability flag at the filesystem level, denying write access at the kernel level:
macOS #
# Wipe and lock the checkpoints directory
rm -rf ~/.zcode/v2/checkpoints
mkdir -p ~/.zcode/v2/checkpoints
chflags uchg ~/.zcode/v2/checkpoints
# Verify: should output "Operation not permitted"
touch ~/.zcode/v2/checkpoints/testLinux #
# Wipe and lock the checkpoints directory
rm -rf ~/.zcode/v2/checkpoints
mkdir -p ~/.zcode/v2/checkpoints
sudo chattr +i ~/.zcode/v2/checkpoints
# Verify: should output "Operation not permitted"
touch ~/.zcode/v2/checkpoints/testImpact & Rollback #
- Result: The capture logic gets blocked by the kernel whenever it attempts disk I/O. Without local artifacts, the upload pipeline has nothing to send;
- Trade-off: The “checkpoint rollback / timeline” UI feature won’t work (which always required uploading your code in the first place). Normal chat, autocomplete, and tool executions work without issue. Swallowed I/O errors in logs are harmless;
- To restore: Run
chflags nouchg ~/.zcode/v2/checkpoints(macOS) orsudo chattr -i ~/.zcode/v2/checkpoints(Linux).
Closing Thoughts #
When using AI tools, model inference inevitably needs code context — everyone accepts that going in. But this behavior clearly crosses the line in two ways:
First, data scope. Inference sends task-relevant context; snapshotting exfiltrates the entire repository along with years of Git commit history.
Second, architectural posture. If this were genuinely designed for user-side restore or syncing, the decryption keys would belong to the user. An encryption key held exclusively by the server, zero disclosure in privacy policies, unstoppable background uploads, and stubborn re-packaging upon deletion — this looks less like backup and far more like collection.
Tools are tools, but users must draw their own boundaries. If the software won’t let you turn it off, use the OS kernel to lock it in a cage.