You are not logged in.
Pages: 1
I want to know how to create a plugin that complies with CSRF, this plugin should consist of a form that is already created in my GLPI, with that data can generate a report in word format, with a custom template that I already have.
Offline
For CSRF, you just need to include a hidden input named "_glpi_csrf_token" in every form with the value set to a unique, generated CSRF token. These tokens can be generated from "Session::getNewCSRFToken" in PHP or the "csrf_token()" function in Twig templates.
In at least GLPI 10 and later, CSRF is enforced so if you don't protect your forms correctly, GLPI will tell you with an error message when you try to submit the form.
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
Pages: 1