EasyCSRF is a simple, standalone CSRF protection library written in PHP. It can be used to protect your forms from Cross Site Request Forgery attacks.
- PHP 7.3+
Install via composer:
composer require gilbitron/easycsrf
Run composer install then use as normal:
require'vendor/autoload.php';
$sessionProvider = newEasyCSRF\NativeSessionProvider();
$easyCSRF = newEasyCSRF\EasyCSRF($sessionProvider);To use EasyCSRF first you need to generate a token:
$sessionProvider = newEasyCSRF\NativeSessionProvider();
$easyCSRF = newEasyCSRF\EasyCSRF($sessionProvider);
$token = $easyCSRF->generate('my_token');You then include this token with any forms you create:
<form>
...
<inputtype="hidden" name="token" value="<?php echo $token; ?>">
...
</form>Then before you do any data processing, you check the token is valid:
useEasyCSRF\Exceptions\InvalidCsrfTokenException;
try {
$easyCSRF->check('my_token', $_POST['token']);
} catch(InvalidCsrfTokenException$e) {
echo$e->getMessage();
}You can set a time limit on tokens by passing a timespan (in seconds) to the check method. Tokens older than the timespan will not be valid.
// Example 1 hour expiration$easyCSRF->check('my_token', $_POST['token'], 60 * 60);Tokens can be made reusable and not one-time only (useful for ajax-heavy requests).
// Make token reusable$easyCSRF->check('my_token', $_POST['token'], null, true);Your app might use a third party library for managing sessions, or you may want to store tokens somewhere other
than $_SESSION (as the NativeSessionProvider does). In this case you can create a custom SessionProvider
and use that when instantiating EasyCSRF.
<?phpuseEasyCSRF\Interfaces\SessionProvider;
class CustomSessionProvider implements SessionProvider
{
/** * Get a session value. * * @param string $key * @return mixed */publicfunctionget($key)
{
// Return your stored data
}
/** * Set a session value. * * @param string $key * @param mixed $value * @return void */publicfunctionset($key, $value)
{
// Store your data
}
}$sessionProvider = newCustomSessionProvider();
$easyCSRF = newEasyCSRF\EasyCSRF($sessionProvider);EasyCSRF was created by Gilbert Pellegrom from Dev7studios. Released under the MIT license.