Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.218.94.236
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib64 /
python2.7 /
site-packages /
cffi /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
483
B
-rw-r--r--
__init__.pyc
541
B
-rw-r--r--
__init__.pyo
541
B
-rw-r--r--
_cffi_include.h
9.78
KB
-rw-r--r--
_embedding.h
16.84
KB
-rw-r--r--
api.py
36.75
KB
-rw-r--r--
api.pyc
35.77
KB
-rw-r--r--
api.pyo
35.56
KB
-rw-r--r--
backend_ctypes.py
39.19
KB
-rw-r--r--
backend_ctypes.pyc
44.31
KB
-rw-r--r--
backend_ctypes.pyo
43.94
KB
-rw-r--r--
cffi_opcode.py
5.35
KB
-rw-r--r--
cffi_opcode.pyc
5.63
KB
-rw-r--r--
cffi_opcode.pyo
5.57
KB
-rw-r--r--
commontypes.py
2.47
KB
-rw-r--r--
commontypes.pyc
2.21
KB
-rw-r--r--
commontypes.pyo
2.14
KB
-rw-r--r--
cparser.py
36.2
KB
-rw-r--r--
cparser.pyc
23.81
KB
-rw-r--r--
cparser.pyo
23.63
KB
-rw-r--r--
ffiplatform.py
3.64
KB
-rw-r--r--
ffiplatform.pyc
4.61
KB
-rw-r--r--
ffiplatform.pyo
4.61
KB
-rw-r--r--
gc_weakref.py
642
B
-rw-r--r--
gc_weakref.pyc
1.21
KB
-rw-r--r--
gc_weakref.pyo
1.17
KB
-rw-r--r--
lock.py
747
B
-rw-r--r--
lock.pyc
441
B
-rw-r--r--
lock.pyo
441
B
-rw-r--r--
model.py
20.62
KB
-rw-r--r--
model.pyc
23.04
KB
-rw-r--r--
model.pyo
22.84
KB
-rw-r--r--
parse_c_type.h
5.7
KB
-rw-r--r--
recompiler.py
59.29
KB
-rw-r--r--
recompiler.pyc
52.37
KB
-rw-r--r--
recompiler.pyo
51.63
KB
-rw-r--r--
setuptools_ext.py
6.01
KB
-rw-r--r--
setuptools_ext.pyc
6.73
KB
-rw-r--r--
setuptools_ext.pyo
6.69
KB
-rw-r--r--
vengine_cpy.py
40.4
KB
-rw-r--r--
vengine_cpy.pyc
36.72
KB
-rw-r--r--
vengine_cpy.pyo
36.39
KB
-rw-r--r--
vengine_gen.py
26.01
KB
-rw-r--r--
vengine_gen.pyc
24.02
KB
-rw-r--r--
vengine_gen.pyo
23.64
KB
-rw-r--r--
verifier.py
11.25
KB
-rw-r--r--
verifier.pyc
11.15
KB
-rw-r--r--
verifier.pyo
11.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : commontypes.py
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())
Close