From c4c47f7ca9f282c7343cd9d2fd45ddd4b14c119b Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Thu, 16 Oct 2025 16:10:28 +0200 Subject: [PATCH] detect/integers: rename all1 to all And all to all_or_absent Ticket: 7929 --- tests/http2-window-index/test.rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/http2-window-index/test.rules b/tests/http2-window-index/test.rules index cc1e9083b..49bb5eda0 100644 --- a/tests/http2-window-index/test.rules +++ b/tests/http2-window-index/test.rules @@ -1,11 +1,11 @@ # happens once alert http2 any any -> any any (http2.window:32768; sid:4; rev:1;) # happens many times because many txs do not have any http2.window -alert http2 any any -> any any (http2.window:32768,all; sid:5; rev:1;) +alert http2 any any -> any any (http2.window:32768,all_or_absent; sid:5; rev:1;) # does not happen as tx is 3 has http2.window:32768 and http2.window:32767 -alert http2 any any -> any any (http2.window:32768,all1; sid:6; rev:1;) +alert http2 any any -> any any (http2.window:32768,all; sid:6; rev:1;) # matches (range is exclusive) -alert http2 any any -> any any (http2.window:32766-32769,all1; sid:7; rev:1;) +alert http2 any any -> any any (http2.window:32766-32769,all; sid:7; rev:1;) # matches for stream id 5 alert http2 any any -> any any (http2.window:>36000,nb>1; sid:8; rev:1;) # happens many times because many txs do not have any http2.window -- 2.47.3