mirror of
https://github.com/openharmony/third_party_iptables.git
synced 2026-07-21 06:15:26 -04:00
e4107a428d
Signed-off-by: HuangHaitao <huanghaitao16@huawei.com>
12 lines
732 B
Perl
12 lines
732 B
Perl
:INPUT,FORWARD,OUTPUT
|
|
-m string --algo bm --string "test";-m string --string "test" --algo bm;OK
|
|
-m string --string "test" --algo kmp;=;OK
|
|
-m string ! --string "test" --algo kmp;=;OK
|
|
-m string --string "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --algo bm;=;OK
|
|
-m string --string "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --algo bm;;FAIL
|
|
-m string --hex-string "|0a0a0a0a|" --algo bm;=;OK
|
|
-m string --algo bm --from 0 --to 65535 --string "test";-m string --string "test" --algo bm;OK
|
|
-m string --algo wrong;;FAIL
|
|
-m string --algo bm;;FAIL
|
|
-m string;;FAIL
|