abdelhammied / api-csrf-protection
This Package is used to secure apis from any cross sites request forgery while wroking with mobile applications using rsa assemetric key
dev-master
2020-10-07 12:08 UTC
Requires
- phpseclib/phpseclib: ^2.0
This package is auto-updated.
Last update: 2025-03-07 22:54:32 UTC
README
This Package is used to secure apis from any cross sites request forgery while wroking with mobile applications using rsa assemetric key with two ways authentication with your mobile team / any one who wants to interact with your apis
This Package uses phpseclib/phpseclib
Installation
composer require abdelhammied/api-csrf-protection
Configuration
We Are Setting Every Thing To You We Only Need Your Support And Have Fun With Our Package
Usage
- Create Public and private keys using
php artisan createencrytionkeys
This will create public key and private keys atstorage/app/keys
, share the public keys with your mobile team. - Start to define the middleware as route middleware at
app/Http/Kernel.php
using this middleware\ApiCsrfProtection\Middlewares\VerifyApiToken::class
- You can define which apis to be secured with the package
should be Not GET method
- from the mobile team side start to create a random string with each not GET request, use the public key to hash the string after that use base64_encode with the hased value, send the data with the request like:
{ "__token": { "plainText": "$RANDOM_STRING", "cipherText": "$HASHED_VALUE" } }
For Any Inquires please contact us :
abdelhammied@gmail.com