summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-20 23:38:34 -0400
committerpommicket <pommicket@gmail.com>2023-09-20 23:38:34 -0400
commit521a88b66f0bd76c52fef0d84776478c0b0664d9 (patch)
tree0df450d897f6e3ab422f83b8a0ef54d769d023cf /CHANGELOG.md
parentbac500bc1289d9bf2c61173bd170bc721406087a (diff)
- add overflow check for chunk length.HEAD0.1.1trunk
this could have resulted in debug-only panics for maliciously crafted images. - add “impossible compressed size” check which slightly mitigates the problem of a malicious image causing you to allocate a shitton of memory.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..265e560
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,6 @@
+## 0.1.1
+
+- add overflow check for chunk length.
+ this could have resulted in debug-only panics for maliciously crafted images.
+- add “impossible compressed size” check which slightly mitigates the
+ problem of a malicious image causing you to allocate a shitton of memory.