Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * Passbolt ~ Open source password manager for teams ..
Decoded Output download
<?php
declare(strict_types=1);
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 4.7.0
*/
namespace App\Service\Healthcheck\Gpg;
use App\Service\Healthcheck\HealthcheckServiceInterface;
class PublicKeyReadableAndParsableGpgHealthcheck extends AbstractGpgHealthcheck
{
/**
* @inheritDoc
*/
public function check(): HealthcheckServiceInterface
{
if (!$this->isPublicServerKeyReadable()) {
return $this;
}
$publicKeyData = file_get_contents($this->getPublicServerKey());
$blockStart = '-----BEGIN PGP PUBLIC KEY BLOCK-----';
$this->status = (strpos($publicKeyData, $blockStart) === 0);
return $this;
}
/**
* @inheritDoc
*/
public function getSuccessMessage(): string
{
return __('The public key file is defined in {0} and readable.', CONFIG . 'passbolt.php');
}
/**
* @inheritDoc
*/
public function getFailureMessage(): string
{
return __('The public key file is not defined in {0} or not readable.', CONFIG . 'passbolt.php');
}
/**
* @inheritDoc
*/
public function getHelpMessage()
{
return [
__('Ensure the public key file is defined by the variable passbolt.gpg.serverKey.public in {0}.', CONFIG . 'passbolt.php'),// phpcs:ignore
__('Ensure there is a public key armored block in the key file.'),
__('Ensure the public key defined in {0} exists and is accessible by the webserver user.', CONFIG . 'passbolt.php'),// phpcs:ignore
__('See. https://www.passbolt.com/help/tech/install#toc_gpg'),
];
}
/**
* @inheritDoc
*/
public function getLegacyArrayKey(): string
{
return 'gpgKeyPublicBlock';
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 4.7.0
*/
namespace App\Service\Healthcheck\Gpg;
use App\Service\Healthcheck\HealthcheckServiceInterface;
class PublicKeyReadableAndParsableGpgHealthcheck extends AbstractGpgHealthcheck
{
/**
* @inheritDoc
*/
public function check(): HealthcheckServiceInterface
{
if (!$this->isPublicServerKeyReadable()) {
return $this;
}
$publicKeyData = file_get_contents($this->getPublicServerKey());
$blockStart = '-----BEGIN PGP PUBLIC KEY BLOCK-----';
$this->status = (strpos($publicKeyData, $blockStart) === 0);
return $this;
}
/**
* @inheritDoc
*/
public function getSuccessMessage(): string
{
return __('The public key file is defined in {0} and readable.', CONFIG . 'passbolt.php');
}
/**
* @inheritDoc
*/
public function getFailureMessage(): string
{
return __('The public key file is not defined in {0} or not readable.', CONFIG . 'passbolt.php');
}
/**
* @inheritDoc
*/
public function getHelpMessage()
{
return [
__('Ensure the public key file is defined by the variable passbolt.gpg.serverKey.public in {0}.', CONFIG . 'passbolt.php'),// phpcs:ignore
__('Ensure there is a public key armored block in the key file.'),
__('Ensure the public key defined in {0} exists and is accessible by the webserver user.', CONFIG . 'passbolt.php'),// phpcs:ignore
__('See. https://www.passbolt.com/help/tech/install#toc_gpg'),
];
}
/**
* @inheritDoc
*/
public function getLegacyArrayKey(): string
{
return 'gpgKeyPublicBlock';
}
}
Function Calls
None |
Stats
MD5 | e393cc0682cf085430476d1cd9a40d41 |
Eval Count | 0 |
Decode Time | 86 ms |