<div dir="ltr">HI Everyone,<div><br></div><div>We are trying create a GuardianKey plugin to phpMyAdmin. However, we have doubts related to the best way to do this and the best point in the code for this integration.<br><br>GuardianKey is a solution to protect systems against authentication attacks. It uses Artificial Intelligence and analyses the user's behavior, threat intelligence and psychometrics (or behavioral biometrics). The protected system (in the concrete case, phpMyAdmin) must send an event via REST for the GuardianKey on each login attempt. More info at <a href="https://guardiankey.io/services/guardiankey-auth-security-lite/">https://guardiankey.io/services/guardiankey-auth-security-lite/</a> .<br><br>The best way to integrate would be on having a hook in the procedure that process the user credentials submission in phpMyAdmin (the script that receives the POST), something such as:<br><br>if(POST IN AUTH FORM) {<br>boolean loginFailed = checkLogin();<br>GuardianKeyEvent event = createEventForGuardianKey(username,loginFailed);<br>boolean GuardianKeyValidation = checkGuardianKeyViaREST(event);<br>if(GuardianKeyValidation){<br>// Allow access<br>} else {<br>// Deny access<br>}<br>}<br><br>Where is the best place to create this integration? Is there a way to create a hook for this purpose? Should we create an extension?<br><br>Any help is welcome.<br><br>Thank you in advance.<br><br>Best regards,<br>Gesiel<br></div></div>