Update β 2026-07-14:This is the original wire-level analysis (grok 0.2.93). Since publishing: xAI disabled the upload server-side (disable_codebase_upload: true
); added a/privacy opt-out
β which I wire-tested and found to be a data-retentionsetting, not a block on what'ssent; and Elon Musk publicly committed to deleting all previously-uploaded data (not yet confirmed complete). Full, maintained story + evidence:Β·[https://cereblab.com][https://github.com/cereblab/grok-build-exfil-repro]
By @cereblab β Independent AI Safety Checker. Reproduce it yourself: github.com/cereblab/grok-build-exfil-repro
A measured, reproducible teardown. Findings are backed by captured artifacts (endpoint, HTTP method, status code, byte size, host) and repro commands; where an observation was seen live but not retained as a file, Β§7 says so explicitly. Section 8 is an evidence appendix with SHA-256s and a "what we did not prove" list. All captures are of my own traffic on my own machine, using a throwaway repository containing fake "canary" secrets β no real credentials were exposed.
xAI's official Grok Build coding CLI (grok
), on a normal consumer login, does three things worth documenting precisely:
It transmits the contents of files it reads β including a The secret appears in.env
secrets file β to xAI, verbatim and unredacted.twochannels: the live model turn (POST /v1/responses
) and asession_state
archive uploaded andaccepted (HTTP 200) viaPOST /v1/storage
β the endpoint the binary routes to thegrok-code-session-traces
GCS bucket (see Β§5).It uploads the Grok packages the workspace and uploads it viawhole repositoryβ every tracked file's content plus git history β independent of what the agent reads.POST /v1/storage
. Proven directly: on a real codebase, with the prompt*"reply OK, do not read any files"*, Grok uploaded theentire repo as a git bundle(POST /v1/storage β 200
);git clone
-ing the captured bundle recovers a file the agent wastold not to openβsrc/_probe/never_read_canary.txt
β with its unique markerverbatim, plus the full git history (appendixuploaded_repo.bundle
). And it scales: on a12 GB repo of never-read random files,/v1/storage
moved5.10 GiB, all HTTP 200(truncated mid-stream), while the model-turn channel moved just** 192 KB**β a**~27,800Γ ratio** that pins the upload to the codebase, not to what was read. No storage upload failed; the only non-200s were amodel-usage quota(402/429) on/v1/responses
and one unrelated 404 βnota storage size cap.The storage destination is a Google Cloud Storage bucket,(not AWS S3) β named verbatim in the binary and in a capturedgrok-code-session-traces
metadata.json
(gs://grok-code-session-traces/β¦
). I did not find this mechanism surfaced in the CLI's install/quickstart materials (not an exhaustive docs audit β Β§7), it is active by default, anddisabling "Improve the model" does not turn it off(/v1/settings
still returnedtrace_upload_enabled: true
; Β§6).
None of this proves xAI trains on the data β that is a policy question addressed in Β§6. What is proven is transmission, acceptance, and storage.
Install: curl -fsSL https://x.ai/cli/install.sh | bash # β ~/.grok/bin/grok
Auth: first launch opens a browser β login to X / SuperGrok (consumer account, not an API key)
Binary identity (repro: file $(readlink -f ~/.grok/bin/grok); ~/.grok/bin/grok --version; shasum -a 256 $(readlink -f ~/.grok/bin/grok)
):
~/.grok/bin/grok -> ../downloads/grok-macos-aarch64
Mach-O 64-bit executable arm64
grok 0.2.93 (f00f96316d4b)
SHA-256: 2a97ba675bd992aa9b981e2e83776460d94f469b510c0b8efe28b50d236d767c
The upload machinery is a first-party Rust crate. strings
on the binary yields these source paths and constants (repro: strings <binary> | grep -E 'xai-data-collector|grok-code-session-traces|storage.googleapis'
):
crates/codegen/xai-data-collector/src/gcs.rs
crates/codegen/xai-data-collector/src/storage_client.rs
crates/codegen/xai-data-collector/src/queue.rs
crates/codegen/xai-data-collector/src/file_access_tracker.rs
crates/codegen/xai-data-collector/src/circuit_breaker_observer.rs
crates/codegen/xai-grok-shell/src/upload/{gcs,turn,trace,manifest}.rs
grok-code-session-traces
storage.googleapis.com
"Up bytes to GCS via proxy"
Environment: macOS, Apple Silicon, grok 0.2.93
, July 2026.
brew install mitmproxy
; run once to generate its CA at~/.mitmproxy/
.- Trust the CA in the login keychain (no sudo; Grok does not certificate-pin against it):
security add-trusted-cert -r trustRoot -k ~/Library/Keychains/login.keychain-db \
~/.mitmproxy/mitmproxy-ca-cert.pem
- Run Grok routed through the proxy (a
mitmdump
addon logs, per request: method, host, path,response status, request byte size; and saves request bodies for xAI hosts):
HTTPS_PROXY=http://127.0.0.1:8080 SSL_CERT_FILE=~/.mitmproxy/mitmproxy-ca-cert.pem \
grok -p "<prompt>" --cwd <repo>
- For staged-artifact inspection, race-copy
~/.grok/upload_queue/*
during the run, thengzip -dc | tar -xO
.
Canary repo: each file carries a unique marker so anything appearing in captured traffic is unambiguously traceable to a file. Secrets file secrets.env
/ .env
:
API_KEY=CANARY7F3A9-SECRET-should-not-leave
DB_PASSWORD=CANARY7F3A9-DBPASS
Claim: when Grok reads a file, its contents are transmitted to xAI β serialized into the POST /v1/responses
model-turn body, and packaged into a session_state
archive that is uploaded and accepted (HTTP 200) via POST /v1/storage
β with no redaction of the file's contents. A .env
is sent like any other file.
Wire artifact β a decrypted 48,070-byte POST cli-chat-proxy.grok.com/v1/responses
request body (identifiable as a model turn by its embedded "messages":[β¦]"model":"grok-4.5"
JSON). It contains the secrets file verbatim (appendix: secrets_responses_body.bin
, secret_verbatim.txt
):
β¦API_KEY=CANARY7F3A9-SECRET-should-not-leave\nDB_PASSWORD=CANARY7F3A9-DBPASS\nβ¦"model":"grok-4.5"β¦
Repro: grep -a "CANARY7F3A9-DBPASS" secrets_responses_body.bin
β matches. All six file markers (source, logic, README, nested JS, API key, DB password) are recoverable from the decrypted /v1/responses
bodies. (This artifact proves the secret was transmitted to the /v1/responses
endpoint; the raw body file does not carry the response status, so the acceptance (200) claim is anchored to the /v1/storage
channel immediately below, which is status-mapped in wire_12gb.log
.)
Second channel β persisted to Google Cloud Storage. The same content is packaged into a session_state
archive uploaded via POST /v1/storage
. Proven by decompressing the staged artifact before it drains (appendix: secrets_session_state.tar.gz
):
gzip -dc secrets_session_state.tar.gz | tar -xO | grep -ao 'CANARY7F3A9-[A-Z]*'
β CANARY7F3A9-SECRET, CANARY7F3A9-DBPASS, + all others
So the secret is not only processed in-flight; it is written into an archive destined for storage.
Pre-empting "you told it to read the secrets." A control run with a file the agent was told not to open (untouched_secret.txt
) and the prompt "Reply exactly OK, do not read any files" produced no occurrence of that file's marker in any captured body. The leak is therefore scoped to files Grok does read β but it reads liberally (any file relevant to the task, including a .env
) and applied no redaction to that file's contents. The defect is that a secrets file was transmitted unredacted, not the act of reading. Important scope reconciliation: this control shows the unread file is absent from the ** /v1/responses** bodies β that is
Channel A(files the agent reads). It does
not clear the separate whole-repo
snapshot in Β§4 (
/v1/storage
Channel B), which β by the volume evidence there β does sweep in never-read files; I could not decompress the
/v1/storage
codebase chunk to check this specific file. So "unread file not uploaded" is true only for the model-turn channel, not for the codebase snapshot. (Two further scope notes: (i) in my runs the
.env
/secrets.env
was git-tracked; I did not separately test whether a .gitignore
d file is still uploaded, so I make no gitignore claim β the mechanism is read-driven per the file_access_tracker
crate, but that specific case is untested. (ii) The canary values sat in API_KEY=
/DB_PASSWORD=
keys inside a .env
/secrets.env
but were not real-format high-entropy tokens; I proved this, not that no redactor exists for, say, an
.env
was transmitted unredactedsk-β¦
-shaped key.)## 4. Finding 2 β The whole repo is uploaded at multi-GB scale; the only ceiling is a model quota, not storage size
Claim: Grok uploads a whole-repo snapshot with no storage size wall in the tested range. As the repo grows it switches upload strategy and keeps returning 200; on a 12 GB repo, 73 chunks of ~75.0 MB (5.10 GiB) uploaded with zero failures before the capture was truncated mid-stream.
Wire-captured size sweep (incompressible content so the tar cannot shrink; fresh session each step). Only the 12 GB row was retained as a file (wire_12gb.log
); the smaller rows were observed live during the sweep but their logs were not saved (see Β§7):
| Repo size | Upload behavior (observed on the wire) | Status | Artifact |
|---|---|---|---|
| 64 MB | single POST /v1/storage , req=50548145b (48 MB) |
||
| 200 | |||
| observed, not retained | |||
| ~600 MB | POST /v1/storage in ~7.5 MB chunks (dozens) |
||
| all 200 | |||
| observed, not retained | |||
| ~3 GB | POST /v1/storage/multipart/init β PUT storage.googleapis.com/grok-code-session-traces/multipart/<id> in 50 MB parts (direct-GCS PUT lines not preserved β Β§7) |
||
| all 200 | |||
| observed, not retained | |||
| ~12 GB | POST /v1/storage in 75 MB chunks (reqβ75014840b ); 73 chunks (~5.1 GB) captured before I stopped the run |
||
| all 200, 0 failures | |||
wire_12gb.log |
Preserved artifact: wire_12gb.log
(appendix). It contains 83 /v1/storage 200 responses*:
82 content-upload
POST β¦/v1/storage
requests β of which 73 are chunks of ~75.0 MB each(byte sizes min 75,014,811 / max 75,014,871, totaling
5,476,083,317 B = 5.10 GiB / 5.48 GB) plus
9 smaller POSTs β and
1
/v1/storage/batch_exists
dedup check. Total /v1/storage*
request bytes: 5,476,228,005 B. Zero storage requests failed. The capture was stopped while uploads were still streaming (the last line is another ~75 MB chunk β 200), so this demonstrates
β₯5.1 GiB uploaded, still climbing when truncatedβ
notthat the full 12 GB completed. Repro (three greps, so no count is ambiguous):
grep 'cli-chat-proxy.grok.com/v1/storage' wire_12gb.log | grep -c '> 200'
β 83(all
/v1/storage*
); grep 'POST cli-chat-proxy.grok.com/v1/storage ' wire_12gb.log | grep -c '> 200'
β 82(content POSTs only);
grep req=75014 wire_12gb.log | grep -c '> 200'
β 73(the ~75 MB chunks).
Scope β this is the whole repo, not just files the agent read. Channel A (Β§3,
/v1/responses
) carries files the agent opens. This Β§4 upload is a separate Channel B: a snapshot of the entire workspace. Two lines of evidence:
(a) The decisive byte split (load-bearing). In thesamecaptured 12 GB session β a repo of100 % random files the agent never readβ the two channels moved wildly different volumes:** Channel A**, across 5 requests, largest single turn 60,394 B./v1/responses
(model turns): 196,705 B = 192 KB totalChannel B/v1/storage
: 5,476,228,005 B = 5.10 GiB.- That is a
~27,800Γ ratio(5,476,083,317 Γ· 196,705). The model** demonstrably never ingested the files**(192 KB cannot carry 5 GiB of content), yet 5.10 GiB of them left via/v1/storage
β and across the sweep the/v1/storage
volumetracks total repo size(64 MB β 12 GB). GB-scale bytes leaving a never-read repo can only be a whole-repo snapshot.
(b) The binary's own paths/strings corroborate the mechanism:after_codebase.tar.gz
,xai-grok-shell/src/upload/{trace,turn}.rs
,repo_state.upload
,"collecting workspace files","spawning background coordinator".(c) A staged codebase manifest enumerates a never-read file and content-addresses it to the GCS bucket. In a separate run on areal 298-file, I race-copied the snapshot Grok staged for upload (appendix:cereblab_api
codebasestaged_base_tree_manifest.json
,staged_metadata.json
). The manifest listsβ a file I planted and never asked Grok to open β alongside the real sources (src/_probe/never_read_canary.txt
src/apns.ts
,src/index.ts
, β¦); andmetadata.json
gives each file a destinationfileId
of the form. So the whole tree, unread files included, is enumerated and content-addressed for upload to the named GCS bucket. (That run was quota-blocked before the content blobs uploaded; the 12 GB run above independently provesgs://grok-code-session-traces/repo_changes_dedup/v2/supplemental/sha256_β¦
GB-scale content actually leaves the wire, all 200.)(d) DEFINITIVE β a never-read file's With the account upgraded (quota lifted), I re-ran on the realcontentrecovered verbatim from an uploaded git bundle (single SuperGrok run).cereblab_api
repo with the explicit promptReply with exactly: OK. Do not read or open any files.
, having planted a unique markerCANARY-XR47P2-NEVERREAD-UNIQUE
insrc/_probe/never_read_canary.txt
. Grok uploaded theentire repository as a git bundle viaPOST cli-chat-proxy.grok.com/v1/storage β 200 (req=152102b)
(appendixuploaded_repo.bundle
, SHA-25673b9c0af06311bae35c3ed03274d0eec2846e76762828d10b09757ca41bd6024
). Runninggit clone uploaded_repo.bundle
reconstructs the repo, andsrc/_probe/never_read_canary.txt
contains the markerverbatimβ a file the agent was explicitly told not to open. The bundle also carries the** full git history**(4 commits, 47 files). This is the airtight per-file-content proof: the whole repo β unread files included β left the machine and was accepted (200). The upload mechanism is agit bundle, so "whole repo" is literal (every tracked file + history).** Replicated on a second, unrelated codebase:**the identical capture on thecereblab_auth
Cloudflare-Worker repo produced a git-bundle upload (POST /v1/storage β 200
, 31,743 B) from whichgit clone
recovered its own never-read markerCANARY-AUTH-4T8K2-NEVERREAD
verbatim (appendixuploaded_repo_auth.bundle
, SHA-2560ee536538bcd1ee72a258f9977ab69f8a9b1ac240491b91a4e94335b4d83c768
). Two independent repos, same result.
(Prompt note: the 12 GB session was interactive and I did not log its verbatim prompt, but the 192 KB Channel-A total is dispositive that no bulk read occurred whatever the prompt was; a separate headless control run used the explicit prompt Reply exactly OK, do not read any files and confirmed an unread file is absent from Channel A.)
(The earlier "one gap" is now closed by evidence (d): a single SuperGrok run where a specific never-read file's content is recovered from a wire-captured, 200-status git-bundle upload. The 12 GB run remains the proof that this scales to GB volumes.)
No storage/upload request failed β every one of the 82 /v1/storage calls returned 200. The only non-200s in the entire capture were on the model endpoint plus one session-bookkeeping call (full set from
wire_12gb.log
; /v1/responses
lines also in model_limit.txt
):
POST /v1/responses -> 402 (Payment Required) Γ1
POST /v1/responses -> 429 (Too Many Requests) Γ3
POST /v1/sessions/<id>/replicas/update -> 404 Γ1 (session bookkeeping, not an upload)
and finally, in plain text, on stdout:
You've reached your free Grok Build usage limit for now. Get SuperGrok for much higher limitsβ¦
The 402/429 are a model-usage quota; the lone 404 is unrelated to storage. Notably, storage uploads continued to return 200 after the model turn was rate-limited (76 /v1/storage
200s occur at or after the first 429) β the codebase upload is independent of whether the model answers.
Pre-empting "you're confusing a local disk cache with an upload." This claim rests strictly on wire-captured 200-status uploads of file bytes leaving the machine (/v1/storage
request bodies of 7.5β75 MB in the preserved wire_12gb.log
; the 3 GB 50 MB PUT
s to storage.googleapis.com
were also seen on the wire, but that log was not retained β Β§7). It does not rely on the ~/.grok/upload_queue
draining β queue-drain is ambiguous (it empties on both success and drop) and is explicitly not used as evidence here. (An earlier draft that inferred upload from queue-drain was wrong and has been retracted; see Β§7.)
Storage destination is Google Cloud Storage, bucket. This rests on thegrok-code-session-traces
preserved binary stringsgrok-code-session-traces
,storage.googleapis.com
, and*"Up bytes to GCS via proxy"*(crate_strings.txt
),and on a preserved staged(metadata.json
whose per-filefileId
s are literallygs://grok-code-session-traces/repo_changes_dedup/v2/β¦/sha256_β¦
staged_metadata.json
), corroborated by the directstorage.googleapis.com
multipart PUTs observed at 3 GB (observed live; that log was not retained β see Β§7). It isnot AWS S3 (the binary linksaws-sdk-s3
for an alternate path and AWS STS/SSO for auth, but the destination named in the binary β and seen on the wire at 3 GB β is GCS).Third-party telemetry:POST api.mixpanel.com/track
and/engage
(Mixpanel), plusPOST grok.com/_data/v1/events
β all 200.Not surfaced in setup docs (scope-limited claim): I did not find therepo_state
/session_state
upload togrok-code-session-traces
, or the~/.grok/upload_queue
staging, described in the CLI's install script or quickstart materials I reviewed (this is not an exhaustive audit of all xAI docs β see Β§7). The mechanism is active by default on the standard consumer login.Reliability note (separate from privacy):~/.grok/upload_queue
stages ~3 GB snapshots per turn and, under load, can grow to tens of GB and exhaust the disk. This is a real bug, independent of whether uploads succeed.
"Cloud AI tools send context; this is normal." True, and conceded: any cloud coding agent must send code to its server to act on it. Thenovel deltas here are (a) asecrets file (e.g..env
) is transmittedunredacted, (b) the content is** persistedto a named GCS bucket, not just processed transiently, and (c) the upload mechanism is not surfaced in the CLI's setup materials**(Β§7) and on by default."It's in the ToS / opt-in." xAI's consumer policy broadly discloses data use for model improvement with an opt-out (grok.com β Settings β Data β "Improve the model"; Private Chat auto-opts-out; opt-out is prospective, not retroactive). Butbroad training disclosure β documenting this specific mechanism. I did not find therepo_state
/upload_queue
/grok-code-session-traces
pipeline described in the CLI materials I reviewed (Β§7 notes this is not an exhaustive docs audit), so β on those materials β a user is not informed ofitspecifically. Sources: xAI Privacy Policy (https://x.ai/legal/privacy-policy), Consumer ToS (https://x.ai/legal/terms-of-service).The "Improve the model" toggle makes no difference β ON or OFF, the whole repo is uploaded the same way. At default settings, Grok uploaded 5.10 GiB of a never-read repo (Β§4). Then Iturned "Improve the model" off and re-ran: Grokstilluploaded the entire repo as a git bundle (Β§4(d),POST /v1/storage β 200
, the never-read file recovered bygit clone
), and the server's/v1/settings
response to the CLIstillreturned"trace_upload_enabled": true
,"upload_enabled": true
,"session_registry_enabled": true
(and"max_upload_file_bytes": 1073741824
, a 1 GiB per-file cap). The opt-out governstraining, not whether your code is uploaded/stored: the codebase upload togrok-code-session-traces
continues either way.Opting out does not stop your repository from leaving the machine.
We did not prove xAI trains on this data. Upload/storage β training. That is governed by policy and account tier; we measured transmission only.The direct(the log was overwritten during the sweep, and re-capture is currently blocked by the model quota). The multi-GB claim in Β§4 therefore rests on thestorage.googleapis.com/grok-code-session-traces
PUT wire-lines were observed at 3 GB but not preserved in this sessionpreservedwire_12gb.log
(/v1/storage
200s at 75 MB chunks) plus the binary strings naming the bucket; the direct-PUT capture is reproducible once quota resets.Only the 12 GB sweep log was retained. The 64 MB / 600 MB / 3 GB rows were observed live but their capture logs were not saved (reproducible once quota resets). The 12 GB capture itself was stopped mid-stream (~5.1 GB / 73 chunks captured), so it proves multi-GB uploadsucceeds with no failures, not that an entire 12 GB repo run completes end-to-end.The "not documented" claim is scope-limited. I based it on the CLI's install script and quickstart, not an exhaustive search of all xAI documentation, help-center articles, or policies. It is possible the mechanism is described somewhere I did not check; the defensible statement is "not surfaced in the CLI's own setup materials."Channel B (whole-repo) β now CLOSED (was the one open gap). Evidence Β§4(d): on a SuperGrok account, a single run wire-captured Grok up theentire repository as a git bundle viaPOST /v1/storage β 200
;git clone
of the preserveduploaded_repo.bundle
recoverssrc/_probe/never_read_canary.txt
β a file the agent was told not to open β with its unique markerverbatim, plus the full git history. So the never-read file'scontent(not just its hash) demonstrably left the machine and was accepted. Thewire_12gb.log
run remains the proof that the same mechanism scales to GB volumes.Universal vs. conditional (partially answered): multi-GB upload succeeds on free-tier; the git-bundle content upload succeeds on SuperGrokwith "Improve the model" turned OFF(/v1/settings
returnedtrace_upload_enabled: true
). I didnot find a setting that disables the upload in these tests, but I did not exhaustively enumerate every account/config permutation, so I don't claim it canneverbe gated.One earlier claim was retracted: an initial "the multi-GB blobs fail and are deleted locally, not exfiltrated" conclusion β based on aPID-scopednettop
reading (<1 MB) β was wrong. PID/host-scoped egress misses (a) a separate upload coordinator process and (b) presignedPUT
s that godirectly to Google IPs, never touching the API host. The wire capture (this document) supersedes that inference.
All artifacts and SHA-256s (MANIFEST.sha256
). Binary SHA-256: 2a97ba675bd992aa9b981e2e83776460d94f469b510c0b8efe28b50d236d767c
.
| Artifact | What it proves |
|---|---|
secrets_responses_body.bin (48 KB) |
|
.env contents verbatim in a POST /v1/responses body |
|
secret_verbatim.txt |
|
the two .env lines as extracted |
|
secrets_session_state.tar.gz (16 KB) |
|
same secret inside the archive uploaded via /v1/storage |
|
wire_12gb.log |
|
83 /v1/storage* β 200 on a 12 GB repo = 82 content POSTs (73 chunks ~75.0 MB = 5.10 GiB + 9 small) + 1 batch_exists ; Channel-A /v1/responses = 196,705 B (192 KB) total (~27,800Γ less); 0 storage failures; truncated mid-stream |
|
model_limit.txt |
|
the /v1/responses failures (402Γ1, 429Γ3 β model quota) |
|
crate_strings.txt |
|
xai-data-collector paths + grok-code-session-traces + storage.googleapis.com |
|
binary.sha256 |
|
| binary provenance | |
gcs_puts.txt |
|
| placeholder (empty capture) β the 3 GB direct-GCS PUT lines were not retained; note inside explains, re-capture pending quota (Β§7) | |
uploaded_repo.bundle (152 KB, SHA-256 73b9c0af⦠) |
|
the smoking gun β a git bundle wire-captured leaving via POST /v1/storage β 200 ; git clone recovers src/_probe/never_read_canary.txt (never-read) verbatim + full git history (real cereblab_api repo, SuperGrok, "Improve the model" OFF) |
|
uploaded_repo_auth.bundle (SHA-256 0ee53653β¦ ) |
|
replication on a 2nd unrelated repo (cereblab_auth Worker) β git bundle via POST /v1/storage β 200 ; git clone recovers its never-read canary CANARY-AUTH-4T8K2-NEVERREAD verbatim |
|
staged_base_tree_manifest.json |
|
real-code run: the codebase snapshot manifest enumerating (never-read) + 30 real src/_probe/never_read_canary.txt src/*.ts files |
|
staged_metadata.json |
|
real-code run: per-file destinations fileId: gs://grok-code-session-traces/repo_changes_dedup/v2/β¦/sha256_β¦ (names the GCS bucket) |
Repro (condensed):
brew install mitmproxy && mitmdump -q -p 8080 # generates ~/.mitmproxy CA
security add-trusted-cert -r trustRoot -k ~/Library/Keychains/login.keychain-db ~/.mitmproxy/mitmproxy-ca-cert.pem
HTTPS_PROXY=http://127.0.0.1:8080 SSL_CERT_FILE=~/.mitmproxy/mitmproxy-ca-cert.pem grok -p "read every file" --cwd <repo>
Integrity: all captures were of my own traffic on my own machine; the "secrets" were fake canary strings; no real credentials were exposed. Findings are version-specific to grok 0.2.93
(July 2026); xAI may change behavior at any time.