Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-09 00:19:00 +00:00
parent 52f5647220
commit d4e4abca39
60 changed files with 723 additions and 65 deletions

27
tldr/linux/sealert Normal file
View File

@@ -0,0 +1,27 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# sealert
> Analyze and explain SELinux AVC denial messages.
> Part of the `setroubleshoot-server` package.
> See also: `audit2why`, `ausearch`, `audit2allow`.
> More information: <https://manned.org/sealert>.
- Analyze all recent SELinux denials:
`sudo sealert {{[-a|--analyze]}} {{/var/log/audit/audit.log}}`
- Analyze a specific alert ID from system logs:
`sudo sealert {{[-l|--lookupid]}} {{alert_id}}`
- Display a summary of recent SELinux alerts:
`sudo sealert {{[-b|--browser]}}`
- Monitor audit log in real-time for new alerts:
`sudo tail {{[-f|--follow]}} {{/var/log/audit/audit.log}} | sealert {{[-l|--lookupid]}} -`