A forum for reverse engineering, OS internals and malware analysis 

Forum for analysis and discussion about malware.
 #29478  by benkow_
 Mon Oct 24, 2016 8:25 am
p1nk wrote:Looks like they didn't learn to properly handle user input:
Code: Select all
  // Create query
  $q = "SELECT * FROM `dbUsers` WHERE `username`='".$_POST["username"]."' AND `password`='".$_POST["password"]."' LIMIT 1";
  // Run query
  $r = mysql_query($q);
If it were only this problem.... ^^
  • 1
  • 21
  • 22
  • 23
  • 24
  • 25