2014-08-07 03:42:43 +04:00
|
|
|
# Tests potential DOS of IcnsImagePlugin with 0 length block.
|
2014-08-28 15:44:19 +04:00
|
|
|
# Run from anywhere that PIL is importable.
|
2014-08-07 03:42:43 +04:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
from io import BytesIO
|
|
|
|
|
2014-08-07 03:42:43 +04:00
|
|
|
from PIL import Image
|
2018-04-20 02:19:13 +03:00
|
|
|
from PIL._util import py3
|
2014-08-07 03:42:43 +04:00
|
|
|
|
2018-04-19 12:40:56 +03:00
|
|
|
if py3:
|
2019-06-13 18:53:42 +03:00
|
|
|
Image.open(BytesIO(bytes("icns\x00\x00\x00\x10hang\x00\x00\x00\x00", "latin-1")))
|
2018-04-19 12:40:56 +03:00
|
|
|
else:
|
2019-06-13 18:53:42 +03:00
|
|
|
Image.open(BytesIO(bytes("icns\x00\x00\x00\x10hang\x00\x00\x00\x00")))
|