commit | a37f52436f9aa4b9292878b72f3ff1480e2606c3 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@python.org> | Tue Jan 15 23:47:42 2019 +0100 |
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Tue Jan 15 14:47:42 2019 -0800 |
tree | 241263055db201418a7288a883eefd783ff59364 | |
parent | c9f872b0bdce5888f1879fa74e098bf4a05430c5 [diff] |
bpo-35746: Fix segfault in ssl's cert parser (GH-11569) Fix a NULL pointer deref in ssl module. The cert parser did not handle CRL distribution points with empty DP or URI correctly. A malicious or buggy certificate can result into segfault. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue35746