Jump to content

[Tutorial] How to create your own unban tool!


11 posts in this topic

Recommended Posts

Posted

Every cheater gets often  banned on games or apps....
Banning A User Has Multi Methods,

You can be unbanned by :

-simply by logging out of your account

-reinstalling your app

But sometimes it doesnt work :@

This TuT helps you make a deb which unbans you by editing keychain.

Requirements :

-Theos and a Brain

 

Tutorial :

Open /var/Keychains/keychain-2.db look for your game in agrp section in the table called genp

Assume we found the record which has a agrp value called appname.KEYCHAIN
Create a project and type in your tweak.xm:

#import "sqlite3.h" 
#import <string.h> 
int main(int argc,const char * argv[], char **envp){
sqlite3* database;
const char* sqlitePaths = "/var/Keychains/keychain-2.db";
const char * command;
sqlite3_open(sqlitePaths, &database); 
command = "delete from genp where agrp='appname.KEYCHAIN'" ; 
sqlite3_exec(database,command,NULL, NULL,NULL);
sqlite3_close(database);

return 0;
}

in your  MakeFile, Add this at the top  : LDFLAGS =./libsqlite3.dylib

Compile your project. with "make package"

and you get your first unban tool :):snoop:

Posted

How do you know this? :D

:D . btw removing the keychain of apptrailers haven't worked :( . i don't know how this app works. i have changed Ip either it doesnt work >_>

Posted (edited)

Have you tried this? Cause i'm getting a sqlite result code 21 which is 

#define SQLITE_MISUSE 21 /* Library used incorrectly */

And nothing is being removed from the keychain-2.db file

Updated by Gh0stByte
Posted

Have you tried this? Cause i'm getting a sqlite result code 21 which is 

 

#define SQLITE_MISUSE 21 /* Library used incorrectly */

And nothing is being removed from the keychain-2.db file
You got the correct files for include?
Posted

You got the correct files for include?

 

Yep, if you use 

 

sqlite3_errmsg(database)

 

It'll tell you that the real error is that it can't open up the database

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • 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