Skip to content

Commit

Permalink
Fix typo in example rule
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Dec 29, 2023
1 parent 3505594 commit 1b8aed8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ rule planet_express_vip_impersonation {
description = "Impersonation of key employees of Planet Express"
strings:
/*
/(Hubert|Hugh|Prof\\.?(essor)?) ((Hubert|Hugh) )?Farnsworth/
/(Hubert|Hugh|Prof\.?(essor)?) ((Hubert|Hugh) )?Farnsworth/
Hubert Farnsworth
Hugh Farnsworth
Expand All @@ -371,7 +371,7 @@ rule planet_express_vip_impersonation {
Prof. Hugh Farnsworth
Prof Hugh Farnsworth
/Phil(ip)? (J\\.? )?Fry/
/Phil(ip)? (J\.? )?Fry/
Philip Fry
Philip J. Fry
Expand All @@ -381,11 +381,11 @@ rule planet_express_vip_impersonation {
Phil J Fry
*/
$external = "[EXT]" ascii wide nocase // External email warning
$vip_ceo = /(Hubert|Hugh|Prof\\.?(essor)?) ((Hubert|Hugh) )?Farnsworth/ ascii wide nocase
$vip_ceo = /(Hubert|Hugh|Prof\.?(essor)?) ((Hubert|Hugh) )?Farnsworth/ ascii wide nocase
$vip_cfo = "Hermes Conrad" ascii wide nocase
$vip_cto = "Turanga Leela" ascii wide nocase
$vip_admin = "Amy Wong" ascii wide nocase
$vip_cdo = /Phil(ip)? (J\\.? )?Fry/ ascii wide nocase
$vip_cdo = /Phil(ip)? (J\.? )?Fry/ ascii wide nocase
$except_slug = "Brain Slug Fundraiser" ascii wide
condition:
$external and any of ($vip_*) and not any of ($except_*)
Expand Down

0 comments on commit 1b8aed8

Please # to comment.