Git Product home page Git Product logo

Comments (4)

cdmckay avatar cdmckay commented on September 14, 2024

I have not, but if you want to do it, feel free to send a pull request and I'll take a look.

from pajama.

whatsnewsisyphus avatar whatsnewsisyphus commented on September 14, 2024

Advanced implementation with string sanitization and key generation on a case by case basis - http://stefangabos.ro/php-libraries/zebra-form/

Super simple implementation, better than nothing

key generator - formkey_class.php

<?php

/* Source-ish: http://net.tutsplus.com/tutorials/php/secure-your-forms-with-form-keys/ */

//You can of course choose any name for your class or integrate it in something like a functions or base class
class formKey
{
    //Here we store the generated form key
    private $formKey;
    //Here we store the old form key (more info at step 4)
    private $old_formKey;
    //The constructor stores the form key (if one excists) in our class variable
    function __construct()
    {
        //We need the previous key so we store it
        if(isset($_SESSION['form_key']))
        {
            $this->old_formKey = $_SESSION['form_key'];
        }
    }
    //Function to generate the form key
    private function generateKey()
    {
        //Get the IP-address of the user
        if ($_SERVER['HTTP_CLIENT_IP'])
            $ip = $_SERVER['HTTP_CLIENT_IP'];
        else if($_SERVER['HTTP_X_FORWARDED_FOR'])
            $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
        else if($_SERVER['HTTP_X_FORWARDED'])
            $ip = $_SERVER['HTTP_X_FORWARDED'];
        else if($_SERVER['HTTP_FORWARDED_FOR'])
            $ip = $_SERVER['HTTP_FORWARDED_FOR'];
        else if($_SERVER['HTTP_FORWARDED'])
            $ip = $_SERVER['HTTP_FORWARDED'];
        else if($_SERVER['REMOTE_ADDR'])
            $ip = $_SERVER['REMOTE_ADDR'];
        else
            $ip = 'UNKNOWN';
        //We use mt_rand() instead of rand() because it is better for generating random numbers.
        //We use 'true' to get a longer string.
        //See http://www.php.net/mt_rand for a precise description of the function and more examples.
        $uniqid = uniqid(mt_rand(), true);
        //Return the hash
        return md5($ip . $uniqid);
    }
    //Function to output the form key
    public function outputKey()
    {
        //Generate the key and store it inside the class
        $this->formKey = $this->generateKey();
        //Store the form key in the session
        $_SESSION['form_key'] = $this->formKey;
        //Output the form key
        echo "<input type='hidden' name='form_key' id='form_key' value='".$this->formKey."' />";
    }
    //Function that validated the form key POST data
    public function validate()
    {
        //We use the old formKey and not the new generated version
        if (isset($_POST['form_key']) && $_POST['form_key'] == $this->old_formKey)
        {
            //The key is valid, return true.
            return true;
        }
        else
        {
            //The key is invalid, return false.
            return false;
        }
    }
}
?>

Add to beginning of html document with the form, change error handling to fit yours, just changes a boolean at the moment

<?php
    // Form session security
    // Start the session
    session_start();
    // Require the class
    require('formkey_class.php');
    // Start the class
    $formKey = new formKey();
    $error = False;
    // Is request?
    if($_SERVER['REQUEST_METHOD'] == 'POST')
    {
        // Validate the form key
        if(!isset($_POST['form_key']) || !$formKey->validate())
        {
            // Form key is invalid, show an error
            $error = True;
        }
    }
?>

You output key into form as a hidden field

<?php $formKey->outputKey(); ?>

from pajama.

cdmckay avatar cdmckay commented on September 14, 2024

I feel like XSRF is orthogonal to what Pajama is intended to handle. That is, I think Pajama should only be used to check that from values are within certain constraints.

Is there any advantage to integrating an XSRF checker directly into Pajama rather than doing it separately?

from pajama.

whatsnewsisyphus avatar whatsnewsisyphus commented on September 14, 2024

Perhaps you are right, it might be better to treat php validation as string validation alone. I was conceptualizing of it more in terms of a complete php base on which jq_val would sprinkle visual magic.

from pajama.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.