1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/app
Dane Everitt 659c33f0e8
Fixes a bug that allows a user to bypass 2FA authentication requirements
This bug was reported to us by a user (@Ferry#1704) on Discord on
Monday, November 7th, 2016.

It was disclosed that it was possible to bypass the 2FA checkpoint by
clicking outside of the modal which would prompt the modal to close,
but not submit the form. The user could then press the login button
which would trigger an error. Due to this error being triggered the
authentication attempt was not cancelled. On the next page load the
application recognized the user as logged in and continued on to the
panel.

At no time was it possible to login without using the correct email
address and password.

As a result of this bug we have re-factored the Authentication code for
logins to address the persistent session. Previously accounts were
manually logged back out on 2FA failure. However, as this bug
demonstrated, causing a fatal error in the code would prevent the
logout code from firing, thus preserving their session state.

This commit modifies the code to use a non-persistent login to handle
2FA checking. In order for the session to be saved the application must
complete all portions of the login without any errors, at which point
the user is persistently authenticated using Auth::login().

This resolves the ability to cause an exception and bypass 2FA
verification.
2016-11-07 15:55:57 -05:00
..
Console Fix missing environment variables relating to queues 2016-10-30 18:34:50 -04:00
Events Add server deletion to a queue. 2016-10-27 20:05:29 -04:00
Exceptions Fix typo in exception handler 2016-09-07 18:25:11 -04:00
Http Fixes a bug that allows a user to bypass 2FA authentication requirements 2016-11-07 15:55:57 -05:00
Jobs Add server deletion to a queue. 2016-10-27 20:05:29 -04:00
Listeners Add server deletion to a queue. 2016-10-27 20:05:29 -04:00
Models Validate password on reset according to rules (#158) 2016-10-30 16:02:39 -04:00
Notifications Send notification when server is created for user 2016-10-14 15:58:52 -04:00
Policies Add permissions for filemanager stuff to subusers 2016-10-06 20:29:21 -04:00
Providers Add server deletion to a queue. 2016-10-27 20:05:29 -04:00
Repositories Correct password setting for MySQL user 2016-11-04 20:47:40 -04:00
Services fix wording in notification event 2016-10-14 16:25:57 -04:00
Transformers Add back API (#80) 2016-09-05 16:21:36 -04:00