Fixed OOB read in update_recv_secondary_order
CVE-2020-4032 thanks to @antonio-morales for finding this.
This commit is contained in:
parent
05cd9ea229
commit
e7bffa64ef
@ -3762,12 +3762,13 @@ static BOOL update_recv_secondary_order(rdpUpdate* update, wStream* s, BYTE flag
|
||||
name, end - start);
|
||||
return FALSE;
|
||||
}
|
||||
diff = start - end;
|
||||
diff = end - start;
|
||||
if (diff > 0)
|
||||
{
|
||||
WLog_Print(update->log, WLOG_DEBUG,
|
||||
"SECONDARY_ORDER %s: read %" PRIuz "bytes short, skipping", name, diff);
|
||||
Stream_Seek(s, diff);
|
||||
if (!Stream_SafeSeek(s, diff))
|
||||
return FALSE;
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user