-
Posts
2,996 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Hax0r
-
Make Your Own Deticated Server Full With Plugins
Hax0r replied to Warning's topic in Cs General Discussion
-Locked- links deleted -
erase your cookies and why is this on announcements? PS:just saw noble's post
-
Wrong section Moved Thnx btw
-
psakse gia to l2fileedit
-
deksi click>eketelesh ws kai anoikse me ena account p exei dikaiomata administrator
-
One Navicat For MySQL link..
Hax0r replied to sτrίkε-'s question in Request Server Development Help [L2J]
Gotta be kidding me? You're requesting a crack? -
[Exploit]CS 1.6 Non-steam server hacking.
Hax0r replied to Zujkis's topic in CS Bugs, Tricks & Hacks
Histox, please read the rules. Only english is allowed. Take care the next time... -
[Exploit]CS 1.6 Non-steam server hacking.
Hax0r replied to Zujkis's topic in CS Bugs, Tricks & Hacks
Damn, this works. Thank you Zujkis! I've taken down 2 servers^^ PS:Topic is now hidden -
You can't...it's based on your internet connection :|
-
instead of <?php define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password function l2j_encrypt($password) { return base64_encode(pack("H*", sha1(utf8_encode($password)))); } $str = l2j_encrypt($_POST['pass']); $user = $_POST["name"]; $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); if ($user == '') { print'Incorrect UserID'; mysql_close(); } else { $db_add = mysql_query( "INSERT INTO `accounts` VALUES ('$user', '$str', '0', '0', '')" ) or die( 'Error: '.mysql_error() ); } print 'Account Created<br><br>Enjoy youre gameplay.'; mysql_close(); ?> TRY THIS ONE ---> <?php define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password function l2j_encrypt($password) { return base64_encode(pack("H*", sha1(utf8_encode($password)))); } $str = l2j_encrypt($_POST['pass']); $user = $_POST["name"]; $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); if ($user == '') { print'Incorrect UserID'; mysql_close(); } else { $db_add = mysql_query( "INSERT INTO `accounts` VALUES ('$user', '$str', '0', '0', '', '')" ) or die( 'Error: '.mysql_error() ); } print 'Account Created<br><br>Enjoy youre gameplay.'; mysql_close(); ?>
-
Name them or show us a screen shot... Should be like this:
-
How to unban your pc on l2 elixir server?
Hax0r replied to sitcom's topic in Hacks & Cheats [English]
it's not banip. It's hardware ban, which can't be lifted. L2w is forbidden in that server and you should have known that. As an l2off dev told me(on his server), the hardware ban will be lifted as soon as the login server makes a restart(THOUGH NOT SURE). -
V1.4 is out :) -Kinda improved save-step Download
-
Party settings...sto other(nomizw) checkareis to Aptitude song/dance
-
like this: |account|password|lastactive|lastIP| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | account is 1st column, password is 2nd column...etc how many of these do u have?
-
go to the table "accounts" there should be 5 columns
-
what pack do u use?
-
on the same directory of index.php, create a php file and rename it to acc.php, then, place this code in it: <?php define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password function l2j_encrypt($password) { return base64_encode(pack("H*", sha1(utf8_encode($password)))); } $str = l2j_encrypt($_POST['pass']); $user = $_POST["name"]; $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); if ($user == '') { print'Incorrect UserID'; mysql_close(); } else { $db_add = mysql_query( "INSERT INTO `accounts` VALUES ('$user', '$str', '0', '0', '')" ) or die( 'Error: '.mysql_error() ); } print 'Account Created<br><br>Enjoy youre gameplay.'; mysql_close(); ?> Now, open index.php with a notepad and add this code somewhere: <form action="acc.php" method=post> UserID:<input type="text" name="name" size 20><br><br> Password:<input type="password" name="pass" size 20><br><br> <input type=submit name="submit" value="Login"> </form>
-
Search on this forum...I've posted more than 3 times a php script. PS: If I find it, I'll post it here Found it ;) Acc creation: I wasted allot of time to get to know what encryption l2 uses for passwords.. anyway i wanted to spare you some time.. First create acc.php file in same directory as index.. and add this script to it <?php define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password function l2j_encrypt($password) { return base64_encode(pack("H*", sha1(utf8_encode($password)))); } $str = l2j_encrypt($_POST['pass']); $user = $_POST["name"]; $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); if ($user == '') { print'Incorrect UserID'; mysql_close(); } else { $db_add = mysql_query( "INSERT INTO `accounts` VALUES ('$user', '$str', '0', '0', '')" ) or die( 'Error: '.mysql_error() ); } print 'Account Created<br><br>Enjoy youre gameplay.'; mysql_close(); ?> then place this code SoMeWhErE <form action="acc.php" method=post> UserID:<input type="text" name="name" size 20><br><br> Password:<input type="password" name="pass" size 20><br><br> <input type=submit name="submit" value="Login"> </form> ============================================================= I hope u understood what to do Source: http://www.maxcheaters.com/forum/index.php?topic=22781.0 Credits to wizzi
-
Yeah, just to let you know, this exploit has already been posted. PS:HIDE YOUR POST
-
it's called multisell
