一个随机数管理器 PHP 库,可用于防止 CSRF 和重放攻击。
我们可能会找到几篇文章和视频来解释随机数试图防止的漏洞:
然而,许多 PHP nonces 库似乎限制太多,再加上一些框架,难以使用或难以理解它们是如何工作的。
pedroac/nonce
试图解决这些问题。
它允许选择任何 PSR-16 实现来临时存储随机数、随机数值生成器、过期间隔,甚至使用DateTime
提供程序来覆盖时钟系统(此功能用于单元测试)。
它还提供帮助程序来管理输入、生成随机随机数名称和值、根据随机数验证提交的令牌并生成 HTML 元素。
运行命令:
composer require pedroac/nonce
HTML 表单可以使用 PHP 内置 Web 服务器进行测试。
从php/examples
文件夹运行命令:
php -S localhost:8000
在浏览器中使用 URL http://localhost:8000/。
<?php
require __DIR__ . ' /../vendor/autoload.php ' ;
use Symfony Component Cache Simple FilesystemCache ;
use pedroac nonce NoncesManager ;
use pedroac nonce Form HtmlNonceField ;
use pedroac nonce Form NonceForm ;
// this handles automatically the input and nonce management
$ form = new NonceForm (
' token ' , // the HTML input name
new NoncesManager (
new FilesystemCache // a PsrSimpleCacheCacheInterface implementation
)
);
// this will be used to generate a HTML input element
$ htmlField = new HtmlNonceField ( $ form );
if ( $ form -> isSubmittedValid ()) {
/**
* handle the success:
* - if all form input is valid, show success page;
* - otherwise, show an error page and the form again;
*/
}
if ( $ form -> isSubmittedInvalid ()) {
/**
* handle failure:
* - don't show the form again;
* - show an error message;
*/
}
<form method=" POST ">
<?= $ htmlField ?>
<!-- more HTML -->
<input type="submit" name="myform" value="Submit" />
</form>
当使用NonceForm
类验证令牌时,随机数会自动过期。
<?php
require __DIR__ . ' /../vendor/autoload.php ' ;
use Symfony Component Cache Simple FilesystemCache ;
use pedroac nonce NoncesManager ;
$ manager = new NoncesManager ( new FilesystemCache );
$ isValidToken = false ;
$ isValidForm = false ;
$ wasSubmitted = filter_has_var ( INPUT_POST , ' myform ' );
$ tokenName = filter_input ( INPUT_POST , ' token_name ' );
$ tokenValue = filter_input ( INPUT_POST , ' token_value ' ) ?? '' ;
if ( $ tokenName ) {
$ isValidToken = $ manager -> verifyAndExpire ( $ tokenName , $ tokenValue );
}
if ( $ wasSubmitted && $ isValidToken ) {
// validate input
}
if (! $ wasSubmitted || (! $ isValidForm && $ isValidToken )) {
$ nonce = $ manager -> create ();
}
<?php if ( $ nonce ) : ?>
<input type="hidden"
name="token_name"
value=" <?= htmlspecialchars ( $ nonce -> getName ()) ?> " />
<input type="hidden"
name="token_value"
value=" <?= htmlspecialchars ( $ nonce -> getValue ()) ?> " />
<input type="submit" name="myform" value="Submit" />
<?php endif ; >
除了随机数缓存存储之外,还可以选择随机随机数值生成器和过期间隔:
<?php
require __DIR__ . ' /../vendor/autoload.php ' ;
use Symfony Component Cache Simple ArrayCache ;
use pedroac nonce NoncesManager ;
use pedroac nonce Random HexRandomizer ;
$ manager = new NoncesManager (
new ArrayCache ( 60 ),
new HexRandomizer ( 32 ), // a pedroacnonceRandom implementation
new DateInterval ( ' PT3H ' )
);
还可以创建具有指定名称的随机数:
$ user_id = $ _SESSION [ ' user_id ' ];
$ tokenName = "{ $ user_id } _form " ;
$ nonce = $ manager -> create ( $ tokenName );
NonceForm
默认输入源是$_POST,但它接受任何数组输入:
$ form = new NonceForm (
' token ' ,
new NoncesManager (
new FilesystemCache
),
filter_input_array ( INPUT_GET ) // use $_GET
);
从库根文件夹运行:
php/vendor/bin/phpunit php/tests/ -c php/tests/configuration.xml
如果测试成功, php/tests/coverage-html
应该有代码覆盖率报告。
从库根文件夹运行:
sh scripts/generate-docs.sh
生成的文档应位于文件夹docs
内。
应该使用 SemVer 进行版本控制。
pedroac/nonce 是根据 MIT 公共许可证发布的。
有关详细信息,请参阅随附的许可证。
该库是作为 Stackoverflow 用户发出的私人请求响应而开发的。