[Bug 1931709] [NEW] mysql-5.7.34 segfault in net_field_length_size

2021-06-11 Thread Bugs SysSec
Public bug reported: Steps to reproduce this bug (see files attached): ``` $ cat /etc/os-release | grep VERSION= VERSION="18.04.5 LTS (Bionic Beaver)" $ mysql --version mysql Ver 14.14 Distrib 5.7.34, for Linux (x86_64) using EditLine wrapper $ python server_output.py | nc -vvvlp 3306 & $ mysql

[Bug 1830752] Re: Upstream security fixes in VirtualBox

2019-09-01 Thread Bugs SysSec
Hi, sorry we don't have more information than provided. Oracle just noted that it's fixed in later versions. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1830752 Title: Upstream security fixes in

[Bug 1854223] [NEW] Integer overflow causes heap corruption

2019-11-27 Thread Bugs SysSec
Public bug reported: integer overflow leading to heap corruption in dmg2img.c ``` //+1 overflows if XMLLength = 0x // then plist is a valid pointer to an allocation of length 0 (it can be freed, but not written to) 220 plist = (char *)malloc(kol

[Bug 1854230] [NEW] integer underflow causes OOB write

2019-11-27 Thread Bugs SysSec
Public bug reported: Heap Out Of Bound Write Similar bug to: https://bugs.launchpad.net/ubuntu/+source/dmg2img/+bug/1835461 However, this time its the second strstr that fails and as a consequence, it causes a more or less arbitrary OOB write. 232 char *_blkx_begin = strstr

[Bug 1854231] [NEW] Heap OOB read

2019-11-27 Thread Bugs SysSec
Public bug reported: Heap Out Of Bound Read A variant of https://bugs.launchpad.net/ubuntu/+source/dmg2img/+bug/1835463 at another position. 324 parts[i].Data = (char *)malloc(0x28 * mishblk.BlocksRunCount); 325 if (!parts[i].Data) 326