Jump to content

regenx

Members
  • Posts

    137
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by regenx

  1. And for login? Someone can share a login script for both WOTLK and Cataclysm (I mean for expansion 2 and 3). Thank you. For Login script you just need to connect to auth, right? Who can help me?
  2. Wh What do you mean with prepared statements? btw... -- this is wrong way $string = mysql_real_escape_string($string); $string = stripslashes($string); $string = strip_tags($string); -- this is safe way $string = stripslashes($string); // Keep your usernames clean $string = strip_tags($string); // Kill all tags like html tags, etc.. $string = mysql_real_escape_string($string); // Anti-injection
  3. <?php function madSafety($string) { $string = stripslashes($string); $string = strip_tags($string); $string = mysql_real_escape_string($string); return $string; } Your php register code here.... ..... Your end code ..... ?> Something like that .... Good Luck & Have Fun!
  4. Yes, this function is perfect! No programs or php/mysql programmer can not pass such a function ;)
  5. If you intend to use this simple php script don't forget this secure - It's for your own good and for all users of your site.
  6. Hi, with this php function you can stop 99% from SQL injections on your php register page. From today you are safe! Trust me. I recommend you to use this function... function madSafety($string) { $string = stripslashes($string); $string = strip_tags($string); $string = mysql_real_escape_string($string); return $string; }
  7. LOL, where is mysql_real_escape_string in your syntax ? http://www.codehive.net/Secure-Input-and-Preventing-MySQL-Injection-2.html Have fun!
  8. Nice program. Ty for share with us.
  9. LOL only vulnerable querys Where are the mysql_real_escape_strings ?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.