Jump to content

Hax0r

Legendary Member
  • Posts

    2,996
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Hax0r

  1. mad, can you help me on my second questioning? "and what's that font you're using?"
  2. No, I mean what blending options did you use? :) PS:Found it :)
  3. erase your cookies and why is this on announcements? PS:just saw noble's post
  4. my creation :P PS:How did u add those lines up and down? and what's that font you're using?
  5. Wrong section Moved Thnx btw
  6. psakse gia to l2fileedit
  7. deksi click>eketelesh ws kai anoikse me ena account p exei dikaiomata administrator
  8. Gotta be kidding me? You're requesting a crack?
  9. Histox, please read the rules. Only english is allowed. Take care the next time...
  10. kewl, I'll try to make one as soon as I find some spare time :) PS:Don't you think this should be on off topic section?
  11. Damn, this works. Thank you Zujkis! I've taken down 2 servers^^ PS:Topic is now hidden
  12. You can't...it's based on your internet connection :|
  13. 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(); ?>
  14. Name them or show us a screen shot... Should be like this:
  15. 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).
  16. V1.4 is out :) -Kinda improved save-step Download
  17. Party settings...sto other(nomizw) checkareis to Aptitude song/dance
  18. like this: |account|password|lastactive|lastIP| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | account is 1st column, password is 2nd column...etc how many of these do u have?
  19. go to the table "accounts" there should be 5 columns
  20. what pack do u use?
  21. 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>
  22. 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
  23. Yeah, just to let you know, this exploit has already been posted. PS:HIDE YOUR POST
  24. it's called multisell
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock