Lesson 4: Linking Tags
(Linking to Local Drives)

Be aware that the "file" protocol has falsely scared users into thinking their machines are vulnerable to outside attacks. The "file" protocol is completely safe, runs only locally, and does not send information across the Internet.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Security Sham</title>
</head>
<body bgcolor="#bdbdbd" text="black" link="blue" vlink="purple">
<br />
<b>
<center>
<h2>Security Sham</h2>
Beware, I can access your

<a href="file://c:/bootlog.txt">System Files</a>
</center>
</b>
</body>
</html>