#!/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

Data Security for Faculty and Staff

University of Florida employees are required to keep restricted information safe from unauthorized access.

Restricted data is defined as, but not limited to:

Please read the UF IT Data Security Standard for more information on Restricted, Unrestricted and Sensitive classification.

Legislation establishes personal and institutional liability and fines for breach of private data.

Employees working with health related information must also be aware of HIPAA issues. For more information, see the UF Privacy Office.

The UF IT Security Team strongly advises against the transfer and storage of restricted data on personally managed machines.

Below are things you should do to help protect the data you work with.

Three things you should always do...

A lot of restricted information is stored on computers. By doing these three things you significantly decrease your chance of giving an intruder access to your data.

Electronic Security
Physical Security
#!/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 Monday, 24-Jul-2006 12:56:28 EDT