
AnotherLurker
Senior Member-
Posts
1,093 -
Joined
-
Last visited
Everything posted by AnotherLurker
-
You need to edit the environment variables for Theos to work properly: export THEOS=/var/theos export THEOS_MAKE_PATH=/var/theos/makefiles
-
You can hook a swift class in Logos like this: %hook AnyRandomNameHere - (id)description { return %orig(); } %end %ctor { %init(AnyRandomNameHere = objc_getClass("ClassNameWithADotHere")); }
-
Help/Support now im really not happy Anti deballs protection
AnotherLurker replied to Taylor Meyer's topic in Help & Support
You haven't properly followed the instructions in my tutorial then; Edit ~/.bash_profile with the environment variables and restart Cygwin Terminal. -
Help/Support headers for cygwin theos windows
AnotherLurker replied to Taylor Meyer's topic in Help & Support
Is this a question about my Windows-Cygwin Theos installation tutorial? -
Help/Support now im really not happy Anti deballs protection
AnotherLurker replied to Taylor Meyer's topic in Help & Support
You don't have Theos properly setup Before running make, just run export THEOS=/var/theos/ export THEOS_MAKE_PATH=/var/theos/makefiles/ (This is only a temporary solution) -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
Yes, you should be reading and following instructions properly -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
The issue should have been resolved if you've installed Python arm64 on his repo -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
Yea you need to install the arm64 packages -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
Fixed -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
No problem! -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker replied to AnotherLurker's topic in Tutorials
Yes, looks is the only difference... but it can show a lot more useful information through the looks. For example, when inside project-folders with .git, it shows changes placed, commits difference, etc. I myself have only used this for some time, still finding out more as time goes on. -
Tutorial Installing Powerline-shell on a Jailbroken Device
AnotherLurker posted a topic in Tutorials
What is Powerline-shell? Powerline-shell is a powerline-based command prompt for your shell (The default shell is bash). When configured it can add a nice look to your terminal. Here's an example: Requirements: - Jailbroken Device - Filesystem Manager (iFile, Filza, iFunbox, iTools, etc) - Terminal - An Internet connection - 5 - 10 minutes of your time Instructions: [Hidden Content] -
Help/Support now im really not happy Anti deballs protection
AnotherLurker replied to Taylor Meyer's topic in Help & Support
Make one -
Help/Support now im really not happy Anti deballs protection
AnotherLurker replied to Taylor Meyer's topic in Help & Support
Download https://github.com/sharedRoutine/letmedebug, go into letmedebug.plist, and change the identifier to com.apple.UIKit (dylib loaded into all applications) Then execute the following: cd /path/to/letmedebug/ make package A debian file should be inside "packages" directory inside letmedebug, which you should install -
You can just download the "patched" sdk with private frameworks; https://www.github.com/theos/sdks.git
-
Wrong section, this cheat belongs in "Other Cheats"
-
Guide [Breaking Security]How to disable syscall (anti-debugging protection)
AnotherLurker replied to a topic in Tutorials
You can just compile this code (with com.apple.UIKit as the bundleID in a .plist), and have syscall and ptrace disabled in every app -
Use classdump-dyld instead, it should be on the bigness repository
-
Try following this tutorial for installing Theos, Castix's tutorial is quite outdated and installs an older version of Theos
-
Help/Support Ughhh, compiling tweak error -_-
AnotherLurker replied to Joka's topic in Help & Support
Actually, there is a fix. The problem is your hooks are for Swift classes (at most, swift classes with the @objc attribute) It's perfectly possible to hook these methods in Swift (partially Objective-C), but Logos (The language behind %hook) has yet to support these kinds of Swift Classes. This issue has been experienced by other people looking to hook Swift code, and they have opened an issue of Theos's official github. Kirb (one of the developer behind Theos) has promised to allow the hooking of Swift classes in Logos, but in the meanwhile, you should use this workaround by wizages