MTimeProtectedFileStorageBase.php in Drupal 10
File
core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
View source
<?php
namespace Drupal\Tests\Component\PhpStorage;
use Drupal\Component\FileSecurity\FileSecurity;
use Drupal\Component\Utility\Crypt;
use Drupal\Component\Utility\Random;
abstract class MTimeProtectedFileStorageBase extends PhpStorageTestBase {
protected $storageClass;
protected $secret;
protected $settings;
protected function setUp() : void {
parent::setUp();
$random = new Random();
$this->secret = $random
->name(8, TRUE);
$this->settings = [
'directory' => $this->directory,
'bin' => 'test',
'secret' => $this->secret,
];
}
public function testCRUD() {
$php = new $this->storageClass($this->settings);
$this
->assertCRUD($php);
}
public function testSecurity() {
$php = new $this->storageClass($this->settings);
$name = 'test.php';
$php
->save($name, '<?php');
$expected_root_directory = $this->directory . '/test';
if (substr($name, -4) === '.php') {
$expected_directory = $expected_root_directory . '/' . substr($name, 0, -4);
}
else {
$expected_directory = $expected_root_directory . '/' . $name;
}
$directory_mtime = filemtime($expected_directory);
$expected_filename = $expected_directory . '/' . Crypt::hmacBase64($name, $this->secret . $directory_mtime) . '.php';
$this
->assertFileExists($expected_filename);
$this
->assertSame(0444, fileperms($expected_filename) & 0777);
$this
->assertSame(0777, fileperms($expected_directory) & 0777);
$this
->assertSame(file_get_contents($expected_root_directory . '/.htaccess'), FileSecurity::htaccessLines());
sleep(1);
for ($i = 0; $i < 2; $i++) {
$php = new $this->storageClass($this->settings);
$GLOBALS['hacked'] = FALSE;
$untrusted_code = "<?php\n" . '$GLOBALS["hacked"] = TRUE;';
chmod($expected_directory, 0700);
chmod($expected_filename, 0700);
if ($i) {
file_put_contents($expected_filename . '.tmp', $untrusted_code);
rename($expected_filename . '.tmp', $expected_filename);
}
else {
file_put_contents($expected_filename, $untrusted_code);
}
chmod($expected_filename, 0400);
chmod($expected_directory, 0100);
$this
->assertSame(file_get_contents($expected_filename), $untrusted_code);
$this
->assertSame($this->expected[$i], $php
->exists($name));
$this
->assertSame($this->expected[$i], $php
->load($name));
$this
->assertSame($this->expected[$i], $GLOBALS['hacked']);
}
unset($GLOBALS['hacked']);
}
}