-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
416 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,3 +49,4 @@ Suricata Rules | |
differences-from-snort | ||
multi-buffer-matching | ||
tag | ||
vlan-keywords |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
VLAN Keywords | ||
============= | ||
|
||
.. role:: example-rule-action | ||
.. role:: example-rule-header | ||
.. role:: example-rule-options | ||
.. role:: example-rule-emphasis | ||
|
||
vlan.id | ||
------- | ||
|
||
Suricata has a ``vlan.id`` keyword that can be used in signatures to identify | ||
and filter network packets based on Virtual Local Area Network IDs. By default, | ||
it matches all layers if a packet contains multiple VLAN layers. However, if a | ||
specific layer is defined, it will only match that layer. | ||
|
||
VLAN id values must be between 1 and 4094. The maximum number of layers | ||
supported per packet is 3, and the vlan.id keyword supports negative index | ||
values to access layers from back to front. | ||
|
||
This keyword also supports ``all`` as an argument for ``layer``, | ||
which matches only if all VLAN layers match. | ||
|
||
|
||
vlan.id uses :ref:`unsigned 16-bit integer <rules-integer-keywords>`. | ||
|
||
Syntax:: | ||
|
||
vlan.id: [op]id[,layer]; | ||
|
||
The id can be matched exactly, or compared using the ``op`` setting:: | ||
|
||
vlan.id:300 # exactly 300 | ||
vlan.id:<300,0 # smaller than 300 at layer 0 | ||
vlan.id:>=200,1 # greater or equal than 200 at layer 1 | ||
|
||
Example of a signature that would alert if any of the VLAN IDs is equal to 300: | ||
|
||
.. container:: example-rule | ||
|
||
alert ip any any -> any any (msg:"Vlan ID is equal to 300"; :example-rule-emphasis:`vlan.id:300;` sid:1;) | ||
|
||
Example of a signature that would alert if the VLAN ID at layer 1 is equal to 300: | ||
|
||
.. container:: example-rule | ||
|
||
alert ip any any -> any any (msg:"Vlan ID is equal to 300 at layer 1"; :example-rule-emphasis:`vlan.id:300,1;` sid:1;) | ||
|
||
Example of a signature that would alert if the VLAN ID at the last layer is equal to 400: | ||
|
||
.. container:: example-rule | ||
|
||
alert ip any any -> any any (msg:"Vlan ID is equal to 400 at the last layer"; :example-rule-emphasis:`vlan.id:400,-1;` sid:1;) | ||
|
||
Example of a signature that would alert only if all the VLAN IDs are greater than 100: | ||
|
||
.. container:: example-rule | ||
|
||
alert ip any any -> any any (msg:"All Vlan IDs are greater than 100"; :example-rule-emphasis:`vlan.id:>100,all;` sid:1;) | ||
|
||
It is also possible to use the vlan.id content as a fast_pattern by using the :example-rule-options:`prefilter` keyword, as shown in the following example. | ||
|
||
.. container:: example-rule | ||
|
||
alert ip any any -> any any (msg:"Vlan ID is equal to 200 at layer 1"; :example-rule-emphasis:`vlan.id:200,1; prefilter;` sid:1;) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
use super::uint::{detect_parse_uint, DetectUintData}; | ||
use std::ffi::CStr; | ||
use std::str::FromStr; | ||
|
||
#[no_mangle] | ||
pub static ANY_VLAN_LAYER: i8 = i8::MIN; | ||
|
||
#[no_mangle] | ||
pub static ALL_VLAN_LAYERS: i8 = i8::MAX; | ||
|
||
#[repr(C)] | ||
#[derive(Debug, PartialEq)] | ||
pub struct DetectVlanIdData { | ||
pub du16: DetectUintData<u16>, | ||
pub layer: i8, | ||
} | ||
|
||
pub fn detect_parse_vlan_id(s: &str) -> Option<DetectVlanIdData> { | ||
let parts: Vec<&str> = s.split(',').collect(); | ||
let du16 = detect_parse_uint(parts[0]); | ||
if du16.is_err() { | ||
return None; | ||
} | ||
let du16 = du16.unwrap().1; | ||
if parts.len() > 2 { | ||
return None; | ||
} | ||
if du16.arg1 >= 0xFFF { | ||
// vlan id is encoded on 12 bits | ||
return None; | ||
} | ||
let layer = if parts.len() == 2 { | ||
if parts[1] == "all" { | ||
Ok(i8::MAX) | ||
} else { | ||
i8::from_str(parts[1]) | ||
} | ||
} else { | ||
Ok(i8::MIN) | ||
}; | ||
if layer.is_err() { | ||
return None; | ||
} | ||
let layer = layer.unwrap(); | ||
if parts.len() == 2 && layer != i8::MAX && !(-3..=2).contains(&layer) { | ||
return None; | ||
} | ||
return Some(DetectVlanIdData { du16, layer }); | ||
} | ||
|
||
#[no_mangle] | ||
pub unsafe extern "C" fn rs_detect_vlan_id_parse( | ||
ustr: *const std::os::raw::c_char, | ||
) -> *mut DetectVlanIdData { | ||
let ft_name: &CStr = CStr::from_ptr(ustr); //unsafe | ||
if let Ok(s) = ft_name.to_str() { | ||
if let Some(ctx) = detect_parse_vlan_id(s) { | ||
let boxed = Box::new(ctx); | ||
return Box::into_raw(boxed) as *mut _; | ||
} | ||
} | ||
return std::ptr::null_mut(); | ||
} | ||
|
||
#[no_mangle] | ||
pub unsafe extern "C" fn rs_detect_vlan_id_free(ctx: &mut DetectVlanIdData) { | ||
// Just unbox... | ||
std::mem::drop(Box::from_raw(ctx)); | ||
} | ||
|
||
#[cfg(test)] | ||
mod test { | ||
use super::*; | ||
use crate::detect::uint::DetectUintMode; | ||
|
||
#[test] | ||
fn test_detect_parse_vlan_id() { | ||
assert_eq!( | ||
detect_parse_vlan_id("300").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 300, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeEqual, | ||
}, | ||
layer: i8::MIN | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id("200,1").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeEqual, | ||
}, | ||
layer: 1 | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id("200,-1").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeEqual, | ||
}, | ||
layer: -1 | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id("!200,2").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeNe, | ||
}, | ||
layer: 2 | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id(">200,2").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeGt, | ||
}, | ||
layer: 2 | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id("200-300,0").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 300, | ||
mode: DetectUintMode::DetectUintModeRange, | ||
}, | ||
layer: 0 | ||
} | ||
); | ||
assert_eq!( | ||
detect_parse_vlan_id("0xC8,2").unwrap(), | ||
DetectVlanIdData { | ||
du16: DetectUintData { | ||
arg1: 200, | ||
arg2: 0, | ||
mode: DetectUintMode::DetectUintModeEqual, | ||
}, | ||
layer: 2 | ||
} | ||
); | ||
assert!(detect_parse_vlan_id("200abc").is_none()); | ||
assert!(detect_parse_vlan_id("4096").is_none()); | ||
assert!(detect_parse_vlan_id("600,abc").is_none()); | ||
assert!(detect_parse_vlan_id("600,100").is_none()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.