You're welcome; glad we could help.
What is this "hosts" file? Any idea how this site got on it?
Here's an explanation I posted in answer to a similar question an earlier thread:
The entries in the "hosts" file are mappings of host names/URLs to their respective IP addresses. This is essentially like having a small DNS server on your own computer, in that when you type a URL into your browser (or click on a link to a URL on a web page), Windows will look in the hosts file to see if the URL you typed/clicked has a matching IP address there. If so, Windows will direct your browser to that IP address; if not, Windows will then look to your DNS servers to match the URL with an actual IP address. (The use of hosts files was how hostname-to-IP address mapping/resolution was done before DNS was invented.)
The problem with this method is that:
A) By default, Windows will consult the local hosts file
before consulting any DNS servers on your network or on the Internet.
B) There is no error checking at all concerning validity of the mappings in your hosts file. You (or someone else) can put any hostname-to-IP mapping entry you want into the hosts file; when your browser encounters that hostname, it will automatically ty to go to the associated IP address listed in hosts.
Just for grins, you can test this yourself.
1. Put the following entry at the end of your hosts file and save the file:
64.233.167.99
www.spooge.com
2. Open a web browser and type this in the location/address box:
http://www.spooge.com
If your browser took you to Google, congratulations- you've just demonstrated what a huge security hole the hosts file presents. :mrgreen:
*Setting the "read only" attribute on the hosts file can keep viruses, hijackers, etc. from making unwanted changes to the file.