Skip to content

Commit

Permalink
Merge pull request #264 from tclahr/update_kernel_tainted_state
Browse files Browse the repository at this point in the history
artif: update kernel_tainted_state.yaml artifact
  • Loading branch information
tclahr authored Aug 2, 2024
2 parents 04d74de + 4b8b6f4 commit 87ae5c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
- live_response/process/strings_running_processes.yaml: Added support for collecting strings even when the strings command is unavailable. In such cases, the built-in astrings command will be used instead [all].
- live_response/system/hidden_directories.yaml: Updated to remove max_depth limit.
- live_response/system/hidden_files.yaml: Updated to remove max_depth limit.
- live_response/system/kernel_tainted_state.yaml: Added collection of dmesg messages showing modules tainting the kernel [linux].
- live_response/system/lastcomm.yaml: Added collection of the last commands executed in a reverse order based on the default and historic accounting file [freebsd, netbsd, openbsd] [Herbert-Karl](https://github.com/Herbert-Karl)).
- live_response/system/sgid.yaml: Updated to remove max_depth limit.
- live_response/system/socket_files.yaml: Updated to remove max_depth limit.
Expand Down
8 changes: 7 additions & 1 deletion artifacts/live_response/system/kernel_tainted_state.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.0
version: 3.0
output_directory: /live_response/system
artifacts:
-
Expand All @@ -7,6 +7,12 @@ artifacts:
collector: command
command: cat /proc/sys/kernel/tainted
output_file: cat_proc_sys_kernel_tainted.txt
-
description: Display dmesg messages related to loaded modules tainting the kernel.
supported_os: [linux]
collector: command
command: dmesg | grep -i taint
output_file: modules_tainting_the_kernel_dmesg.txt
-
description: Display what modules are marked at tainting the kernel.
supported_os: [linux]
Expand Down

0 comments on commit 87ae5c2

Please sign in to comment.