ACL generation utilities?
Posted: Fri Sep 26, 2003 5:20 am
For months I have been researching various parts of grsecurity but only over the past week have I gotten the chance to actually implement and deploy it (still haven't done a full deployment, still implementing/learning). I've come to the conclusion that, while difficult, it is not impossible to learn. Probably the biggest issue I've contended with so far regarding ACLs is the fact that the learning method of:
/usr/bin/program l {
}
is great, but for doing many programs at once seems to be the heart of things... some simple shell scripting helps:
yada:~# ps axf | awk '{print $5}' | grep bin | uniq
but it doesn't seem to crack the shell (so to speak). The only thing I've managed to find thus far is a perl script from a system called CylantSecure which utilizes grsecurity. The link to the script is here. It seems to actually work quite nicely, but I wonder if it could be expanded...
/usr/bin/program l {
}
is great, but for doing many programs at once seems to be the heart of things... some simple shell scripting helps:
yada:~# ps axf | awk '{print $5}' | grep bin | uniq
but it doesn't seem to crack the shell (so to speak). The only thing I've managed to find thus far is a perl script from a system called CylantSecure which utilizes grsecurity. The link to the script is here. It seems to actually work quite nicely, but I wonder if it could be expanded...