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         3.8.0
 */

namespace Passbolt\SmtpSettings\Test\Lib;

use App\Model\Entity\OrganizationSetting;
use App\Test\Lib\Utility\Gpg\GpgAdaSetupTrait;
use App\Utility\Filesystem\DirectoryUtility;
use Cake\Core\Configure;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Mailer\TransportFactory;
use Passbolt\SmtpSettings\Service\SmtpSettingsSetService;
use Passbolt\SmtpSettings\Test\Factory\SmtpSettingFactory;

/**
 * @covers \Passbolt\SmtpSettings\Service\SmtpSettingsSetService
 */
trait SmtpSettingsTestTrait
{
    use GpgAdaSetupTrait;

    /**
     * @var string
     */
    protected $dummyPassboltFile = TMP . 'tests' . DS . 'passbolt.php';

    /**
     * @return \Cake\Mailer\Message[]
     */
    protected function getSentMessages(): array
    {
        /** @var \App\Mailer\Transport\DebugTransport $transport */
        $transport = TransportFactory::get('default');

        return $transport->getMessages();
    }

    private function getSmtpSettingsData(?string $field = null, $value = null): array
    {
        $validData = [
            'sender_name' => 'John Doe',
            'sender_email' => '[email protected]',
            'host' => 'some host',
            'tls' => true,
            'port' => (string)rand(1, 999),
            'client' => 'passbolt.com',
            'username' => 'test-user',
            'password' => 'test-secret',
        ];

        if (isset($field)) {
            $validData[$field] = $value;
        }

        return $validData;
    }

    private function encryptAndPersistSmtpSettings($data): OrganizationSetting
    {
        $this->gpgSetup();
        $this->gpg->setEncryptKeyFromFingerprint($this->serverKeyId);
        $encryptedSettings = $this->gpg->encrypt(json_encode($data));

        /** @var \App\Model\Entity\OrganizationSetting $setting */
        $setting = SmtpSettingFactory::make()->value($encryptedSettings)->persist();

        return $setting;
    }

    protected function assertTransportConfigMatches(array $expectedConfig): void
    {
        foreach ($expectedConfig as $k => $v) {
            $this->assertSame($v, TransportFactory::get('default')->getConfig($k));
        }
    }

    private function setTransportConfig(?string $field = null, $value = null): void
    {
        $validConfig = [
            'host' => 'some test host',
            'tls' => true,
            'port' => '25',
            'username' => 'user',
            'password' => 'secret',
        ];

        if (isset($field)) {
            $validConfig[$field] = $value;
        }

        TransportFactory::get('default')->setConfig($validConfig);
    }

    private function makeDummyPassboltFile(array $data)
    {
        $phpConfig = new PhpConfig(TMP . 'tests' . DS);
        if (!$phpConfig->dump('passbolt', $data)) {
            $this->markTestSkipped(TMP . 'tests' . DS . 'passbolt not writable, skipping test');
        }
    }

    private function deletePassboltDummyFile(): void
    {
        DirectoryUtility::removeRecursively($this->dummyPassboltFile);
    }

    private function assertFileSettingsHaveTheRightKeys(array $settings)
    {
        $keys = array_keys($settings);
        $expectedKeys = SmtpSettingsSetService::SMTP_SETTINGS_ALLOWED_FIELDS;
        asort($keys);
        asort($expectedKeys);

        $this->assertEquals(array_values($expectedKeys), array_values($keys));
    }

    private function assertDBSettingsHaveTheRightKeys(array $settings)
    {
        $keys = array_keys($settings);
        $expectedKeys = array_merge(
            SmtpSettingsSetService::SMTP_SETTINGS_ALLOWED_FIELDS,
            ['id', 'created', 'modified', 'created_by', 'modified_by',]
        );
        asort($keys);
        asort($expectedKeys);

        $this->assertEquals(array_values($expectedKeys), array_values($keys));
    }

    /**
     * Sets the SMTP settings security flag to false
     *
     * @return void
     */
    public function enableSmtpSettingsEndpoints()
    {
        Configure::write('passbolt.security.smtpSettings.endpointsDisabled', false);
    }

    /**
     * Sets the SMTP settings security flag to true
     *
     * @return void
     */
    public function disableSmtpSettingsEndpoints()
    {
        Configure::write('passbolt.security.smtpSettings.endpointsDisabled', true);
    }
}
 ?>

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         3.8.0
 */

namespace Passbolt\SmtpSettings\Test\Lib;

use App\Model\Entity\OrganizationSetting;
use App\Test\Lib\Utility\Gpg\GpgAdaSetupTrait;
use App\Utility\Filesystem\DirectoryUtility;
use Cake\Core\Configure;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Mailer\TransportFactory;
use Passbolt\SmtpSettings\Service\SmtpSettingsSetService;
use Passbolt\SmtpSettings\Test\Factory\SmtpSettingFactory;

/**
 * @covers \Passbolt\SmtpSettings\Service\SmtpSettingsSetService
 */
trait SmtpSettingsTestTrait
{
    use GpgAdaSetupTrait;

    /**
     * @var string
     */
    protected $dummyPassboltFile = TMP . 'tests' . DS . 'passbolt.php';

    /**
     * @return \Cake\Mailer\Message[]
     */
    protected function getSentMessages(): array
    {
        /** @var \App\Mailer\Transport\DebugTransport $transport */
        $transport = TransportFactory::get('default');

        return $transport->getMessages();
    }

    private function getSmtpSettingsData(?string $field = null, $value = null): array
    {
        $validData = [
            'sender_name' => 'John Doe',
            'sender_email' => '[email protected]',
            'host' => 'some host',
            'tls' => true,
            'port' => (string)rand(1, 999),
            'client' => 'passbolt.com',
            'username' => 'test-user',
            'password' => 'test-secret',
        ];

        if (isset($field)) {
            $validData[$field] = $value;
        }

        return $validData;
    }

    private function encryptAndPersistSmtpSettings($data): OrganizationSetting
    {
        $this->gpgSetup();
        $this->gpg->setEncryptKeyFromFingerprint($this->serverKeyId);
        $encryptedSettings = $this->gpg->encrypt(json_encode($data));

        /** @var \App\Model\Entity\OrganizationSetting $setting */
        $setting = SmtpSettingFactory::make()->value($encryptedSettings)->persist();

        return $setting;
    }

    protected function assertTransportConfigMatches(array $expectedConfig): void
    {
        foreach ($expectedConfig as $k => $v) {
            $this->assertSame($v, TransportFactory::get('default')->getConfig($k));
        }
    }

    private function setTransportConfig(?string $field = null, $value = null): void
    {
        $validConfig = [
            'host' => 'some test host',
            'tls' => true,
            'port' => '25',
            'username' => 'user',
            'password' => 'secret',
        ];

        if (isset($field)) {
            $validConfig[$field] = $value;
        }

        TransportFactory::get('default')->setConfig($validConfig);
    }

    private function makeDummyPassboltFile(array $data)
    {
        $phpConfig = new PhpConfig(TMP . 'tests' . DS);
        if (!$phpConfig->dump('passbolt', $data)) {
            $this->markTestSkipped(TMP . 'tests' . DS . 'passbolt not writable, skipping test');
        }
    }

    private function deletePassboltDummyFile(): void
    {
        DirectoryUtility::removeRecursively($this->dummyPassboltFile);
    }

    private function assertFileSettingsHaveTheRightKeys(array $settings)
    {
        $keys = array_keys($settings);
        $expectedKeys = SmtpSettingsSetService::SMTP_SETTINGS_ALLOWED_FIELDS;
        asort($keys);
        asort($expectedKeys);

        $this->assertEquals(array_values($expectedKeys), array_values($keys));
    }

    private function assertDBSettingsHaveTheRightKeys(array $settings)
    {
        $keys = array_keys($settings);
        $expectedKeys = array_merge(
            SmtpSettingsSetService::SMTP_SETTINGS_ALLOWED_FIELDS,
            ['id', 'created', 'modified', 'created_by', 'modified_by',]
        );
        asort($keys);
        asort($expectedKeys);

        $this->assertEquals(array_values($expectedKeys), array_values($keys));
    }

    /**
     * Sets the SMTP settings security flag to false
     *
     * @return void
     */
    public function enableSmtpSettingsEndpoints()
    {
        Configure::write('passbolt.security.smtpSettings.endpointsDisabled', false);
    }

    /**
     * Sets the SMTP settings security flag to true
     *
     * @return void
     */
    public function disableSmtpSettingsEndpoints()
    {
        Configure::write('passbolt.security.smtpSettings.endpointsDisabled', true);
    }
}

Function Calls

None

Variables

None

Stats

MD5 c11b23fde7fd637d3d8611c51288a51a
Eval Count 0
Decode Time 76 ms