-
Content Count
149 -
Joined
-
Last visited
-
Days Won
30
JohnKittz last won the day on September 13 2022
JohnKittz had the most liked content!
About JohnKittz
-
Rank
The Smoking Haxer
- Birthday 04/21/1997
Profile Information
-
Gender
Male
-
Location
iOSMods
-
Interests
Sub_x
Flex 2
IDA
PC
iOSMods -
Device
iPhone 5S
Recent Profile Visitors
3,634 profile views
-
-
-
-
-
-
-
-
-
-
-
sasamide26 started following JohnKittz
-
JohnKittz started following How To Install Theos On Windows, How to unjailbreak and restore iOS 8.1 to 8.4, [Video] How To Make A Custom Slider Text and and 3 others
-
Any Proof? Also Are you sure its not him?
-
Alright guys as the title says I will show you how to unjailbreak and completely restore your iDevice without Updating to the lastest iOS so you can save your iOS version this tutorial is only for people jailbroken on iOS 8.1 to iOS 8.4 [hide]all you gotta do is download cydia impactor from Saurik on cydia I found it through an official repo like bigboss[/hide]
-
-
1. The requirements. The requirements for this are the same as with regular theos, so if you're just "upgrading" your theos, move on. sudo apt-get install git perl curl python gcc make openssh rsync dpkgIn this version, the cydia substrate header/library is included, as well as many new templates. 2. Getting Kirb's Theos Kirb's theos works a little differently, instead of making symlinks to theos, it uses the $THEOS environment variable. You must set this to wherever you are installing theos to. In this tut, we're installing it to /opt/theos. export THEOS=/opt/theosYou should also add this your ~/.bashrc 2a. Now for actually installing it, assuming you've installed the required packages and set $THEOS properly, you can run the following command git clone https://github.com/kirb/theos.git$THEOS wget http://74.91.122.235/files/headers.tar.gz-O $THEOS/include/ mkdir $THEOS/sdks/ wget http://74.91.122.235/files/sdks.tar.gz-O $THEOS/sdks/ Now extract the archives, the sdks will take a while. cd $THEOS/include && tar -xzvf headers.tar.gz cd $THEOS/sdks && tar -xzvf sdks.tar.gz You can leave out the v in the -xzvf if you don't want your console spammed 3. Now to test cd ~/ && $THEOS/bin/nic.pl choose whatever for those options, as this is just a test. cd yourproject && make After this is finished, you must get the headers and sdk's. Or if you're too lazy to set it all by yourself, just install the dependencies, set the export, and run this: wget http://74.91.122.235/files/theos.tar.gz/opt/ && cd /opt/ && tar -xzvf theos.tar.gz
-
FINALLY!!!! SO TIRED OF STRUGGLING
-
So recently i was having issues making a deb package because of an error i would get regarding arm64 which looks like this: /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile --no-print-directory --no-keep-going \ internal-library-compile \ THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=Cars THEOS_CURRENT_OPERATION=compile \ THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes /Users/angrydominican/Documents/Debfiles/Cars/theos/bin/logos.pl -c warnings=error Tweak.xm > ./obj/Tweak.xm.mm xcrun -sdk iphoneos clang++ -x objective-c++ -c -I"/Users/angrydominican/Documents/Debfiles/Cars" -DTARGET_IPHONE=1 -O2 -I/Users/angrydominican/Documents/Debfiles/Cars/theos/include -include /Users/angrydominican/Documents/Debfiles/Cars/theos/Prefix.pch -Wall -Werror -isysroot "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk" -arch armv7 -arch arm64 -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_8_1 -miphoneos-version-min=8.1 -fobjc-arc -include "logos/logos.h" ./obj/Tweak.xm.mm -o obj/Tweak.xm.83371b02.o rm ./obj/Tweak.xm.mm xcrun -sdk iphoneos clang++ -L/Users/angrydominican/Documents/Debfiles/Cars/theos/lib -lobjc -framework Foundation -framework CoreFoundation -ObjC++ -fobjc-exceptions -fobjc-call-cxx-cdtors -framework UIKit -framework MessageUI -framework Social -framework QuartzCore -framework CoreGraphics -framework Foundation -framework AVFoundation -framework Accelerate -framework GLKit -lsubstrate -dynamiclib -install_name "/Library/MobileSubstrate/DynamicLibraries/Cars.dylib" -isysroot "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk" -arch armv7 -arch arm64 -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_8_1 -miphoneos-version-min=8.1 -multiply_defined suppress -Wl,-segalign,4000 -o "obj/Cars.dylib.ba964c90.unsigned" obj/Tweak.xm.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLAlertView.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLAlertViewResponder.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLAlertViewStyleKit.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLButton.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLTextView.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/SCLTimerDisplay.m.83371b02.o obj//Users/angrydominican/Documents/Debfiles/Cars/theos/include/SCLAlertView/UIImage+ImageEffects.m.83371b02.o ld: warning: ignoring file /Users/angrydominican/Documents/Debfiles/Cars/theos/lib/libsubstrate.dylib, file was built for armv7 which is not the architecture being linked (arm64): /Users/angrydominican/Documents/Debfiles/Cars/theos/lib/libsubstrate.dylib Undefined symbols for architecture arm64: "_MSHookFunction", referenced from: _logosLocalCtor_c00dbd47() in Tweak.xm.83371b02.o "_MSHookMessageEx", referenced from: _logosLocalInit() in Tweak.xm.83371b02.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [obj/Cars.dylib.ba964c90.unsigned] Error 1 make[1]: *** [internal-library-all_] Error 2 make: *** [Cars.all.tweak.variables] Error 2 So to fix that i was removing the arm64 arch from the Makefile but doing so would make the deb incompatible with 64bit devices. So i figured out that it was my lib substrate.dylib that was not working right. Thus i found a new one i replaced mine with The one downloads in theos/lib. And BAM problem solved. So if you do have this issue here is a copy of that libsubstrate.dylib file you'll need. Now you should be able to make package for both 32 bit and 64 bit devices. [hide]http://iosddl.net/3e9cbcb246de0cbe/libsubstrate.dylib[/hide]
-
Fully Cracked IDA Pro There is a Password For The Install but its inside the .zip For You Guys it installs both 32-bit and 64-bit Download: [hide]http://iosddl.net/dd0ee4c5bd595589/iOSModsIDAPro.zip https://www.iosmods.com/downloads/IDA_Pro_v7.0_and_Hex-Rays_Decompiler_(ARMx64,ARM,x64,x86).zip [/hide]
-
Requirements: - Windows 7 8 or XP or Vista - Cygwin - 7-ZIP (Recommended) Instructions: 1. Download Cygwin from here: https://cygwin.com/setup-x86.exe< 32bit https://cygwin.com/setup-x86_64.exe64bit 2. Run Cygwin installer and when asked, choose "Install from Internet" then click Next. 3. Click Next another 3 more times and select a download site from the ones provided. Some are slow, some are fast. 4. Search and Install these dependencies: git (under Devel)python (under Python)perl (under Perl)make (under Devel)ca-certificates (under Net)openssh (under Net) 5. Open cygwin and run this command to automatically download theos and the iOS toolchain: 32 Bit Users: git clone -b windows https://github.com/coolstar/theos.git && mkdir -p theos/toolchain/windows git clone -b master https://github.com/coolstar/iOSToolchain4Win.git theos/toolchain/windows/iphone 64 Bit Users: git clone -b windows https://github.com/coolstar/theos.git && mkdir -p theos/toolchain/windows git clone -b x86_64 https://github.com/coolstar/iOSToolchain4Win.git theos/toolchain/windows/iphone 6. Create a new folder in the theos directory named "sdks" Download the iOS SDK From http://iphone.howett.net/sdks/ Extract the SDK to the "sdks" folder you just created. Open cygwin and start your first package!
-
-
This Should Help The New Cheaters or Modders In Training [hide]1. Start a new Patcher 2. Open the Tweak.xm file and add these lines to it: https://ghostbin.com/paste/847to 3. Like I said, I will be using Pou as an example so some stuff will be a bit different with other apps. 4. Go to /pouhack/poupref/Resources/ and edit the poupref.plist file so it looks like this: https://ghostbin.com/paste/29zdp 5. Save it and send it back to the poupref folder. 6. Now cd into your project folder and build the package. You're done! For more information on PSEditTextCell, see the iPhoneDevWiki page: http://iphonedevwiki.net/index.php/Preferences_specifier_plist#PSEditTextCell_.26_PSSecureEditTextCell[/hide]
-
Sick bro! :)
-
Nice
-
Tweak.xm From My Pocketmine Patcher [hide]