Last active
March 29, 2023 10:46
-
-
Save rweichler/714b7288d3b140299908 to your computer and use it in GitHub Desktop.
HOOK C++ FUNCTION
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> // for cout and cin | |
using namespace std; | |
class Cat // begin declaration of the class | |
{ | |
public: // begin public section | |
Cat(int initialAge); // constructor | |
~Cat(); // destructor | |
int GetAge(); // accessor function | |
void SetAge(int age); // accessor function | |
void Meow(); | |
private: // begin private section | |
int itsAge; // member variable | |
char * string; | |
}; | |
// constructor of Cat, | |
Cat::Cat(int initialAge) | |
{ | |
itsAge = initialAge; | |
string = new char[10]; | |
} | |
// GetAge, Public accessor function | |
// returns value of itsAge member | |
int Cat::GetAge() | |
{ | |
return itsAge; | |
} | |
Cat::~Cat(){} | |
// Definition of SetAge, public | |
// accessor function | |
void Cat::SetAge(int age) | |
{ | |
// set member variable its age to | |
// value passed in by parameter age | |
itsAge = age; | |
} | |
// definition of Meow method | |
// returns: void | |
// parameters: None | |
// action: Prints "meow" to screen | |
void Cat::Meow() | |
{ | |
cout << "Meow.\n"; | |
} | |
// create a cat, set its age, have it | |
// meow, tell us its age, then meow again. | |
int main() | |
{ | |
dlopen("/var/root/tmp/cat.dylib", RTLD_NOW); | |
int Age; | |
cout<<"How old is Frisky? "; | |
cin>>Age; | |
Cat Frisky(Age); | |
Frisky.Meow(); | |
cout << "Frisky is a cat who is " ; | |
cout << Frisky.GetAge() << " years old.\n"; | |
Frisky.Meow(); | |
Age++; | |
Frisky.SetAge(Age); | |
cout << "Now Frisky is " ; | |
cout << Frisky.GetAge() << " years old.\n"; | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SDK=/var/root/code/iPhoneOS7.1.sdk | |
CCPP=clang++ -isysroot $(SDK) | |
CC=clang -isysroot $(SDK) | |
all: cat cat.dylib | |
clean: | |
rm -f cat cat.dylib | |
cat: cat.cpp | |
$(CCPP) cat.cpp -o cat | |
cat.dylib: tweak.m | |
$(CC) tweak.m /usr/lib/libsubstrate.dylib -I/usr/include -dynamiclib -o cat.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <substrate.h> | |
#import <stdio.h> | |
__attribute__((__unused__)) static void (*orig_setAge)(void *self, int age); | |
static void hook_setAge(void *self, int age) | |
{ | |
orig_setAge(self, 2000); | |
} | |
MSHook(void, setAge, void *self, int age) | |
{ | |
_setAge(self, 2000); | |
} | |
__attribute__((constructor)) | |
static void initialize() | |
{ | |
void *func = dlsym(RTLD_DEFAULT, "_ZN3Cat6SetAgeEi"); | |
//this one crashes | |
//MSHookFunction(func, (void *)hook_setAge, (void **)orig_setAge); | |
//this one works | |
MSHookFunction(func, MSHake(setAge)); | |
printf("hooked!!!!111111\n"); | |
} |
arm64 c++ use X8 reg to save this ptr
MSHookFunction use X8 reg to save func ptr
u wot m8??
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
im
fucking
_dumb_.
GG, 2 hours of my life