Description
The FTP class uses BufferedReader for wrapping the control channel, and uses its readLine() for getting responses from the server.
The FTP protocol requires CRLF at the end of lines, but Bufferedreader#readLine() also allows bare CR and LF terminators, which could potentially be included in a server reply.
Attachments
Issue Links
- is cloned by
-
NET-402 BufferedReader used for control channel, which does not follow the standard
- Closed