HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

aa-unconfined — List processes with open TCP/UDP ports that do not have AppArmor profiles loaded. More information:

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandaa-unconfinedtcpcliopenwithlistprocesses
linux

Problem

How to use the aa-unconfined command: List processes with open TCP/UDP ports that do not have AppArmor profiles loaded. More information: <https://gitlab.com/apparmor/apparmor/-/wikis/manpage_aa-unconfined.8>.

Solution

aa-unconfined — List processes with open TCP/UDP ports that do not have AppArmor profiles loaded. More information: <https://gitlab.com/apparmor/apparmor/-/wikis/manpage_aa-unconfined.8>.

List unconfined processes using the ss command (default):
sudo aa-unconfined


Use netstat instead of ss to detect open network sockets:
sudo aa-unconfined --with-netstat


Show all processes from /proc with TCP/UDP ports and no AppArmor profiles (more detailed):
sudo aa-unconfined --paranoid


Display help:
aa-unconfined {{[-h|--help]}}

Code Snippets

List unconfined processes using the `ss` command (default)

sudo aa-unconfined

Use `netstat` instead of `ss` to detect open network sockets

sudo aa-unconfined --with-netstat

Show all processes from /proc with TCP/UDP ports and no AppArmor profiles (more detailed)

sudo aa-unconfined --paranoid

Display help

aa-unconfined {{[-h|--help]}}

Context

tldr-pages: linux/aa-unconfined

Revisions (0)

No revisions yet.