matchpathcon, secon: add page (#12841)

* matchpathcon: add page

* secon: add page

* Explicitly state "absolute path"

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
pull/28/head
cyqsimon 2024-05-27 20:00:22 +08:00 committed by GitHub
parent c8fcd5f52b
commit 2f3a08f8c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# matchpathcon
> Lookup the persistent SELinux security context setting of a path.
> See also: `semanage-fcontext`, `secon`, `chcon`, `restorecon`.
> More information: <https://manned.org/man/matchpathcon.8>.
- Lookup the persistent security context setting of an absolute path:
`matchpathcon {{/path/to/file}}`
- Restrict lookup to settings on a specific file type:
`matchpathcon -m {{file|dir|pipe|chr_file|blk_file|lnk_file|sock_file}} {{/path/to/file}}`
- [V]erify that the persistent and current security context of a path agree:
`matchpathcon -V {{/path/to/file}}`

25
pages/linux/secon.md Normal file
View File

@ -0,0 +1,25 @@
# secon
> Get the SELinux security context of a file, pid, current execution context, or a context specification.
> See also: `semanage`, `runcon`, `chcon`.
> More information: <https://manned.org/man/secon>.
- Get the security context of the current execution context:
`secon`
- Get the current security context of a process:
`secon --pid {{1}}`
- Get the current security context of a file, resolving all intermediate symlinks:
`secon --file {{path/to/file_or_directory}}`
- Get the current security context of a symlink itself (i.e. do not resolve):
`secon --link {{path/to/symlink}}`
- Parse and explain a context specification:
`secon {{system_u:system_r:container_t:s0:c899,c900}}`