This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xxm
Recipients xxm
Date 2021-04-22.04:29:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1619065763.61.0.475663843227.issue43909@roundup.psfhosted.org>
In-reply-to
Content
We write a fuzz tool to fuzz Python standard libraries, and find three crashes: dis.dis(),  dis.get_instructions() dis.show_code() in dis module. 


dis.dis()
==========================================
xiaxinmeng:~ xiaxinmeng$ python3.10
Python 3.10.0a3 (v3.10.0a3:8bae2a958e, Dec  7 2020, 15:31:51) 
[Clang 12.0.0 (clang-1200.0.32.27)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dis
>>> dis.dis("s%-yPdrns"*1000000)
Segmentation fault: 11
=================================================


dis.get_instructions()
=================================================
Python 3.10.0a3 (v3.10.0a3:8bae2a958e, Dec  7 2020, 15:31:51) 
[Clang 12.0.0 (clang-1200.0.32.27)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dis
>>> dis.get_instructions("c/f/x"*1000000)
Segmentation fault: 11
==================================================


dis.show_code()
===================================================
Python 3.10.0a3 (v3.10.0a3:8bae2a958e, Dec  7 2020, 15:31:51) 
[Clang 12.0.0 (clang-1200.0.32.27)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dis
>>> dis.show_code("G/7/K"*1000000)
Segmentation fault: 11
====================================================
History
Date User Action Args
2021-04-22 04:29:23xxmsetrecipients: + xxm
2021-04-22 04:29:23xxmsetmessageid: <1619065763.61.0.475663843227.issue43909@roundup.psfhosted.org>
2021-04-22 04:29:23xxmlinkissue43909 messages
2021-04-22 04:29:22xxmcreate