SuperLinux Encyclopedia - Security


This page mixes most "network security" with other security topics. This seems unavoidable, but shares this undesirable feature of most security discussions: One cannot easily ignore discussion of network security topics when using a non-networked computer (one with only port-driven terminals).

Also see "ssh" in Shells.
Also see some related topics in IP - Internet Protocol.
Also see "firewalls" in Networking.

Introductory stuff:

General Subject:

Security, specific topics:


Some security tips:

How to make a more secure temporary directory from a shell script, by Jim Dennis:

TMPD=/tmp/$0$$$(date +%s)
## get a (hopefully unique) name
## use any reasonable method for this.
OMASK=$(umask)
umask 077 || exit 1
mkdir $TMPD || exit 1
trap 'rm -fr $TMPD; exit' 0
umask $OMASK

Last Modified 19-Apr-1999

End of page.