This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import random | |
| import ffmpeg | |
| # Function to apply random color to text surrounded by symbols | |
| def apply_random_color(text, symbol_colors): | |
| result = "" | |
| inside_symbol = False | |
| for char in text: | |
| if char == "#" or char == "/": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import lldb | |
| file_path = "reachable_services.txt" | |
| debugger = lldb.SBDebugger.Create() | |
| interpreter = debugger.GetCommandInterpreter() | |
| debugger.Initialize() | |
| return_obj = lldb.SBCommandReturnObject() | |
| with open(file_path, 'r') as file: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| com.apple.watchconnectivity.complication | |
| com.apple.wcd | |
| com.apple.mobileassetd.v2 | |
| com.apple.mobileassetd | |
| com.apple.assistivetouchd.drag.xpc | |
| UIASTNotificationCenter | |
| com.apple.ScreenTimeAgent | |
| com.apple.iconservices | |
| com.apple.donotdisturb.availability.service | |
| com.apple.donotdisturb.appconfiguration.service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function Name: PopCreatePowerThread | |
| --> Function Address: 0x140123b55L | |
| Function Name: MiZeroInParallel | |
| --> Function Address: 0x1401a330eL | |
| Function Name: DisplayBootBitmap | |
| --> Function Address: 0x1401b3124L | |
| Function Name: ?SmStWorkerThreadStartThread@?$SMKM_STORE@USM_TRAITS@@@@SAJPEAU1@P6AXPEAX@ZPEAPEAU_ETHREAD@@@Z | |
| --> Function Address: 0x14022390bL | |
| Function Name: SmKmStoreHelperStart | |
| --> Function Address: 0x14022fa2eL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef NTSTATUS (NTAPI *pfnNtQueryInformationProcess)( | |
| IN HANDLE ProcessHandle, | |
| IN PROCESSINFOCLASS ProcessInformationClass, | |
| OUT PVOID ProcessInformation, | |
| IN ULONG ProcessInformationLength, | |
| OUT PULONG ReturnLength OPTIONAL | |
| ); | |
| // ... blahblahblah ... |