vote up 0 vote down star

Code:

string path = @"C:\Windows\System32\drivers\etc\hosts";
StreamWriter sw = new StreamWriter(path, true);
string sitetoblock = "\r\n127.0.0.1 http://" + textBox1.Text +
    " 127.0.0.1 http://www." + textBox1.Text;

sw.Write(sitetoblock);
sw.Close();
MessageBox.Show(textBox1.Text + " blocked");

this is a code to block website,....but it is not working... sometime it works.. how can i block website ?

tell me what is right way to block website.

flag

19% accept rate
Be advised than some antivirus software will red flag this sort of behavior. Many viruses and spyware applications do this kind of thing, say to make microsoft.com point to something else. – BobbyShaftoe May 18 at 7:56

4 Answers

vote up 4 vote down

First, this is not an effective method to block websites, but if you really want to do it this way, then look up the format of the hosts file.

If you want to block a website by essentially hijacking the DNS lookup, you need to redirect the hostname only.

The hosts file you are generating looks something like this:

127.0.0.1 http://website/file

What you want to see in the file is this:

127.0.0.1 website

link|flag
vote up 0 vote down

The 'hosts' file maps IP addresses to hostnames, so it doesn't need the protocol bits and pieces.

You should be aiming to write "127.0.0.1 hostname" to the file, e.g. to block 'badsite.com' you'd add:

127.0.0.1 badsite.com
127.0.0.1 www.badsite.com

There are probably better ways to block a site though ;-)

link|flag
127.0.0.1 badsite.com 127.0.0.1 www.badsite.com but it is not working... – ankush May 18 at 8:06
Maybe a caching issue - close and re-open your browser. Or open a new command line and try 'ping www.badsite.com' and check what IP address it resolves to. – Matt May 18 at 8:31
if someone type google.com but it is not block.. in browser google opens with google.co.in link – ankush May 18 at 8:58
vote up 0 vote down

Many Spyware/Adware programs block access to the hosts file. So there is a big chance you may fail doing it this way. Imho it would be better to block the URL in the firewall

link|flag
okkkk...tell me how to use imho file using c# – ankush May 18 at 8:01
vote up 6 vote down

First. Drop out http://.

Second. Don't do that.

Third. Don't do anything before you learn how and why it does work.

link|flag
I think this is better than my answer :-) – Jesse Weigert May 18 at 8:04
The most bizzarest ever support problems come from messing with hosts file. This, and automatic keyboard layout switchers. – alamar May 18 at 8:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.