mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
11 lines
225 B
Plaintext
11 lines
225 B
Plaintext
// This file contains a rule that should trigger a warning. This should not prevent scanning from being successful
|
|
|
|
rule WarningRule
|
|
{
|
|
strings:
|
|
$error_str = /this.+?is.+?a.+?slow.+?regex/
|
|
|
|
condition:
|
|
$error_str
|
|
}
|