Earlier quoted context omitted.
Not sure what you mean. There was no mention about executing anything in the heap (or stack for that matter). I have no reason to believe VLC maps (a part of) its heap RWX (=read + write + execute). This kind of exploits don't even require memory to be executable. C++ virtual methods cause the compiler to add vPtr (that is writable, because it's contained in the object) and vTable. Modifying vPtr can be used for maki…
> This kind of exploits don't even require memory to be executable. If this exploit is a memory leak, and the memory isn't executable, how do the malicious contents that get put into the leaked memory get executed?
VLC media player 3.0.6 and earlier: Read buffer overflow and double free
11–13 of 13 posts
Re: VLC media player 3.0.6 and earlier: Read buffer overflow and double free
#12Personal preference to avoid these sorts of exploits is by using a virtual machine with a browser VM from Microsoft, although by default those browser VMs are run in admin mode.
Be aware that there have been plenty of virtual machine escape vulnerabilities. If enough people did same, the attackers would start to exploit that vector. Or a target interesting enough. VLC might run quite a bit worse as well, because hardware video decoding is most likely unavailable in a VM.
Would like it if OS’s ran binaries in micro-vms by default. At least with a very much de-privileged container.
Re: VLC media player 3.0.6 and earlier: Read buffer overflow and double free
#13Earlier quoted context omitted.
> This kind of exploits don't even require memory to be executable. If this exploit is a memory leak, and the memory isn't executable, how do the malicious contents that get put into the leaked memory get executed?
Possibly through a ROP chain. Abusing VLC's code itself. You don't need memory that's writeable and executable for that. Check the Wikipedia link in my comment about ROP exploits.
It turns out that a lot of programs can be tricked into interpreting a family of languages called rop chains.