This file contains 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
`<PBUIPosterWallpaperRemoteViewController: 0xbc60e6600> { | |
activeVariant = home; | |
scaleAssertions = { | |
<PBUIWallpaperScaleAssertion: 0x301702530; variant: home; scale: 1.000000>; | |
} | |
viewController = <PBUIPosterWallpaperViewController: 0xbc606ea00> { | |
posterController = <PBUIPosterViewController: 0xbc70a8600> { | |
activelyRequired = NO; | |
activeStyle = Normal; | |
activeVariant = home; |
This file contains 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
Domain Feature Enabled States | |
=================================================================== | |
APS SyncXPC YES resolved=enabled | |
WatchKADelayOOS YES resolved=enabled | |
SingleInterfaceFilterOptimization YES resolved=enabled | |
ShorterConnectDelayV1 YES resolved=enabled | |
SingleInterfaceFilterOptimizationProxy YES resolved=enabled | |
AVConference EnableNetworkConditionMonitoring YES resolved=enabled | |
UseTransportStreamsForNW YES resolved=enabled | |
UPlusNDowngrade YES resolved=enabled |
This file contains 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
// | |
// sim_dylib_loader.m | |
// objsee | |
// | |
// Created by Ethan Arbuckle on 1/31/25. | |
// | |
#include <Foundation/Foundation.h> | |
#include <objc/runtime.h> | |
#include <dlfcn.h> |
This file contains 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
uint64_t get_image_size(struct mach_header_64 *mh) { | |
struct load_command *cmd = (struct load_command *)((uint8_t *)mh + sizeof(struct mach_header_64)); | |
uint64_t max_addr = 0; | |
for (uint32_t i = 0; i < mh->ncmds; i++) { | |
if (cmd->cmd == LC_SEGMENT_64) { | |
struct segment_command_64 *seg = (struct segment_command_64 *)cmd; | |
uint64_t seg_end = seg->vmaddr + seg->vmsize; | |
if (seg_end > max_addr) { | |
max_addr = seg_end; | |
} |
This file contains 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
/* | |
Found string at address: 0x1048aa84d | |
Found reference in function: hidden_function | |
Found function that references string: 0x1048a89ec | |
*/ | |
#import <Foundation/Foundation.h> | |
#import <UIKit/UIKit.h> | |
#import "AppDelegate.h" | |
#import <mach-o/loader.h> |
This file contains 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
#include <mach-o/dyld.h> | |
#include <mach-o/loader.h> | |
#include <mach-o/nlist.h> | |
#include <mach-o/dyld_images.h> | |
#include <dlfcn.h> | |
static void *dyld_for_each_installed_shared_cache; | |
static void *dyld_shared_cache_for_each_image; | |
static void *dyld_image_get_installname; |
This file contains 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
// | |
// main.m | |
// breakpoints | |
// | |
// Created by @objc on 5/01/23. | |
// | |
#import <Foundation/Foundation.h> | |
#include <mach/mach.h> | |
#include <pthread.h> |
This file contains 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
// | |
// main.m | |
// | |
// Created by ethanarbuckle | |
// | |
#import <Foundation/Foundation.h> | |
#import <objc/runtime.h> | |
#import <mach/mach.h> | |
#import <execinfo.h> |
This file contains 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 <objc/runtime.h> | |
#import <mach/mach.h> | |
#import <malloc/malloc.h> | |
#import <dlfcn.h> | |
typedef struct { | |
Class targetClass; | |
void (^block)(id object, BOOL isSubclass, BOOL *stop); | |
dispatch_semaphore_t semaphore; | |
BOOL shouldStop; |
This file contains 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 <CoreGraphics/CoreGraphics.h> | |
#import <Foundation/Foundation.h> | |
#import <objc/runtime.h> | |
#import <objc/message.h> | |
#import <dlfcn.h> | |
__attribute__((constructor)) static void init(void) { | |
Method bundleIdentifierMethod = class_getInstanceMethod(objc_getClass("NSBundle"), sel_registerName("bundleIdentifier")); | |
IMP newImp = imp_implementationWithBlock(^(id self) { |
NewerOlder