Merge pull request #2995 from naveensingh/fix_webp_vuln
Update webp decoder library (fix CVE-2023-4863)
This commit is contained in:
commit
f193758ac5
2 changed files with 8 additions and 4 deletions
|
@ -15,6 +15,8 @@ import android.provider.MediaStore.Images
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import com.bumptech.glide.Glide
|
import com.bumptech.glide.Glide
|
||||||
import com.bumptech.glide.Priority
|
import com.bumptech.glide.Priority
|
||||||
|
import com.bumptech.glide.integration.webp.WebpBitmapFactory
|
||||||
|
import com.bumptech.glide.integration.webp.decoder.WebpDownsampler
|
||||||
import com.bumptech.glide.integration.webp.decoder.WebpDrawable
|
import com.bumptech.glide.integration.webp.decoder.WebpDrawable
|
||||||
import com.bumptech.glide.integration.webp.decoder.WebpDrawableTransformation
|
import com.bumptech.glide.integration.webp.decoder.WebpDrawableTransformation
|
||||||
import com.bumptech.glide.load.DataSource
|
import com.bumptech.glide.load.DataSource
|
||||||
|
@ -539,9 +541,11 @@ fun Context.loadImageBase(
|
||||||
options.optionalTransform(WebpDrawable::class.java, MultiTransformation(WebpDrawableTransformation(CenterCrop()), WebpDrawableTransformation(roundedCornersTransform)))
|
options.optionalTransform(WebpDrawable::class.java, MultiTransformation(WebpDrawableTransformation(CenterCrop()), WebpDrawableTransformation(roundedCornersTransform)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WebpBitmapFactory.sUseSystemDecoder = false // CVE-2023-4863
|
||||||
var builder = Glide.with(applicationContext)
|
var builder = Glide.with(applicationContext)
|
||||||
.load(path)
|
.load(path)
|
||||||
.apply(options)
|
.apply(options)
|
||||||
|
.set(WebpDownsampler.USE_SYSTEM_DECODER, false) // CVE-2023-4863
|
||||||
.transition(DrawableTransitionOptions.withCrossFade(crossFadeDuration))
|
.transition(DrawableTransitionOptions.withCrossFade(crossFadeDuration))
|
||||||
|
|
||||||
if (tryLoadingWithPicasso) {
|
if (tryLoadingWithPicasso) {
|
||||||
|
|
|
@ -19,10 +19,10 @@ gradlePlugins-agp = "7.4.0"
|
||||||
#Other
|
#Other
|
||||||
androidGifDrawable = "1.2.25"
|
androidGifDrawable = "1.2.25"
|
||||||
androidImageCropper = "4.5.0"
|
androidImageCropper = "4.5.0"
|
||||||
apng = "2.25.0"
|
apng = "2.28.0"
|
||||||
awebp = "2.25.0"
|
awebp = "2.28.0"
|
||||||
glideCompiler = "4.15.1"
|
glideCompiler = "4.16.0"
|
||||||
zjupureWebpdecoder = "2.3.4.15.1"
|
zjupureWebpdecoder = "2.6.4.16.0"
|
||||||
gestureviews = "a8e8fa8d27"
|
gestureviews = "a8e8fa8d27"
|
||||||
androidsvgAar = "1.4"
|
androidsvgAar = "1.4"
|
||||||
imagefilters = "1.0.7"
|
imagefilters = "1.0.7"
|
||||||
|
|
Loading…
Reference in a new issue