#!/usr/local/bin/perl # # header.cgi # # Output standard CNS Security webpage headers (call using SSI include # directive in shtml file) # use warnings; use strict; use lib ('lib'); use CGI qw/:standard/; use SecHdr; print header; # HTTP headers (even though SSI # include, Apache will expect this) #SecHdr::header('printpage.js'); # Security headers SecHdr::header(); # Security headers

IT Security Literature

The following links are to literature maintained and distributed by UF's Computing and Networking Services. This material is used as part of the UF IT Security Team's awareness program. Please feel free to download, use and distribute materials as necessary. Unless noted otherwise, work is attributed to CNS.
Please check this site regularly for updated material

Safe Computing

The files below are PDF files, please click here if you do not have Adobe Reader.

Identity Theft

The following is material used by Brenda Williams from the IFAS Extension Office.
Contact information is: Phone:352.955.2402 or Email: alachua@mail.ifas.ufl.edu

Resources and Links

#!/usr/local/bin/perl # # footer.cgi # # Output standard CNS Security webpage footers (call using SSI include # directive in shtml file) # use warnings; use strict; use lib ('lib'); use CGI qw/:standard/; use SecHdr; print header; # HTTP headers (even though SSI # include, Apache will expect this) SecHdr::footer; # Security footers This file last modified Wednesday, 31-May-2006 15:43:07 EDT