From f8577499c3e46034144043bd9fc8f04a3b257d03 Mon Sep 17 00:00:00 2001 From: bashrc Date: Sun, 17 May 2026 18:28:34 +0100 Subject: [PATCH] More bad paths --- utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils.py b/utils.py index f717c4d18..474f2374d 100644 --- a/utils.py +++ b/utils.py @@ -4102,6 +4102,10 @@ def check_bad_path(path: str, allow_local_network_access: bool): if contains_ipv4_address(path_lower): return True + bad_starts = ('/firebase', '/composer') + if string_starts_with(path_lower, bad_starts): + return True + return False