Limit the amount of data the server will read
Set a hard limit on 30KB that the server is willing to read, over two sequential reads. If the client sends more than 30KB combined, the server will disconnect the client.
This commit is contained in:
parent
9c3cd12202
commit
2f69b51280
@ -2049,6 +2049,11 @@ class AOClient : public QObject {
|
||||
* @param incoming_message QString to be decoded.
|
||||
*/
|
||||
QString decodeMessage(QString incoming_message);
|
||||
|
||||
/**
|
||||
* @brief The size, in bytes, of the last data the client sent to the server.
|
||||
*/
|
||||
int last_read;
|
||||
};
|
||||
|
||||
#endif // AOCLIENT_H
|
||||
|
@ -19,7 +19,12 @@
|
||||
|
||||
void AOClient::clientData()
|
||||
{
|
||||
if (last_read + socket->bytesAvailable() > 30720) { // Client can send a max of 30KB to the server over two sequential reads
|
||||
socket->close();
|
||||
}
|
||||
|
||||
QString data = QString::fromUtf8(socket->readAll());
|
||||
last_read = data.size();
|
||||
|
||||
if (is_partial) {
|
||||
data = partial_packet + data;
|
||||
|
Loading…
Reference in New Issue
Block a user