Staging
v0.5.1
https://github.com/python/cpython
Revision 06b15424b0dcacb1c551b2a36e739fffa8d0c595 authored by Miss Islington (bot) on 15 January 2019, 23:11:52 UTC, committed by GitHub on 15 January 2019, 23:11:52 UTC

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
(cherry picked from commit a37f52436f9aa4b9292878b72f3ff1480e2606c3)

Co-authored-by: Christian Heimes <christian@python.org>
1 parent 1462234
Raw File
Tip revision: 06b15424b0dcacb1c551b2a36e739fffa8d0c595 authored by Miss Islington (bot) on 15 January 2019, 23:11:52 UTC
bpo-35746: Fix segfault in ssl's cert parser (GH-11569)
Tip revision: 06b1542
BeOS-NOTES
Python for BeOS R5

In Python-2.1, the standard version of the new setup.py program
will not build the full complement of modules on BeOS.  Instead,
please replace it with the special BeOS version in Misc/BeOS-setup.py.

To build,

   1)  cp Misc/BeOS-setup.py setup.py
   2)  ./configure --prefix=/boot/home/config
   3)  make

The modules will all build, except termios which assumes some flags
we don't have.  Put a libreadline.a in /boot/home/config/lib to get
a readline.so for your interactive editing convenience;  NB, not
libreadline.so, you want to link a static readline library into the
dynamically loaded Python module.

Test:

   make test

   The BeOS is Not UNIX category:
 - test_select crashed -- select.error : (-2147459072, 'Bad file descriptor')
 - test_socket crashed -- exceptions.AttributeError : SOCK_RAW
 - test_fcntl crashed -- exceptions.IOError: [Errno -2147483643] Invalid argument

   This one is funny!  BeOS does support large files, and that's why
       we get this error:  the file is too big for my filesystem!
 - test_largefile crashed -- exceptions.IOError: [Errno -2147459065]
       No space left on device

 - test_pickle crashed.  This is apparently a serious problem, "complex"
       number objects reconstructed from a pickle don't compare equal to
       their ancestors.  But it happens on BeOS PPC only, not Intel.

Install:

   make install


Maintainer: None (please volunteer if you would like to see this port continue
to exist!)
back to top