We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
we got a report of a critical security issue in your plugin. If the user is deleted in wordpress, but the session in the app is still active,
You have to check in validate token if user exist or not like below image
/** check user exist or not */ if( isset($token->data->user->id) ) { $user = get_userdata($token->data->user->id); if ( ! $user ) { return new WP_Error( 'jwt_auth_bad_request', 'User not found', [ 'status' => 403, ] ); } }
The text was updated successfully, but these errors were encountered:
hi @Tmeister, Plz check the above issue
Sorry, something went wrong.
No branches or pull requests
we got a report of a critical security issue in your plugin. If the user is deleted in wordpress, but the session in the app is still active,
You have to check in validate token if user exist or not like below image
The text was updated successfully, but these errors were encountered: