fabiang / sasl
Abstraction of various SASL mechanism responses.
Installs: 29 574
Dependents: 3
Suggesters: 0
Security: 0
Stars: 10
Watchers: 4
Forks: 3
Open Issues: 2
Requires
- php: ^5.3.3 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0
Requires (Dev)
- behat/behat: ^3.6
- phpunit/phpunit: >=4.8
- slevomat/coding-standard: *
- squizlabs/php_codesniffer: *
- vimeo/psalm: ^5.23
README
The PHP SASL Authentification Library.
Provides code to generate responses to common SASL mechanisms, including:
- Digest-MD5
- Cram-MD5
- Plain
- Anonymous
- Login (Pseudo mechanism)
- SCRAM
Full refactored version of the the original Auth_SASL2 Pear package.
Installation
The easiest way to install fabiang/sasl is by using Composer:
curl -sS https://getcomposer.org/installer | php
composer require fabiang/sasl
Usage
Use the factory method to create a authentication mechanism object:
use Fabiang\Sasl\Sasl; $factory = new Sasl; $mechanism = $factory->factory('SCRAM-SHA-1', array( 'authcid' => 'username', 'secret' => 'password', 'authzid' => 'authzid', // optional. Username to proxy as 'service' => 'servicename', // optional. Name of the service 'hostname' => 'hostname', // optional. Hostname of the service )); $response = $mechanism->createResponse();
Challenge-based authentication mechanisms implement the interface
Fabiang\Sasl\Authentication\ChallengeAuthenticationInterface
.
For those mechanisms call the method again with the challenge:
$response = $mechanism->createResponse($challenge);
Note: The challenge must be Base64 decoded.
SCRAM verification
To verify the data returned by the server for SCRAM you can call:
$mechanism->verify($data);
If the method returns false you should disconnect.
SCRAM downgrade protection
To enable downgrade protection for SCRAM, you'll need to pass the allowed authentication mechanisms and channel-binding types via options to the factory:
Note: Channel-binding is currently not supported due to limitations of PHP.
$mechanism = $factory->factory('SCRAM-SHA-1', array( 'authcid' => 'username', 'secret' => 'password', 'authzid' => 'authzid', // optional. Username to proxy as 'service' => 'servicename', // optional. Name of the service 'hostname' => 'hostname', // optional. Hostname of the service 'downgrade_protection' => array( // optional. When `null` downgrade protection string from server won't be validated 'allowed_mechanisms' => array('SCRAM-SHA-1-PLUS', 'SCRAM-SHA-1'), // allowed mechanisms by the server 'allowed_channel_bindings' => array('tls-unique', 'tls-exporter', 'tls-server-end-point'), // allowed channel-binding types by the server ), ));
Required options
List of options required by authentication mechanisms.
For mechanisms that are challenge-based you'll need to call createResponse()
again and send the returned value to the server.
Unit tests
If you like this library and you want to contribute, make sure the unit tests and integration tests are running.
Run the unit tests:
./vendor/bin/phpunit
Integration tests
The integration tests verify the authentication methods against an Ejabberd and Dovecot server.
To launch the servers you can use the provided Docker Compose file. Just install Docker and run:
docker compose up -d
Note: ejabberd takes up to twenty minutes to start.
Now you can run the integration tests:
./vendor/bin/behat
License
BSD-3-Clause. See the LICENSE.md.