We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* ----- Load RLE compressed raster ----- */ BImgBuff=(unsigned char *) AcquireQuantumMemory((size_t) ldblk, sizeof(*BImgBuff)); /*Ldblk was set in the check phase*/ if(BImgBuff==NULL) goto NoMemory; offset=SeekBlob(image,6 /*sizeof(Header)*/,SEEK_SET);
(https://github.com/ImageMagick/ImageMagick/blob/master/coders/cut.c#L552)
We should initialize the BImgBuff, otherwise an use-of-uninitialized vulnerability occurs, which is similar to https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=6780 (fixed in a85ab26 and 81bfff2 ) and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5710 (fixed in ce433f8 and 81bfff2).
The text was updated successfully, but these errors were encountered:
Thanks for the problem report. We can reproduce it and will have a patch to fix it in GIT master branch @ https://github.com/ImageMagick/ImageMagick later today. The patch will be available in the beta releases of ImageMagick @ http://www.imagemagick.org/download/beta/ by sometime tomorrow.
Sorry, something went wrong.
https://github.com/ImageMagick/ImageMagick/issues/1599
cdb3837
1e59b29
This was assigned CVE-2019-13135.
No branches or pull requests
Prerequisites
Description
(https://github.com/ImageMagick/ImageMagick/blob/master/coders/cut.c#L552)
We should initialize the BImgBuff, otherwise an use-of-uninitialized vulnerability occurs, which is similar to https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=6780 (fixed in a85ab26 and 81bfff2 ) and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5710 (fixed in ce433f8 and 81bfff2).
The text was updated successfully, but these errors were encountered: