You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started fuzzing the decompressor, and it found this issue pretty much instantly.
Here is the program I'm using. It writes the uncompressed size at the beginning of the files as a size_t; for the test archives to work size_t must be 8 (though changing a few instances of size_ts to int64_t should make them work elsewhere).
I'm posting this publicly in spite of https://github.com/nemequ/compfuzz/#disclosure-policy because I don't see this being an issue in real life (you would need a malloc implementation which puts tiny buffers immediately before a page boundary, which only tools designed to find issues like this do), and I doubt anyone is using LZSSE in production yet. If I find more realistic issues I'll disclose them privately.
The text was updated successfully, but these errors were encountered:
Sorry, I thought I had replied to this issue. Will try and look into it this weekend, I've got an idea why it might occur (I think it might be related to the minimum compressible length handling).
I've started fuzzing the decompressor, and it found this issue pretty much instantly.
Here is the program I'm using. It writes the uncompressed size at the beginning of the files as a
size_t
; for the test archives to worksize_t
must be 8 (though changing a few instances ofsize_t
s toint64_t
should make them work elsewhere).Here are some archives which cause a crash when compiled with AddressSanitizer: http://code.coeusgroup.com/afl-results/52558fa6-cf92-4446-a84b-636a02faecff.tar.xz
I'm posting this publicly in spite of https://github.com/nemequ/compfuzz/#disclosure-policy because I don't see this being an issue in real life (you would need a malloc implementation which puts tiny buffers immediately before a page boundary, which only tools designed to find issues like this do), and I doubt anyone is using LZSSE in production yet. If I find more realistic issues I'll disclose them privately.
The text was updated successfully, but these errors were encountered: