PDA

View Full Version : HELP: 58.49.171.46 [05/Feb/2008:09:31:35] "CONNECT 211.150.96.25:25 HTTP/1.1" 405


cjtjamandra
February 5th, 2008, 03:30 AM
I've seen this log on my apache server:

58.49.171.46 - - [05/Feb/2008:09:31:35 +0800] "CONNECT 211.150.96.25:25 HTTP/1.1" 405 298 "-" "-"


can someone explain me what is this... thx...

nemilar
February 5th, 2008, 04:04 AM
Basically:

You got a connection from IP address 58.49.171.46 on Feb 5 at 9:31:35.

They asked the server to use method CONNECT with an IP address of 211.150.96.25:25

http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html says that CONNECT is for use with proxy servers that are able to dynamically act as SSH tunnels.

The "405" is the response given by your server:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

The response is that the CONNECT method is not allowed (so this person was turned away).

cjtjamandra
February 5th, 2008, 04:19 AM
Thx for the reply and clarification.

So meaning someone is trying to use my server to be a proxy server?

Do you have any idea what's the intention of this person?