SILENT KILLERPanel

Current Path: > > opt > cloudlinux > alt-php55 > root > usr > share > pear > Symfony > Component > Security > > Csrf


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Security//Csrf

NameTypeSizeLast ModifiedActions
Exception Directory - -
TokenGenerator Directory - -
TokenStorage Directory - -
CsrfToken.php File 1280 bytes December 18 2019 11:24:07.
CsrfTokenManager.php File 2636 bytes December 18 2019 11:24:07.
CsrfTokenManagerInterface.php File 1972 bytes December 18 2019 11:24:07.

Reading File: //opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Security//Csrf/CsrfToken.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Security\Csrf;

/**
 * A CSRF token.
 *
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
class CsrfToken
{
    /**
     * @var string
     */
    private $id;

    /**
     * @var string
     */
    private $value;

    /**
     * Constructor.
     *
     * @param string $id    The token ID
     * @param string $value The actual token value
     */
    public function __construct($id, $value)
    {
        $this->id = (string) $id;
        $this->value = (string) $value;
    }

    /**
     * Returns the ID of the CSRF token.
     *
     * @return string The token ID
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Returns the value of the CSRF token.
     *
     * @return string The token value
     */
    public function getValue()
    {
        return $this->value;
    }

    /**
     * Returns the value of the CSRF token.
     *
     * @return string The token value
     */
    public function __toString()
    {
        return $this->value;
    }
}

SILENT KILLER Tool