-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAC is invalid in $session->setId($this->encrypter->decrypt($cookie)) #212
Comments
I have this problem too.More seriously csrf-token and laravel_token seems to be constant!!! |
Same Problem here. |
I delete browser's cookies and sessions,and it works fine now. |
Thanks. That helped. |
Hello to all, The same situation appear also when you try to navigate a site in HTTP, than navigate the same site in HTTPS. My solution is to wrap the line 44, into try/catch: try{
$session->setId($this->encrypter->decrypt($cookie));
}catch (\Exception $exc){} this solves the problem. |
Hello, I fixed the issues and created a pull request to the main repo: |
Fix MAC is invalid, issue sleeping-owl#212
Hi,
I searched for this issue but i did not find anything about it.
I am having an error in two applications in the same domain ( domain/a, domain/b):
SleepingOwl/Admin/Helpers/StartSession.php line 44
"MAC is invalid" in $session->setId($this->encrypter->decrypt($cookie))
To check this error:
It seems that it is problem of 2 or more applications in the same domain
The text was updated successfully, but these errors were encountered: