Hello AOers,
I decided to start a project about linux security.
I dont know much about security
if anyone wants to help me let me know please
This is an open source project located on http://www.sourceforge.net/projects/slacksec/
Thank you
Printable View
Hello AOers,
I decided to start a project about linux security.
I dont know much about security
if anyone wants to help me let me know please
This is an open source project located on http://www.sourceforge.net/projects/slacksec/
Thank you
its always nice to ask people about stuff like this but i really dont know much of the project you are working on, so ur doing slackware security so google whatever info u need for exaple: iptables rules and file permissions as it sais on that site
Shouldn't you start by learning about security before you do a project like this?Quote:
Originally posted here by chrismfz
I decided to start a project about linux security.
I dont know much about security
Hey Chris,
I downloaded your script from the sf page..
I attached it here, so noone will have to look, hope you don't mind.. if you do, PM me I'll remove it..
It's gzipped, to unzip use: gunzip mafsec.sh.gz
I have some issues with it..
first of all.. checking..
startingat the end of the script is realy worthless..Quote:
echo chmod ok
echo chattr ok
echo Network hardering ok
echo Network optimizing ok
echo (some) privacy and security setting ok
echo firewall settings ok
a propper way to give some good feedback isI'd never use chattr +i at the start of the script.. I'd rather do it at the end... (helps if you ever want to change the script to add something to one of those files)Code:echo -n "doing something "
some command 1>&2> /dev/null
if [[ $? == 0 ]]; then
echo "[ok]"
else
echo "[error]"
fi
also an "undo" would be nice..
you could then even make it like a rc.d file (or apachectl)..
secureme [start|stop|restart]
Well that was all for now..
It's a nice start.. nothing too fancy (or new) but it needs a lot of work to be of any use..