Commit bb0967cc by Taylor Otwell

throw exception if padding is invalid.

parent 1324ba36
......@@ -131,7 +131,20 @@ class Crypter {
{
$pad = ord($value[($length = Str::length($value)) - 1]);
return substr($value, 0, $length - $pad);
if ($pad and $pad < static::$block)
{
// If the correct padding is present on the string, we will remove
// it and return the value. Otherwise, we'll throw an exception
// as the padding appears to have been changed.
if (preg_match('/'.chr($pad).'{'.$pad.'}$/', $value))
{
return substr($value, 0, $length - $pad);
}
throw new \Exception("Decryption error. Padding is invalid.");
}
return $value;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment