Issue creating an selinux policy

Posted by n5xjg@reddit | linuxadmin | View on Reddit | 7 comments

Hi Penguin Admins,

Im trying to create an selinux policy that will block a specific user from executing shell_exec_t (bash, ksh, etc...) for various security reasons - but also to learn selinux.

So Ive googled a bit and found this snippet of code that I modified on my RHEL 8.10 VM but when I try to run checkmodule on it, I get a syntax error about the deny token.

module user_secure_role 1.0;

# Define the new role
role user_secure_r;

# Define the new type
type user_secure_t;

require {
    type shell_exec_t;
}

type_transition user_secure_r init_t:process user_secure_t;
deny user_secure_r shell_exec_t:process { execute };

# checkmodule -M -m -o user_secure_role.mod user_secure_role.te
user_secure_role.te:19:ERROR 'syntax error' at token 'deny' on line 19:
deny user_secure_r shell_exec_t:process { execute };
checkmodule:  error(s) encountered while parsing configuration

I looked all around and even consulted AI and everywhere shows that deny is not a syntax error.

Do I need to install something else on my RHEL system to get the deny function to work?

Thanks in advance for any advice!