blackcube/powshield

Blackcube POW Shield for Yii2

1.0.0 2024-06-22 13:18 UTC

This package is auto-updated.

Last update: 2024-08-22 13:43:03 UTC


README

Installation

The preferred way to install this extension is through composer.

composer require blackcube/powshield

Configuration

Add the following code to your configuration file:

return [
    // ...
    'modules' => [
        // ...
        'powshield' => [
            'class' => 'blackcube\powshield\Module',
            'key' => 'your-secret-key',
            'algorithm' => 'SHA-256', // SHA-256, SHA-384, SHA-512
            'minIterations' => 1000, // change iterations to make the process slower
            'maxIterations' => 100000,
            'saltLength' => 12, // change salt length to make the process slower
            'antiReplay' => true, // enable anti-replay mechanism, needs app to have cache component
            'antiReplayTimeout' => 300, // duration of the anti-replay mechanism
            'timeValidity' => 300, // duration of the challenge validity
        ],
    ],
    'bootstrap' => [
        // ...
        'powshield'
    ],
];

This sets up the module and:

  1. activate api routes:
  • /powshield/generate-challenge to generate a challenge
  • /powshield/verify-solution to check a solution
  1. activate the validator:
  • powshield to validate a solution in a model

Usage

Client side

You can use the following libraries to generate and check the solution:

Once solution is generated, you should send it to the server

Server side

You can use the following code to validate a solution:

class MyModel extends yii\base\Model
{
    public $captchaSolution;
    public $name;

    public function rules()
    {
        return [
            [['captchaSolution', 'name'], 'required'],
            ['captchaSolution', 'powshield'],
        ];
    }
}

If the solution is not valid, the model will have an error on captchaSolution.