Note: Inside the USGS network the hostname www.usgs.com has been re-routed.
Another type of hostname hijacking uses names that are misspellings of popular site names, ex: http://www.nescape.com (no longer used).
(October 12, 1999) House Subcommittee Approves Anti-Cybersquatting Bill (HR 3028) which targets addresses which imitate a trademark or well-known business name, and carries a fine of up to $100,000. This law prohibits both preemptive registration of names and use of "look alike" names of Trademarks. These activities are also prohibited by the World Intellectual Property Organization, though enforcement problems have been reported.
<script language="javascript">
<!--
if (window !=
window.top)
top.location.href = CurrentPage
//-->
</script>
There exists software that scans web pages for email addresses
which are then used by email spammers. It may be worth considering
placing email addresses on your web site in a less recognizable
form: ex: send email for dboldt to
usgs.gov. Another suggestion is to specify addresses
as userid@host,
@ should render as '@' in most
browsers. There is even software to derail such harvesters,
called
Email
poisoners.
Another method of camouflaging e-mail addresses is to use JavaScript, which most WebCrawlers will not execute. Below is a sample JavaScript program which will display the e-mail address dboldt@usgs.gov with a Mailto link:
<script language="JavaScript">
<!--
emailname = "dboldt";
emailserver = "usgs.gov";
document.write("<a href='mailto:"
+ emailname + "@" + emailserver +"'>");
document.write(emailname + "@" + emailserver);
document.write("</a>");
//-->
</script>
<noscript>
dboldt at usgs.gov
</noscript>
These are Trojan programs whose purpose ranges from tracking your Web usage, to redirecting you to specific web sites.
One program that will remove SpyWare programs is AdAware.
This is not an issue for Web developers, but it is something to be aware of as a local Web expert.
On August 8, 2002 a security flaw was discovered in MacroMedia Shockwave and Flash plug-ins for all browsers, which will allow remote hackers to execute programs at will on computer where these plug-ins are installed. Users will need to know to upgrade these plug-ins on their computers or be vulnerable; network firewalls will provide no protection.
slide 53
|
"Mastering a Web Site" online course Created and maintained by Lorna Schmid and David Boldt. http://water.usgs.gov/usgs/training/webmaster/mischief.html Last modified: Thu Sep 9 10:18:14 EDT 2004 |