Vulnerabilities tagged "binary"

Uniview PreAuth RCE

The inital vulnerability here is an unbounded `sscanf` into a stack variable.In terms of discovery just checking those format strings for unbounded string reads will find plenty of bugs out there in the world...
 

Insufficent Locking in XNU leading to Use-After-Free

This is one of those issues that is an obvious code-smell once you're aware of it, `inp_join_group` will release a lock, so that is can call another function that requires the same lock, and then take the lock back after the function has executed creating a window where another function can obtain the lock and free the pointer from under it.
 

runc/libcontainer: insecure handling of null-bytes in bind mount sources

Basic idea here is that you could mount unintended paths due to embeding null-bytes in acceptable mount and generally improper handling of null-bytes within a mount source.While Go does not provide any special handling for strings containing null bytes, the `send_mountsources` written in C just iterates over the provided message mounting every null-terminated substring and passes the resultant fds to the child...