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 /
lib64 /
python3.9 /
site-packages /
lldb /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-03 15:09
__init__.py
340
B
-rw-r--r--
2025-09-17 20:30
in_call_stack.py
797
B
-rw-r--r--
2025-09-17 20:30
symbolication.py
30.1
KB
-rw-r--r--
2025-09-17 20:30
Save
Rename
#!/usr/bin/env python def __lldb_init_module(debugger, internal_dict): debugger.HandleCommand( f"command alias in_call_stack breakpoint command add --python-function {__name__}.in_call_stack -k name -v %1" ) def in_call_stack(frame, bp_loc, arg_dict, _): """Only break if the given name is in the current call stack.""" name = arg_dict.GetValueForKey("name").GetStringValue(1000) thread = frame.GetThread() found = False for frame in thread.frames: # Check the symbol. symbol = frame.GetSymbol() if symbol and name in frame.GetSymbol().GetName(): return True # Check the function. function = frame.GetFunction() if function and name in function.GetName(): return True return False