Jump to content

superkhung

Member
  • Posts

    18
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 15 Pro Max
  • iOS Version
    8.3.0
  • Gender
    Not Telling
  • Location
    Viet Nam

Recent Profile Visitors

1,272 profile views

superkhung's Achievements

Newbie

Newbie (1/14)

  • Popular

Recent Badges

258

Reputation

  1. an addon for lldb like @iOSv64 said. if you want more "GUI" like, take a look at Voltron https://github.com/snare/voltron
  2. just want to share a little lldb python script for iOS debugging life https://github.com/superkhung/lldbinit loves fG!'s .gdbinit style.
  3. gonna try, thanks
  4. Looks like you run the app without argument, try to run "app.exe filename" in console (Command Prompt not Powershell) or just drag file to the exe.
  5. Got this from reversing iOS binary, there's no Android version at that time.
  6. ​ you can get this by looking for calls to Rfc2898DeriveBytes, you can see this initVector in binary, passphare generated by a function named GeneratePassphrase, it get first 8 bytes from base64 encoded string "PlayerData". It's json data, just use a json editor for easy edit
  7. so your file is not a fat binary. you can check it with lipo -info or otool -hv
  8. What's your idevice ? If it's running arm64, u can only debug app with lldb and debugserver (can find it in xcode) since apple only support gdb up to armv7
  9. it's not putty, seems that you are trying gdb on an device that it cpu arch wont support by gdb (should be arm64). Use lldb instead. U can see this in Apple's code switch (info.osabi) { case GDB_OSABI_DARWIN: info.bfd_arch_info = bfd_lookup_arch (bfd_arch_arm, 0); break; case GDB_OSABI_DARWINV6: info.bfd_arch_info = bfd_lookup_arch (bfd_arch_arm, bfd_mach_arm_6); break; case GDB_OSABI_DARWINV7: info.bfd_arch_info = bfd_lookup_arch (bfd_arch_arm, bfd_mach_arm_7); break; case GDB_OSABI_DARWINV7F: info.bfd_arch_info = bfd_lookup_arch (bfd_arch_arm, bfd_mach_arm_7f); break; case GDB_OSABI_DARWINV7K: info.bfd_arch_info = bfd_lookup_arch (bfd_arch_arm, bfd_mach_arm_7k); break; default: warning ("Unrecognized osabi %d in arm_set_osabi_from_host_info", (int) info.osabi); }
  10. Gonna dump unity IL code from memory to get a full Assembly-CSharp.dll It embedded in main binary, a nice way to prevent .net decompiler user
  11. A little tool to decrypt Fallout Shelter's .sav (saved game). Usage: FOSDecrypt.exe VaultFile.sav Edit your VaultFile.sav using any json editor and run decrypt again to encrypt it then copy to your idevice and taste. If you beautify your json to edit, remember to minify (compress) before encrypt it back. Run screen shot Edited game Edit: included source code. Download [Hidden Content]
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines