Help with IIS8 IP Address and Domain restrictions

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/71337?pagenum=1
04 November 2025, 10:36

Topic


bobby131313
Help with IIS8 IP Address and Domain restrictions
09 December 2020, 22:47


So, I have this rogue bot from Germany that doesn't identify itself. It spoofs the user agent pretends to be a normal user. Unfortunately it's also clicking ads. The block is always 185.220.*.*

So best i can tell googling, I've added it correctly.....

However as you can see it still gets in (been several days since I added it)...

Any ideas what I might have done wrong?

 

Replies ...


HuwR
11 December 2020, 18:27


This IP is owpned by the torproject

https://stackoverflow.com/questions/9780038/is-it-possible-to-block-tor-users
bobby131313
20 December 2020, 19:56


Thanks Hu.
But how is it still getting in when it's supposed to be blocked? Did I do it wrong?
HuwR
21 December 2020, 08:28


looks ok to me, did you restart IIS after making the change?
bobby131313
21 December 2020, 13:47


No I didn't. I take it that' required?
HuwR
21 December 2020, 17:58


No idea, but worth a try
bobby131313
21 December 2020, 19:35


I checked Event Viewer and there is no history of it ever being restarted. I just did it. We'll see. Thank you.
Carefree
16 February 2021, 21:05


If the IP address block always starts with 185.220, you can stop it in ASP if you wish. In inc_header.asp, just above the line:

if strshowtimer = 1

Add this, they'll get sent back to their own computer every time they connect:

If Left(Request.ServerVariables("Remote_Addr"), 7) = "185.220" Then Response.Redirect "http://127.0.0.1"
© 2000-2021 Snitz™ Communications