Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.152
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Modules /
_ssl /
Delete
Unzip
Name
Size
Permission
Date
Action
clinic
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
cert.c
6.08
KB
-rw-r--r--
2024-03-19 22:46
debughelpers.c
6.4
KB
-rw-r--r--
2024-03-19 22:46
misc.c
816
B
-rw-r--r--
2024-03-19 22:46
Save
Rename
#include "Python.h" #include "../_ssl.h" #include "openssl/bio.h" /* BIO_s_mem() to PyBytes */ static PyObject * _PySSL_BytesFromBIO(_sslmodulestate *state, BIO *bio) { long size; char *data = NULL; size = BIO_get_mem_data(bio, &data); if (data == NULL || size < 0) { PyErr_SetString(PyExc_ValueError, "Not a memory BIO"); return NULL; } return PyBytes_FromStringAndSize(data, size); } /* BIO_s_mem() to PyUnicode */ static PyObject * _PySSL_UnicodeFromBIO(_sslmodulestate *state, BIO *bio, const char *error) { long size; char *data = NULL; size = BIO_get_mem_data(bio, &data); if (data == NULL || size < 0) { PyErr_SetString(PyExc_ValueError, "Not a memory BIO"); return NULL; } return PyUnicode_DecodeUTF8(data, size, error); }