Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Search the Community

Showing results for tags 'tutorial'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Forum Related
    • Rules
    • Announcements
  • iOS Tweaks & Requests
    • Jailbreak Tweaks
    • Non-Jailbreak
    • DIY Tweaks
    • Tweak Requests
    • Outdated Cheats
  • Gold
    • Gold
  • Getting Started
    • Support and Feedback
    • Tools
    • Tutorials
    • Coding Area

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 5 results

  1. These are a bunch of IDA tutorials that I found on the web and put them in this one big thread. IDA Hacking Tutorial Videos by AliKR96: [hide] https://www.youtube.com/playlist?list=PLb2_I5G7LZUlEl2A22nZWhtf9yKQcm9UP https://www.youtube.com/playlist?list=PLb2_I5G7LZUkJk6erTQYjx-zH05o2fXVy[/hide] How to hack sub_x games using GP/iGG, GDB & IDA : [hide] https://www.youtube.com/watch?v=huWOxX7XxOw[/hide] Mila432's tutorials: [hide] https://www.youtube.com/user/MrPrototypnBlood/videos Look for his tuts on there [/hide] String Hacking Tutorial: [hide] https://www.youtube.com/watch?v=2J1ldv2tSJE[/hide] Hack iPhone Games - The Guide By HBK.pdf : [hide]https://dl.dropboxusercontent.com/u/2935810/Forum%20folder/Guide%20on%20hacking%20iphone%20games.pdf These are video tutorials for HBK's guide above: [/hide] how to hack apps using IDA PRO: iDevice Game Hacking Tutorial by micral: [hide] https://www.dropbox.com/s/lnu1m4aorepqxxy/inotia2_tut.rar?dl=0[/hide] IDA String Hacking (IOS): [hide]www.youtube.com/watch?v=x8aDERKTNxU [/hide] Modify game-binaries to hack gems, cash etc.: [hide] http://ultrapowa.com/forum/archive/index.php/t-610.html[/hide] Handle sub_XXXX Problem in IDA (iOS Hacking) : [hide]www.youtube.com/watch?v=dks0LrGo5dE [/hide] ALL CREDITS GO TO THEIR RIGHTFUL OWNERS
  2. Requirements: Theos Ifile Flex/Class Dump of the App Terminal A brain Infection Instructions: [hide] Step 1: Beginning making our tweak First Type the code below in Terminal $THEOS/bin/nic.pl Select Tweak Project Name: Infection Hack (Is the name of the hack) Package Name: com.nexgenios.infectionhack (If you are submitting it a certain repo this is where you would put the repo's name. Author/Maintainer Name: BlackHippy (Your Name) MobileSubstrate Bundle filter: com.fungames.infectionrelaunched(This is going to be in the App's info.plist file) List of applications you want to terminate: - (just put a - dash) Next go to the location of you hack and open the Control File Package: com.nexgenios.infectionhack (This show already be set, but this is you package name) Name: Infection Hack (This should be already set, but this is the Name that will show up in cydia) Depends: mobilesubstrate (This should be already set, but this is what your hack depends on to run) Architecture: iphoneos-arm (This is the type of the package. DO NOT CHANGE THIS) Description: 1. 9999 cash on every dna you get, 2. Infection rate is high, 3. Lethality rate is high. (This is the description of you hack that will show up in cydia) Maintainer: BlackHippy ( Your Name) Author: BlackHippy (Your Name) Section: iHacks ( This is the section it will show under in Cydia) Step 2: Looking for features to hack Go to the location where you saved you class dumps. Search for DNAWallet.h and open it. Search for(below) and keep note of where it is because we will go back to it later. -(int)pointsToBeEarned); Next, search for DiseaseTrait.h and open it. Search for (below) and keep note of where it is because we will go back to it later. -(float)lethality; Last, search for GameStage.h and open it. Search for (below) and keep note of where it is because we will go back to it later. -(float)maxinfectivity; Step 3: Building our tweak Lets open our Tweak.xm file. //-(int)pointsToBeEarned; %hook DNAWallet (You have to hook every header) -(int)pointsToBeEarned (The function we are hacking) { return 9999; (This is the new value we are going to get from the hack) } %end (You end the header if another hack is in a different header) //-(float)lethality; %hook DiseaseTrait (Since this a different header we have to hook it again) -(float)lethality (The function we are hacking) { return 100; (This is the new value we are going to get from the hack) } %end (Ends our headers so we can go to a different one) //-(float)maxInfectivity; %hook GameStage (Since this a different header we have to hook it again) -(float)maxInfectivity { return 999; (This is the new value we are going to get from the hack) } %end (Ends our headers) Step 4: Compiling our hack Open terminal and cd into your folder(ex./var/mobile/infectionhack/) To comply it to see if you have any errors type make. If you don't have any errors type make package to make a deb. [/hide]
  3. 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]
  4. 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
×
×
  • Create New...