From b621bf1c2c2671549abe6f219ba325a0224621f2 Mon Sep 17 00:00:00 2001 From: SashegDev Date: Mon, 14 Sep 2026 11:00:25 +0000 Subject: [PATCH] uni: watchlow filters at record time --- tools/sbl_uni.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/sbl_uni.py b/tools/sbl_uni.py index 7476654..b760a38 100644 --- a/tools/sbl_uni.py +++ b/tools/sbl_uni.py @@ -597,7 +597,9 @@ def main(): wlolog = [] def hook_wlo(mu, access, addr, size, value, data): - if len(wlolog) < 60: + if addr + size <= _wlo or addr >= _whi: + return + if len(wlolog) < 200: try: pc = mu.reg_read(_PC4) except Exception: