06-12-2015, 04:05 PM
People reported seeing hashes cracked but 0 returned to the server probably run a newer version of php where HTTP_RAW_POST_DATA is deprecated.
To see if you are affected look for "PHP Notice: Undefined variable: HTTP_RAW_POST_DATA in server.php on line 641i" in your http daemon logs.
I'm not 'skilled' in PHP, but I changed the lines in server.php from;
if (strlen($HTTP_RAW_POST_DATA)>0) {
$data=explode($newline,$HTTP_RAW_POST_DATA);
into the new method;
if (strlen(file_get_contents("php://input"))>0)
$data=explode($newline,file_get_contents("php://input"));
To see if you are affected look for "PHP Notice: Undefined variable: HTTP_RAW_POST_DATA in server.php on line 641i" in your http daemon logs.
I'm not 'skilled' in PHP, but I changed the lines in server.php from;
if (strlen($HTTP_RAW_POST_DATA)>0) {
$data=explode($newline,$HTTP_RAW_POST_DATA);
into the new method;
if (strlen(file_get_contents("php://input"))>0)
$data=explode($newline,file_get_contents("php://input"));