Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': <?php error_reporting(1); ini_set('display_errors', 'On'); $servername = "xxx"; $username = "xxxx"; $password = "xxxx"; $dbname = "xxxx"; try { $dbh = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password); // set the PDO error mode to exception $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); switch ($_GET['action']) Source: http://pastebin.com/raw.php?i=0TDxj5k5
↧