blob: 348c4eebf8c377eff267f132b2a5be0ef920eb8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
namespace ipl\Web\Common;
use ipl\Html\Contract\FormElement;
use ipl\Html\Form;
trait CsrfCounterMeasure
{
/**
* Create a form element to counter measure CSRF attacks
*
* @param string $uniqueId A unique ID that persists through different requests
*
* @return FormElement
*/
protected function createCsrfCounterMeasure($uniqueId)
{
$hashAlgo = in_array('sha3-256', hash_algos(), true) ? 'sha3-256' : 'sha256';
$seed = random_bytes(16);
$token = base64_encode($seed) . '|' . hash($hashAlgo, $uniqueId . $seed);
/** @var Form $this */
return $this->createElement(
'hidden',
'CSRFToken',
[
'ignore' => true,
'required' => true,
'value' => $token,
'validators' => ['Callback' => function ($token) use ($uniqueId, $hashAlgo) {
if (strpos($token, '|') === false) {
die('Invalid CSRF token provided');
}
list($seed, $hash) = explode('|', $token);
if ($hash !== hash($hashAlgo, $uniqueId . base64_decode($seed))) {
die('Invalid CSRF token provided');
}
return true;
}]
]
);
}
}
|