shell bypass 403
<?php
namespace AmeliaBooking\Domain\ValueObjects\String;
/**
* Class Token
*
* @package AmeliaBooking\Domain\ValueObjects\String
*/
final class Token
{
public const MAX_LENGTH = 10;
/**
* @var string
*/
private $token;
/**
* Token constructor.
*
* @param string $token
* @param mixed $maxLength
*/
public function __construct($token = null, $maxLength = self::MAX_LENGTH)
{
$this->token = $token ?: bin2hex(openssl_random_pseudo_bytes(floor($maxLength / 2)));
}
/**
* Return the status from the value object
*
* @return string
*/
public function getValue()
{
return $this->token;
}
}