473,415 Members | 1,545 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,415 software developers and data experts.

How to block IP address in a guestbook?

I use a free database-driven ASP guestbook. I want to add a IP address
blocking filter to it( just to block one particular guest). What is the
easiest way to do so? Thanks.

pcchong
Jul 19 '05 #1
14 26431
PW

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP address
blocking filter to it( just to block one particular guest). What is the
easiest way to do so? Thanks.

Put this at the beginning of the first ASP (change "111.222.333" to your
enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>
Jul 19 '05 #2
"pcchong" wrote in message news:eu*************@TK2MSFTNGP12.phx.gbl...
: I use a free database-driven ASP guestbook. I want to add a IP address
: blocking filter to it( just to block one particular guest). What is the
: easiest way to do so? Thanks.

I don't know where you're coming from [IP address] so you would have to
modify this but directions are included. I'm redirecting everyone as an
example. Modify the appropriate lines and then put this at the top of your
page where you want to block someone. However, if their IP is dynamic, then
you'd need to modify it to block IP ranges.

<%@ Language=VBScript %>
<%
Option Explicit
Response.Buffer = True
dim outtahair, visitor, strURL
strURL = "http://www.fbi.gov/mostwant.htm" ' modify this line for target
redirect host
outtahair = Request.ServerVariables("REMOTE_HOST")
' Delete the line above and uncomment the one below replacing x.x.x.x with
IP to redirect
' outtahair = "x.x.x.x"
visitor = Request.ServerVariables("REMOTE_HOST")
if visitor = outtahair then
Response.Clear()
Response.Redirect(strURL)
end if
%>

http://kiddanger.com/lab/remotehostredirect.asp

HTH...

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 19 '05 #3
On Wed, 19 May 2004 19:29:20 +0800, "PW" <pw*@NObigSPAMpond.net.au>
wrote:

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP address
blocking filter to it( just to block one particular guest). What is the
easiest way to do so? Thanks.

Put this at the beginning of the first ASP (change "111.222.333" to your
enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>


Better would be to check the address and if it's not allowed, simply
not update the guestbook. Let them go through the process, thank them
for their entry, just don't record it. :)

Jeff
Jul 19 '05 #4
Thanks. It works for specific IP, but what if it is a IP range, say
210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
pcchong

"PW" <pw*@NObigSPAMpond.net.au> wrote in message
news:uR**************@TK2MSFTNGP12.phx.gbl...

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP address
blocking filter to it( just to block one particular guest). What is the
easiest way to do so? Thanks.

Put this at the beginning of the first ASP (change "111.222.333" to your
enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>

Jul 19 '05 #5
Use Instr(), or a Regular Expression.

Instr():

dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")

if Instr(sIP, "111.222.333") > 0 then

For more complicated patterns, you should use a Regular Expression.

Bob Barrows

pcchong wrote:
Thanks. It works for specific IP, but what if it is a IP range, say
210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
pcchong

"PW" <pw*@NObigSPAMpond.net.au> wrote in message
news:uR**************@TK2MSFTNGP12.phx.gbl...

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP
address blocking filter to it( just to block one particular guest).
What is the easiest way to do so? Thanks.

Put this at the beginning of the first ASP (change "111.222.333" to
your enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 19 '05 #6
Thanks. This is a better way.
pcchong

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uW*************@TK2MSFTNGP12.phx.gbl...
Use Instr(), or a Regular Expression.

Instr():

dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")

if Instr(sIP, "111.222.333") > 0 then

For more complicated patterns, you should use a Regular Expression.

Bob Barrows

pcchong wrote:
Thanks. It works for specific IP, but what if it is a IP range, say
210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
pcchong

"PW" <pw*@NObigSPAMpond.net.au> wrote in message
news:uR**************@TK2MSFTNGP12.phx.gbl...

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP
address blocking filter to it( just to block one particular guest).
What is the easiest way to do so? Thanks.
Put this at the beginning of the first ASP (change "111.222.333" to
your enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 19 '05 #7
My joy is shortlived. This guest still managed to enter with the same IP
(within the IP range that the IP blocking filter set). How can he get
through? Thanks.

pcchong

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uW*************@TK2MSFTNGP12.phx.gbl...
Use Instr(), or a Regular Expression.

Instr():

dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")

if Instr(sIP, "111.222.333") > 0 then

For more complicated patterns, you should use a Regular Expression.

Bob Barrows

pcchong wrote:
Thanks. It works for specific IP, but what if it is a IP range, say
210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
pcchong

"PW" <pw*@NObigSPAMpond.net.au> wrote in message
news:uR**************@TK2MSFTNGP12.phx.gbl...

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:eu*************@TK2MSFTNGP12.phx.gbl...
I use a free database-driven ASP guestbook. I want to add a IP
address blocking filter to it( just to block one particular guest).
What is the easiest way to do so? Thanks.
Put this at the beginning of the first ASP (change "111.222.333" to
your enemys IP address) ...

<%
if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
Response.End
end if
%>


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 19 '05 #8
On Fri, 21 May 2004 21:53:32 +0800, "pcchong" <pc*****@singnet.com.sg>
wrote:
My joy is shortlived. This guest still managed to enter with the same IP
(within the IP range that the IP blocking filter set). How can he get
through? Thanks.
Good question. But what did you do with Bob's code? Are you sure
you're blocking that IP and not just checking to see what it is?

Jeff
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uW*************@TK2MSFTNGP12.phx.gbl...
Use Instr(), or a Regular Expression.

Instr():

dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")

if Instr(sIP, "111.222.333") > 0 then

For more complicated patterns, you should use a Regular Expression.

Bob Barrows

pcchong wrote:
> Thanks. It works for specific IP, but what if it is a IP range, say
> 210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
>
>
> pcchong
>
> "PW" <pw*@NObigSPAMpond.net.au> wrote in message
> news:uR**************@TK2MSFTNGP12.phx.gbl...
>>
>> "pcchong" <pc*****@singnet.com.sg> wrote in message
>> news:eu*************@TK2MSFTNGP12.phx.gbl...
>>> I use a free database-driven ASP guestbook. I want to add a IP
>>> address blocking filter to it( just to block one particular guest).
>>> What is the easiest way to do so? Thanks.
>>
>>
>> Put this at the beginning of the first ASP (change "111.222.333" to
>> your enemys IP address) ...
>>
>> <%
>> if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
>> Response.End
>> end if
>> %>


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Jul 19 '05 #9
I place this in the beginning of the first asp:

<%
dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")
if Instr(sIP, "###.###.###") > 0 then
Response.End
end if
%>

Anything wrong? Please advise. Thanks.

pcchong

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40***************@msnews.microsoft.com...
On Fri, 21 May 2004 21:53:32 +0800, "pcchong" <pc*****@singnet.com.sg>
wrote:
My joy is shortlived. This guest still managed to enter with the same IP
(within the IP range that the IP blocking filter set). How can he get
through? Thanks.


Good question. But what did you do with Bob's code? Are you sure
you're blocking that IP and not just checking to see what it is?

Jeff
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uW*************@TK2MSFTNGP12.phx.gbl...
Use Instr(), or a Regular Expression.

Instr():

dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")

if Instr(sIP, "111.222.333") > 0 then

For more complicated patterns, you should use a Regular Expression.

Bob Barrows

pcchong wrote:
> Thanks. It works for specific IP, but what if it is a IP range, say
> 210.187.176.# to 210.187.176.### . How do I change the line? Thanks.
>
>
> pcchong
>
> "PW" <pw*@NObigSPAMpond.net.au> wrote in message
> news:uR**************@TK2MSFTNGP12.phx.gbl...
>>
>> "pcchong" <pc*****@singnet.com.sg> wrote in message
>> news:eu*************@TK2MSFTNGP12.phx.gbl...
>>> I use a free database-driven ASP guestbook. I want to add a IP
>>> address blocking filter to it( just to block one particular guest).
>>> What is the easiest way to do so? Thanks.
>>
>>
>> Put this at the beginning of the first ASP (change "111.222.333" to
>> your enemys IP address) ...
>>
>> <%
>> if Request.ServerVariables("REMOTE_ADDR") = "111.222.333" then
>> Response.End
>> end if
>> %>

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 19 '05 #10
Are you sure the offender has an ip that should be blocked by this
statement? How are you verifying this?

Are you sure Request.ServerVariables("REMOTE_ADDR") contains that ip
address? How are you verifying this?

Bob Barrows
pcchong wrote:
I place this in the beginning of the first asp:

<%
dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")
if Instr(sIP, "###.###.###") > 0 then
Response.End
end if
%>

Anything wrong? Please advise. Thanks.

pcchong

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40***************@msnews.microsoft.com...
On Fri, 21 May 2004 21:53:32 +0800, "pcchong"
<pc*****@singnet.com.sg> wrote:
My joy is shortlived. This guest still managed to enter with the
same IP (within the IP range that the IP blocking filter set). How
can he get through? Thanks.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #11
I can see his IP from the guestbook. I tested this filter using my IP
address and it worked, that is why I am so puzzled. I would appreciate it if
you could suggest how I can verify the IP. Many thanks again.

pcchong

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:eZ**************@tk2msftngp13.phx.gbl...
Are you sure the offender has an ip that should be blocked by this
statement? How are you verifying this?

Are you sure Request.ServerVariables("REMOTE_ADDR") contains that ip
address? How are you verifying this?

Bob Barrows
pcchong wrote:
I place this in the beginning of the first asp:

<%
dim sIP
sIP = Request.ServerVariables("REMOTE_ADDR")
if Instr(sIP, "###.###.###") > 0 then
Response.End
end if
%>

Anything wrong? Please advise. Thanks.

pcchong

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40***************@msnews.microsoft.com...
On Fri, 21 May 2004 21:53:32 +0800, "pcchong"
<pc*****@singnet.com.sg> wrote:

My joy is shortlived. This guest still managed to enter with the
same IP (within the IP range that the IP blocking filter set). How
can he get through? Thanks.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #12
PW

"pcchong" <pc*****@singnet.com.sg> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I can see his IP from the guestbook. I tested this filter using my IP
address and it worked, that is why I am so puzzled. I would appreciate it if you could suggest how I can verify the IP. Many thanks again.

Perhaps you enemy is bypassing the initial (menu?) ASP and going straight to
the guestbook ASP. Move the new code from your initial (menu) ASP over to
the page where you insert the guestbook information into your database.
That way, you enemy will be able to type in a post, but it won't get written
to your database, and therefore no one will ever see it.

HTH,
PW

Jul 19 '05 #13
PW wrote on 23 mei 2004 in microsoft.public.inetserver.asp.general:
"pcchong" <pc*****@singnet.com.sg> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I can see his IP from the guestbook. I tested this filter using my IP
address and it worked, that is why I am so puzzled. I would
appreciate it

if
you could suggest how I can verify the IP. Many thanks again.

Perhaps you enemy is bypassing the initial (menu?) ASP and going
straight to the guestbook ASP. Move the new code from your initial
(menu) ASP over to the page where you insert the guestbook information
into your database. That way, you enemy will be able to type in a
post, but it won't get written to your database, and therefore no one
will ever see it.


why not block both pages?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #14
Yes, you are right. Instead of just put the filter in the index(first) file,
I should put it also in the other input files. Problem solved. Many many
thanks to everyone.

pcchong

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
PW wrote on 23 mei 2004 in microsoft.public.inetserver.asp.general:
"pcchong" <pc*****@singnet.com.sg> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I can see his IP from the guestbook. I tested this filter using my IP
address and it worked, that is why I am so puzzled. I would
appreciate it

if
you could suggest how I can verify the IP. Many thanks again.

Perhaps you enemy is bypassing the initial (menu?) ASP and going
straight to the guestbook ASP. Move the new code from your initial
(menu) ASP over to the page where you insert the guestbook information
into your database. That way, you enemy will be able to type in a
post, but it won't get written to your database, and therefore no one
will ever see it.


why not block both pages?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Dariusz | last post by:
I am a beginner in PHP and MySQL, and am working through a book and various online tutorials on PHP and MySQL and now stuck - installed everything on "localhost" and it all works fine. My question...
4
by: knoak | last post by:
If a filter with bad words etc. isn't what you mean, you could put an extra field in the DB, called 'OK' or something like that. When someone enters a message in the GB, the initial value of...
1
by: Rune Runnestř | last post by:
Hi, I have made a small program that doesn't work quite the way it should. It is a guestbook for the web, where visitors can write back their greetings. The program consists of 3 files: -...
6
by: DigitalRick | last post by:
I have been running CDONTS in my ASPpages to send emails to me sent from my guestbook. It had been working fine untill I upgraded to Server 2003 (I am also running Exchange 2003) all locally. I...
1
by: Viken Karaguesian | last post by:
Hello everyone, Just wanting some advice. I'd like to start removing the Microsoft-generated guestbook (a feature of FrontPage) on my websites but I'm not sure if it can be done just using HTML....
4
imarkdesigns
by: imarkdesigns | last post by:
hello guys, im in need of something... something that can validate individual entry to my guestbook... which it can validate the entry pass to my form when someone signed on it.... my custom...
2
by: martin lanny | last post by:
Simple network scanner is a part of my dotnet solution. It pings ip addresses in a selected network range and gives me the response time for each computer it finds. Anyhow, I would need to...
4
by: infoseekar | last post by:
HI Guys I am a beginner. I am trying to create a guestbook. I have the code for it and it is in three parts. Part 1 "dp.php" to open database and make connection Part 2 "index.php" which will...
5
Thekid
by: Thekid | last post by:
Hi, I'm using xampplite and I'm trying to make a guestbook and a forms page where you can post to the guestbook with PHP & MySQL. I got the code from a website but it wasn't working so I tinkered...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.