Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rule for device driver discovery #5113

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
title: Detect Device Driver Discovery - Linux
id: 23654e63-1b3d-4330-8303-fb680a3a4ab8
status: test
CheraghiMilad marked this conversation as resolved.
Show resolved Hide resolved
description: Adversaries may attempt to enumerate local device drivers on a victim host.This rule detects the use of commands such as 'lsmod' and 'modinfo' for device driver discovery on Linux systems.
references:
- https://attack.mitre.org/techniques/T1652/
CheraghiMilad marked this conversation as resolved.
Show resolved Hide resolved
author: CheraghiMilad
date: 2024-12-08
tags:
- attack.discovery
- attack.t1652
logsource:
category: process_creation
product: linux
detection:
selection_kmod:
Image|endswith: '/kmod'
CommandLine|contains:
- 'modinfo'
- 'lsmod'
selection_dmesg:
Image|endswith: '/dmesg'
condition: 1 of selection_*
falsepositives:
- Administrative tasks such as legitimate system administration involving device driver modules.
level: medium
Loading