Category: Phalcon Security

  • Cross-Site Request Forgery (CSRF) protection

    CSRF protection is against the form elements such as in user registration or adding comments are vulnerable to this attack. CSRF is created to prevent the form values from being sent outside our application. To fix this, we generate a random nonce (token) in each form. We add the token in the session and then…

  • Phalcon Security

    Phalcon provides the common security tasks to the developers such as: Password Hashing It is a technique where password is stored in the encrypted form in the database. If the password is stored in the plain text format then any intruder that has the access to the database can easily view the passwords. To avoid…