feat: add dlp: false passthrough option for egress routes
tracker-policy-pr / check-pr (pull_request) Successful in 13s
test / integration-docker (pull_request) Successful in 23s
lint / lint (push) Successful in 1m1s
test / unit (pull_request) Successful in 48s
test / integration-firecracker (pull_request) Successful in 3m52s
test / coverage (pull_request) Successful in 19s
test / publish-infra (pull_request) Has been skipped

Routes with `dlp: false` skip all DLP scanning (including CRLF injection,
which cannot be disabled via `dlp.outbound_detectors: false`) and tunnel
HTTPS connections without TLS interception so the client sees the server's
real certificate. Fixes Docker image pulls, which fail when the proxy MITM's
the TLS handshake and the container doesn't trust the per-bottle CA.

Closes #462
This commit is contained in:
2026-07-22 22:37:43 +00:00
parent ef89ed084f
commit e89e95a139
8 changed files with 259 additions and 29 deletions
+13
View File
@@ -337,6 +337,19 @@ class TestDlp(unittest.TestCase):
"bogus": True,
}}])
def test_dlp_false_sets_passthrough(self):
b = _bottle([{"host": "x.example", "dlp": False}])
r = b.egress.routes[0]
self.assertTrue(r.DlpPassthrough)
def test_dlp_passthrough_default_false(self):
b = _bottle([{"host": "x.example"}])
self.assertFalse(b.egress.routes[0].DlpPassthrough)
def test_dlp_not_dict_or_false_rejected(self):
with self.assertRaises(ManifestError):
_bottle([{"host": "x.example", "dlp": "nope"}])
def test_outbound_on_match_omitted_is_empty(self):
b = _bottle([{"host": "x.example"}])
self.assertEqual("", b.egress.routes[0].OutboundOnMatch)