Находки в опенсорсе: Python
@opensource_findings_python
981
subscribers
4
photos
221
links
Легкие задачки в опенсорсе из мира Python
Чат:
@opensource_findings_chat
Download Telegram
Join
Находки в опенсорсе: Python
981 subscribers
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/132470
#ctypes
#c
#cpython
GitHub
Building a `ctypes.CField` with wrong `byte_size` aborts · Issue #132470 · python/cpython
Crash report What happened? The following code will cause an abort due to byte_size not matching the size of ctypes.c_byte, failing an assertion that byte_size == info->size. import ctypes ctype...
🔥
3
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/145301
#cpython
#c
GitHub
`_hashlib`: Use-After-Free + Double Free in `_hashopenssl.
c
` `py_hashentry_table_new()` · Issue #145301 · python/cpython
Crash report What happened? In py_hashentry_table_new(), when _Py_hashtable_set() fails for an alias key (line 270), entry is explicitly freed via PyMem_Free(entry) at line 271. However, this same ...
🔥
1
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/149953
#c
#cpython
GitHub
Bug: NULL pointer dereference in _remote_debugging code_objects.
c
:435 (dead null check) · Issue #149953 · python/cpython
Bug Description In Modules/_remote_debugging/code_objects.
c
:435, there is a NULL pointer dereference vulnerability due to incorrect ordering of conditions in a compound || expression. The Bug // Li...