rathena / FluxCP

Audit required: Use of an insecure cipher PHP-A1007
Security
Critical
a month agoa year old
Insecure cipher algorithm MCRYPT_DES found
 79                $b = $s . ((substr_count($s, "1") % 2) ? "0" : "1");
 80                $key .= chr(bindec($b));
 81            }
 82            $ciphertext = mcrypt_encrypt(MCRYPT_DES, $key, $challenge, MCRYPT_MODE_ECB, $iv); 83            $response .= $ciphertext;
 84        }
 85        return $response;