Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
cffi /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
483
B
-rw-r--r--
2016-04-21 06:12
__init__.pyc
541
B
-rw-r--r--
2016-11-05 20:41
__init__.pyo
541
B
-rw-r--r--
2016-11-05 20:41
_cffi_include.h
9.78
KB
-rw-r--r--
2016-04-21 06:12
_embedding.h
16.84
KB
-rw-r--r--
2016-04-21 06:12
api.py
36.75
KB
-rw-r--r--
2016-04-21 06:12
api.pyc
35.77
KB
-rw-r--r--
2016-11-05 20:41
api.pyo
35.56
KB
-rw-r--r--
2016-11-05 20:41
backend_ctypes.py
39.19
KB
-rw-r--r--
2016-04-21 05:54
backend_ctypes.pyc
44.31
KB
-rw-r--r--
2016-11-05 20:41
backend_ctypes.pyo
43.94
KB
-rw-r--r--
2016-11-05 20:41
cffi_opcode.py
5.35
KB
-rw-r--r--
2016-04-21 05:54
cffi_opcode.pyc
5.63
KB
-rw-r--r--
2016-11-05 20:41
cffi_opcode.pyo
5.57
KB
-rw-r--r--
2016-11-05 20:41
commontypes.py
2.47
KB
-rw-r--r--
2016-04-21 05:54
commontypes.pyc
2.21
KB
-rw-r--r--
2016-11-05 20:41
commontypes.pyo
2.14
KB
-rw-r--r--
2016-11-05 20:41
cparser.py
36.2
KB
-rw-r--r--
2016-04-21 06:12
cparser.pyc
23.81
KB
-rw-r--r--
2016-11-05 20:41
cparser.pyo
23.63
KB
-rw-r--r--
2016-11-05 20:41
ffiplatform.py
3.64
KB
-rw-r--r--
2016-04-21 06:12
ffiplatform.pyc
4.61
KB
-rw-r--r--
2016-11-05 20:41
ffiplatform.pyo
4.61
KB
-rw-r--r--
2016-11-05 20:41
gc_weakref.py
642
B
-rw-r--r--
2016-04-21 05:54
gc_weakref.pyc
1.21
KB
-rw-r--r--
2016-11-05 20:41
gc_weakref.pyo
1.17
KB
-rw-r--r--
2016-11-05 20:41
lock.py
747
B
-rw-r--r--
2016-04-21 05:54
lock.pyc
441
B
-rw-r--r--
2016-11-05 20:41
lock.pyo
441
B
-rw-r--r--
2016-11-05 20:41
model.py
20.62
KB
-rw-r--r--
2016-04-21 05:54
model.pyc
23.04
KB
-rw-r--r--
2016-11-05 20:41
model.pyo
22.84
KB
-rw-r--r--
2016-11-05 20:41
parse_c_type.h
5.7
KB
-rw-r--r--
2016-04-21 05:54
recompiler.py
59.29
KB
-rw-r--r--
2016-04-21 06:12
recompiler.pyc
52.37
KB
-rw-r--r--
2016-11-05 20:41
recompiler.pyo
51.63
KB
-rw-r--r--
2016-11-05 20:41
setuptools_ext.py
6.01
KB
-rw-r--r--
2016-04-21 05:54
setuptools_ext.pyc
6.73
KB
-rw-r--r--
2016-11-05 20:41
setuptools_ext.pyo
6.69
KB
-rw-r--r--
2016-11-05 20:41
vengine_cpy.py
40.4
KB
-rw-r--r--
2016-04-21 06:12
vengine_cpy.pyc
36.72
KB
-rw-r--r--
2016-11-05 20:41
vengine_cpy.pyo
36.39
KB
-rw-r--r--
2016-11-05 20:41
vengine_gen.py
26.01
KB
-rw-r--r--
2016-04-21 06:12
vengine_gen.pyc
24.02
KB
-rw-r--r--
2016-11-05 20:41
vengine_gen.pyo
23.64
KB
-rw-r--r--
2016-11-05 20:41
verifier.py
11.25
KB
-rw-r--r--
2016-04-21 06:12
verifier.pyc
11.15
KB
-rw-r--r--
2016-11-05 20:41
verifier.pyo
11.11
KB
-rw-r--r--
2016-11-05 20:41
Save
Rename
import sys from . import api, model COMMON_TYPES = {} try: # fetch "bool" and all simple Windows types from _cffi_backend import _get_common_types _get_common_types(COMMON_TYPES) except ImportError: pass COMMON_TYPES['FILE'] = model.unknown_type('FILE', '_IO_FILE') COMMON_TYPES['bool'] = '_Bool' # in case we got ImportError above for _type in model.PrimitiveType.ALL_PRIMITIVE_TYPES: if _type.endswith('_t'): COMMON_TYPES[_type] = _type del _type _CACHE = {} def resolve_common_type(parser, commontype): try: return _CACHE[commontype] except KeyError: cdecl = COMMON_TYPES.get(commontype, commontype) if not isinstance(cdecl, str): result, quals = cdecl, 0 # cdecl is already a BaseType elif cdecl in model.PrimitiveType.ALL_PRIMITIVE_TYPES: result, quals = model.PrimitiveType(cdecl), 0 elif cdecl == 'set-unicode-needed': raise api.FFIError("The Windows type %r is only available after " "you call ffi.set_unicode()" % (commontype,)) else: if commontype == cdecl: raise api.FFIError("Unsupported type: %r. Please file a bug " "if you think it should be." % (commontype,)) result, quals = parser.parse_type_and_quals(cdecl) # recursive assert isinstance(result, model.BaseTypeByIdentity) _CACHE[commontype] = result, quals return result, quals # ____________________________________________________________ # extra types for Windows (most of them are in commontypes.c) def win_common_types(): return { "UNICODE_STRING": model.StructType( "_UNICODE_STRING", ["Length", "MaximumLength", "Buffer"], [model.PrimitiveType("unsigned short"), model.PrimitiveType("unsigned short"), model.PointerType(model.PrimitiveType("wchar_t"))], [-1, -1, -1]), "PUNICODE_STRING": "UNICODE_STRING *", "PCUNICODE_STRING": "const UNICODE_STRING *", "TBYTE": "set-unicode-needed", "TCHAR": "set-unicode-needed", "LPCTSTR": "set-unicode-needed", "PCTSTR": "set-unicode-needed", "LPTSTR": "set-unicode-needed", "PTSTR": "set-unicode-needed", "PTBYTE": "set-unicode-needed", "PTCHAR": "set-unicode-needed", } if sys.platform == 'win32': COMMON_TYPES.update(win_common_types())