compilers:restrict_access_to_compilers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
compilers:restrict_access_to_compilers [2017/01/30 10:26] – peter | compilers:restrict_access_to_compilers [2019/11/26 22:01] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Compilers - Restrict Access to Compilers ====== | ||
- | |||
- | Add a compiler group | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo / | ||
- | </ | ||
- | |||
- | …and issue the following commands: | ||
- | |||
- | <code bash> | ||
- | sudo chgrp compiler *cc* | ||
- | sudo chgrp compiler *++* | ||
- | sudo chgrp compiler ld | ||
- | sudo chgrp compiler as | ||
- | </ | ||
- | |||
- | …and set permissions: | ||
- | |||
- | <code bash> | ||
- | sudo chmod 750 *cc* | ||
- | sudo chmod 750 *++* | ||
- | sudo chmod 750 ld | ||
- | sudo chmod 750 as | ||
- | </ | ||
- | |||
- | |||
- | ===== Redhat ===== | ||
- | |||
- | Show files provided by the gcc package: | ||
- | |||
- | <code bash> | ||
- | rpm -q --filesbypkg gcc | grep ' | ||
- | </ | ||
- | |||
- | returns | ||
- | |||
- | < | ||
- | gcc / | ||
- | gcc / | ||
- | gcc / | ||
- | gcc / | ||
- | gcc / | ||
- | ... | ||
- | </ | ||
- | |||
- | The **grep** selects files contained in the binary directories, | ||
- | |||
- | Create a group that will access the compiler-binaries: | ||
- | |||
- | <code bash> | ||
- | groupadd compilers | ||
- | </ | ||
- | |||
- | Change ownership of the binary you want to restrict: | ||
- | |||
- | <code bash> | ||
- | chown root: | ||
- | </ | ||
- | |||
- | Change permissions to be executable only by root and members of the compilers group: | ||
- | |||
- | <code bash> | ||
- | chmod 0750 / | ||
- | </ | ||
compilers/restrict_access_to_compilers.1485772009.txt.gz · Last modified: 2020/07/15 09:30 (external edit)