kz-proxy 0.3.0

MITM proxy and subprocess sandbox for blind secret injection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
//! E2E tests: run sandbox with curl against an in-process capture server; assert on rewritten requests.
//! Skips tests that require curl if curl is not on PATH.

mod common;

use kz_proxy::{Sandbox, SandboxConfig, SecretMapping, StringMapping};
use std::time::Duration;

#[tokio::test]
async fn e2e_single_secret_in_header() {
    if !common::curl_available() {
        eprintln!("skipping e2e_single_secret_in_header: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "SLACK_TOKEN".to_string(),
            value: "real-token-123".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -H \"Authorization: Bearer $SLACK_TOKEN\" http://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok(), "timeout or run failed: {:?}", result);
    let run_result = result.unwrap();
    assert!(
        run_result.is_ok(),
        "sandbox.run failed: {:?}",
        run_result.err()
    );
    assert!(
        req.contains("real-token-123"),
        "captured request should contain real token (rewritten from masked), got: {}",
        req
    );
}

#[tokio::test]
async fn e2e_single_secret_in_body() {
    if !common::curl_available() {
        eprintln!("skipping e2e_single_secret_in_body: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "API_KEY".to_string(),
            value: "key456".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -X POST -d \"key=$API_KEY\" http://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    let run_result = result.unwrap();
    assert!(run_result.is_ok());
    assert!(
        req.contains("key456"),
        "captured body should contain real secret, got: {}",
        req
    );
}

#[tokio::test]
async fn e2e_method_get() {
    if !common::curl_available() {
        eprintln!("skipping e2e_method_get: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!("curl -s -x $HTTP_PROXY http://127.0.0.1:{}/", port);
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    assert!(result.unwrap().unwrap().success());
    assert!(
        req.starts_with("GET "),
        "expected GET, got: {}",
        req.lines().next().unwrap_or("")
    );
}

#[tokio::test]
async fn e2e_empty_body_get() {
    if !common::curl_available() {
        eprintln!("skipping e2e_empty_body_get: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!("curl -s -x $HTTP_PROXY http://127.0.0.1:{}/", port);
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    let run_result = result.unwrap();
    assert!(run_result.is_ok());
    // GET with no body: request has headers and optional empty body
    assert!(req.contains("GET ") || req.contains("get "));
}

#[tokio::test]
async fn e2e_upstream_unreachable_502() {
    if !common::curl_available() {
        eprintln!("skipping e2e_upstream_unreachable_502: curl not on PATH");
        return;
    }
    // Request to a port that nothing is listening on; proxy should return 502
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = "curl -s -x $HTTP_PROXY -o /dev/null -w '%{http_code}' http://127.0.0.1:1/".to_string();
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    assert!(result.is_ok());
    // curl exits 0 but we asked for http_code in the body; we'd need to parse. For now just ensure no hang.
    let _ = result.unwrap();
}

/// CONNECT (HTTPS tunnel): proxy establishes TCP tunnel. Curl to https URL should get 200 and succeed when network is reachable.
#[tokio::test]
async fn e2e_connect_https_tunnel() {
    if !common::curl_available() {
        eprintln!("skipping e2e_connect_https_tunnel: curl not on PATH");
        return;
    }
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = "curl -s -x $HTTP_PROXY -o /dev/null -w '%{http_code}' https://example.com/".to_string();
    let result = tokio::time::timeout(
        Duration::from_secs(10),
        sandbox.run("sh", &["-c".to_string(), cmd]),
    )
    .await;
    assert!(result.is_ok(), "timeout or run failed");
    let run_result = result.unwrap();
    assert!(
        run_result.is_ok(),
        "sandbox.run failed: {:?}",
        run_result.err()
    );
    // In CI or offline, example.com may be unreachable; we only require run() returns (no hang, no proxy crash)
    let status = run_result.unwrap();
    if !status.success() {
        eprintln!("note: curl exited {:?} (network may be unreachable); CONNECT tunnel implementation is exercised", status.code());
    }
}

/// HTTPS via MITM: CONNECT to local HTTPS, decrypt, rewrite token in header, re-encrypt to upstream.
#[tokio::test]
async fn e2e_connect_https_mitm_rewrites_token() {
    if !common::curl_available() {
        eprintln!("skipping e2e_connect_https_mitm_rewrites_token: curl not on PATH");
        return;
    }
    let (port, handle, captured, server_cert_path) =
        common::start_https_capture_server().expect("https capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "BEARER_TOKEN".to_string(),
            value: "secret-rewritten-via-mitm".to_string(),
        }],
        allow_private_connect: true,
        upstream_ca: Some(server_cert_path),
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -k -x $HTTPS_PROXY -H \"Authorization: Bearer $BEARER_TOKEN\" https://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(10), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    assert!(result.is_ok(), "timeout or run failed: {:?}", result);
    let run_result = result.unwrap();
    assert!(
        run_result.is_ok(),
        "sandbox.run failed: {:?}",
        run_result.err()
    );
    assert!(run_result.unwrap().success());
    let req = captured.lock().unwrap().clone();
    assert!(
        req.contains("secret-rewritten-via-mitm"),
        "MITM should rewrite token in HTTPS request; got: {}",
        req
    );
}

/// HTTPS via MITM to a local TLS server: deterministic test with no network. Proxy uses upstream_ca to trust the server.
#[tokio::test]
async fn e2e_connect_https_tunnel_local() {
    if !common::curl_available() {
        eprintln!("skipping e2e_connect_https_tunnel_local: curl not on PATH");
        return;
    }
    let (port, handle, captured, server_cert_path) =
        common::start_https_capture_server().expect("https capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        allow_private_connect: true,
        upstream_ca: Some(server_cert_path),
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -k -x $HTTPS_PROXY -o /dev/null -w '%{{http_code}}' https://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(10), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    assert!(result.is_ok(), "timeout or run failed: {:?}", result);
    let run_result = result.unwrap();
    assert!(
        run_result.is_ok(),
        "sandbox.run failed: {:?}",
        run_result.err()
    );
    let status = run_result.unwrap();
    assert!(status.success(), "curl should succeed: {:?}", status.code());
    let req = captured.lock().unwrap().clone();
    assert!(
        req.starts_with("GET ") || req.to_lowercase().starts_with("get "),
        "expected GET request over TLS tunnel, got: {}",
        req.lines().next().unwrap_or("")
    );
}

#[tokio::test]
async fn e2e_secret_in_url_query() {
    if !common::curl_available() {
        eprintln!("skipping e2e_secret_in_url_query: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "TOKEN".to_string(),
            value: "qval".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY \"http://127.0.0.1:{}/?t=$TOKEN\"",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    assert!(result.unwrap().unwrap().success());
    assert!(
        req.contains("qval"),
        "URL query should contain rewritten secret, got: {}",
        req
    );
}

/// Documents current behavior: small body POST is forwarded correctly. Body > 64 KiB may be truncated (single read buffer in proxy).
#[tokio::test]
async fn e2e_small_body_post_forwarded() {
    if !common::curl_available() {
        eprintln!("skipping e2e_small_body_post_forwarded: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "X".to_string(),
            value: "y".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let body = "key=value";
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -X POST -d \"{}\" http://127.0.0.1:{}/",
        body, port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    assert!(result.unwrap().unwrap().success());
    assert!(
        req.contains("key=value"),
        "small POST body should be forwarded: {}",
        req
    );
}

#[tokio::test]
async fn e2e_multiple_secrets() {
    if !common::curl_available() {
        eprintln!("skipping e2e_multiple_secrets: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![
            SecretMapping {
                var: "A".to_string(),
                value: "secret-a".to_string(),
            },
            SecretMapping {
                var: "B".to_string(),
                value: "secret-b".to_string(),
            },
        ],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -H \"X-A: $A\" -H \"X-B: $B\" http://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    assert!(result.unwrap().unwrap().success());
    assert!(
        req.contains("secret-a"),
        "expected secret-a in request: {}",
        req
    );
    assert!(
        req.contains("secret-b"),
        "expected secret-b in request: {}",
        req
    );
}

/// String tokenization: process sends a literal token in the request; proxy replaces with real value.
#[tokio::test]
async fn e2e_string_mapping_in_header() {
    if !common::curl_available() {
        eprintln!("skipping e2e_string_mapping_in_header: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        strings: vec![StringMapping {
            token: "__BEARER__".to_string(),
            value: "replaced-bearer-token".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -H \"Authorization: Bearer __BEARER__\" http://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    let run_result = result.unwrap();
    assert!(run_result.is_ok());
    assert!(
        req.contains("replaced-bearer-token"),
        "string mapping should replace token in header, got: {}",
        req
    );
}

/// String and env tokenization together.
#[tokio::test]
async fn e2e_string_and_secret_mapping() {
    if !common::curl_available() {
        eprintln!("skipping e2e_string_and_secret_mapping: curl not on PATH");
        return;
    }
    let (port, handle, captured) = common::start_capture_server().expect("capture server");
    let config = SandboxConfig {
        secrets: vec![SecretMapping {
            var: "API_KEY".to_string(),
            value: "env-secret".to_string(),
        }],
        strings: vec![StringMapping {
            token: "__PLACEHOLDER__".to_string(),
            value: "string-replaced".to_string(),
        }],
        ..SandboxConfig::default()
    };
    let sandbox = Sandbox::new(config);
    let cmd = format!(
        "curl -s -x $HTTP_PROXY -H \"X-Api-Key: $API_KEY\" -H \"X-Token: __PLACEHOLDER__\" http://127.0.0.1:{}/",
        port
    );
    let result = tokio::time::timeout(Duration::from_secs(5), sandbox.run("sh", &["-c".to_string(), cmd])).await;
    let _ = handle.join();
    let req = captured.lock().unwrap().clone();
    assert!(result.is_ok());
    assert!(result.unwrap().unwrap().success());
    assert!(
        req.contains("env-secret"),
        "expected env secret in request: {}",
        req
    );
    assert!(
        req.contains("string-replaced"),
        "expected string mapping in request: {}",
        req
    );
}