Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have situation where I am using BufferedReader readLine() to read data from a socket, but readline() reads data until it finds new line character/ return carriage in the Data.
And if my data does not contain new line character then it will keep on reading the data until it finds a new line and an intruder can inject DOS attack. And even socket can timeout.

I know one solution might be we need to restrict line size and read only some data, and append data to the buffer.

Is it optimal solution or i can do it in some other way?.

I can override BufferedReader and override readLine() method. Is it feasible solution?.

share|improve this question

1 Answer

Possibly this post will help you.

share|improve this answer
2  
this link is broken. And please avoid link only-answers. – oers Jun 18 '11 at 7:44
could not access this link – Brijesh Jun 18 '11 at 7:47
@oers @Brijesh Sorry paste an copy mistake – Omnaest Jun 18 '11 at 7:57
i think OWASP community provide solution for this problem. – Brijesh Jun 22 '11 at 6:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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