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 pabstersac
Recipients pabstersac
Date 2016-07-17.06:02:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468735349.04.0.416587593882.issue27537@psf.upfronthosting.co.za>
In-reply-to
Content
The code is very simple:
import sys
sys.setrecursionlimit(1<<20)
test=lambda test:test(test)
test(test)

It basically works by changing the recursion limit and then starting an infinite recursion, this quickly gives a segfault.
This can be used to crash python.
History
Date User Action Args
2016-07-17 06:02:29pabstersacsetrecipients: + pabstersac
2016-07-17 06:02:29pabstersacsetmessageid: <1468735349.04.0.416587593882.issue27537@psf.upfronthosting.co.za>
2016-07-17 06:02:28pabstersaclinkissue27537 messages
2016-07-17 06:02:28pabstersaccreate