[This](https://github.com/Bowarc/Crates/blob/c8bf021414674046e66fad8608d2353279111bfe/networking/src/socket.rs#L114) if not checked, allocates an arbitrary number of bytes. This, combined with any connection request that doesn't follow our header pattern, will request a random amount of memory to be allocated. Which will most of the time crash the program.
This if not checked, allocates an arbitrary number of bytes.
This, combined with any connection request that doesn't follow our header pattern, will request a random amount of memory to be allocated.
Which will most of the time crash the program.