Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.9 /
site-packages /
elftools /
ehabi /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-03 15:08
__init__.py
0
B
-rw-r--r--
2020-10-27 13:42
constants.py
27
B
-rw-r--r--
2020-10-27 13:42
decoder.py
11.64
KB
-rw-r--r--
2020-10-27 13:42
ehabiinfo.py
8.02
KB
-rw-r--r--
2020-10-27 13:42
structs.py
1.35
KB
-rw-r--r--
2020-10-27 13:42
Save
Rename
# ------------------------------------------------------------------------------- # elftools: ehabi/structs.py # # Encapsulation of Construct structs for parsing an EHABI, adjusted for # correct endianness and word-size. # # LeadroyaL (leadroyal@qq.com) # This code is in the public domain # ------------------------------------------------------------------------------- from ..construct import UBInt32, ULInt32, Struct class EHABIStructs(object): """ Accessible attributes: EH_index_struct: Struct of item in section .ARM.exidx. EH_table_struct: Struct of item in section .ARM.extab. """ def __init__(self, little_endian): self._little_endian = little_endian self._create_structs() def _create_structs(self): if self._little_endian: self.EHABI_uint32 = ULInt32 else: self.EHABI_uint32 = UBInt32 self._create_exception_handler_index() self._create_exception_handler_table() def _create_exception_handler_index(self): self.EH_index_struct = Struct( 'EH_index', self.EHABI_uint32('word0'), self.EHABI_uint32('word1') ) def _create_exception_handler_table(self): self.EH_table_struct = Struct( 'EH_table', self.EHABI_uint32('word0'), )