Original source: https://github.com/0xced/iOS-Artwork-Extractor/wiki/Extracting-more-artwork
You can extract even more artwork if you decrypt and mount an iOS firmware (.ipsw file).
- ipsw_decrypt.py
- Python 3.2 (required by ipsw_decrypt.py)
Original source: https://github.com/0xced/iOS-Artwork-Extractor/wiki/Extracting-more-artwork
You can extract even more artwork if you decrypt and mount an iOS firmware (.ipsw file).
| #ident "@(#) Object.h, Rev 2.10, 96/08/02" | |
| // | |
| // Copyright (c) 1995-1996, Sun Microsystems, Inc. | |
| // portions (c) Copyright 1988, 1989 NeXT, Inc. | |
| // All rights reserved. | |
| #ifndef _OBJC_OBJECT_H_ | |
| #define _OBJC_OBJECT_H_ | |
| #import <objc/objc.h> |
| /* | |
| Dead simple com.apple.companion_proxy client. | |
| This allows you to forward ports bound to your Watch's 127.0.0.1 to a random port on your iPhone. | |
| -- qwertyoruiop, 2016 | |
| */ | |
| #include <stdio.h> |
| // | |
| // main.c | |
| // macho-syms | |
| // | |
| // Created by C0deH4cker on 3/19/16. | |
| // Copyright © 2016 C0deH4cker. All rights reserved. | |
| // | |
| #include <stdio.h> | |
| #include <stdlib.h> |
| #import <Foundation/Foundation.h> | |
| #include <mach-o/dyld.h> | |
| uint32_t check_image(const struct mach_header *mh) { | |
| struct mach_header *imageHeader; | |
| uint32_t index; | |
| for (index = 0; index < _dyld_image_count(); index++) { | |
| imageHeader = (struct mach_header *)_dyld_get_image_header(index); | |
| if ((int)memcmp(imageHeader, mh, sizeof(struct mach_header)) == 0) { |
| /* | |
| * t2048.c - 2048 for some TI calculators | |
| * | |
| * Copyright (c) 2014 Siguza | |
| * | |
| * Tested on TI-89 Titanium only. According to headers, it should work on TI-92 and Voyage 200 as well, but no promises. | |
| * To be compiled with ti-gcc - as far as I remember, TI's own C compiler can't handle this. | |
| * | |
| * Licensed under MIT, i.e. feel free to use and redistribute at will, but I'd appreciate some credit. :) | |
| */ |
e.g.
enjoy, pls don't use for evil. Fair use etc.
| @protocol AutoHook <NSObject> | |
| @required | |
| + (NSArray <NSString *> *)targetClasses; | |
| @end |
| // Command-line dictionary lookup. | |
| // | |
| // Build with: | |
| // clang -framework CoreServices | |
| // clang -fobjc-arc -fmodules definition.m -o definition | |
| #import <CoreFoundation/CoreFoundation.h> | |
| #import <CoreServices/CoreServices.h> |