PDA

View Full Version : Loop Redirection?


Da-Idiot
02-23-2005, 02:36 PM
I am a newbie with the li9nux networking. I saw this error in my log

Error [209.17.28.176:3107-0] detect loop redirection.

What does this mean? And is it reason to suspect hacker activity?

Thanx for any info.

Da-Idiot
02-23-2005, 02:38 PM
I notice the port number. That port is being blocked by two firewalls. Why would there be activity on that port. I dont get it. Please let me know any info on the error. Thanx much

Da-Idiot
02-23-2005, 02:40 PM
Just noticed theses. same ip address

2005-02-22 20:40:14.866 INFO [209.17.28.176:3107-0] Connection idle time: 301 while in state: 5 watching for event: 24,close!

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] Content len: 1019, Request line:POST /checkout_process.php HTTP/1.1

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] HttpExtConnector state: 8, request body sent: 1019, response body size: 0, response body sent:0, left in buffer: 0, attempts: 0.

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] FcgiConnection watching event: 25, wantWrite: 0, total Pending: 0, buffered: 0, record status: 0, size:0, content len: 8, request processed: 178, total processing time: 301, waiting for response for 301 seconds.

mistwang
02-23-2005, 02:48 PM
I am a newbie with the li9nux networking. I saw this error in my log

Error [209.17.28.176:3107-0] detect loop redirection.

What does this mean? And is it reason to suspect hacker activity?

Thanx for any info.

It because one script send a redirect to itself.

mistwang
02-23-2005, 02:49 PM
I notice the port number. That port is being blocked by two firewalls. Why would there be activity on that port. I dont get it. Please let me know any info on the error. Thanx much

That's remote address, where the request comes from. don't worry.

mistwang
02-23-2005, 02:53 PM
Just noticed theses. same ip address

2005-02-22 20:40:14.866 INFO [209.17.28.176:3107-0] Connection idle time: 301 while in state: 5 watching for event: 24,close!

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] Content len: 1019, Request line:POST /checkout_process.php HTTP/1.1

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] HttpExtConnector state: 8, request body sent: 1019, response body size: 0, response body sent:0, left in buffer: 0, attempts: 0.

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] FcgiConnection watching event: 25, wantWrite: 0, total Pending: 0, buffered: 0, record status: 0, size:0, content len: 8, request processed: 178, total processing time: 301, waiting for response for 301 seconds.

Looks like the /checkout_process.php take more than 5 minutes to process and request is timed out, is it normal? There might be MySQL dead lock. you should turn off MySQL persistent connection. check your php.ini , default one is in lsws/conf/php.ini

Da-Idiot
02-23-2005, 03:27 PM
Ok I have turned off persistent connections for mysql. Also turned off in my script.

Hopefully this will help clear the checkout problems also.

Thanx for all the info