halp

From sixx, 1 Year ago, written in Plain Text, viewed 98 times.
URL https://paste.bugabuse.net/view/23f94972 Embed
Download Paste or View Raw
  1. $password=$_POST['password'];
  2. $hash = md5 ( md5 ('SALT5') . md5 ($password));
  3.  
  4. $con=mysqli_connect("localhost","a1948929_hash","this_isnt_really_my_password","a1948929_hash");
  5.  
  6.  mysqli_query($con,"INSERT INTO hash (id, hashed, unhashed)
  7. VALUES ('NULL', '$hash', '$password')");
  8.  
  9.  
  10. mysqli_close($con);

Reply to "halp"

Here you can reply to the paste above