More updates to stop using dev or alpha or beta versions.
[yaffs-website] / web / modules / contrib / security_review / src / Checks / FilePermissions.php
diff --git a/web/modules/contrib/security_review/src/Checks/FilePermissions.php b/web/modules/contrib/security_review/src/Checks/FilePermissions.php
new file mode 100644 (file)
index 0000000..17972b2
--- /dev/null
@@ -0,0 +1,242 @@
+<?php
+
+namespace Drupal\security_review\Checks;
+
+use Drupal\Core\Link;
+use Drupal\Core\StreamWrapper\PrivateStream;
+use Drupal\Core\StreamWrapper\PublicStream;
+use Drupal\Core\Url;
+use Drupal\security_review\Check;
+use Drupal\security_review\CheckResult;
+
+/**
+ * Check that files aren't writeable by the server.
+ */
+class FilePermissions extends Check {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getNamespace() {
+    return 'Security Review';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getTitle() {
+    return 'File permissions';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getMachineTitle() {
+    return 'file_perms';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function storesFindings() {
+    return FALSE;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function run($cli = FALSE) {
+    $result = CheckResult::SUCCESS;
+
+    $file_list = $this->getFileList('.');
+    $writable = $this->security()->findWritableFiles($file_list, $cli);
+
+    // Try creating or appending files.
+    // Assume it doesn't work.
+    $create_status = FALSE;
+    $append_status = FALSE;
+
+    if (!$cli) {
+      $append_message = $this->t("Your web server should not be able to write to your modules directory. This is a security vulnerable. Consult the Security Review file permissions check help for mitigation steps.");
+      $directory = $this->moduleHandler()
+        ->getModule('security_review')
+        ->getPath();
+
+      // Write a file with the timestamp.
+      $file = './' . $directory . '/file_write_test.' . date('Ymdhis');
+      if ($file_create = @fopen($file, 'w')) {
+        $create_status = fwrite($file_create, date('Ymdhis') . ' - ' . $append_message . "\n");
+        fclose($file_create);
+      }
+
+      // Try to append to our IGNOREME file.
+      $file = './' . $directory . '/IGNOREME.txt';
+      if ($file_append = @fopen($file, 'a')) {
+        $append_status = fwrite($file_append, date('Ymdhis') . ' - ' . $append_message . "\n");
+        fclose($file_append);
+      }
+    }
+
+    if (!empty($writable) || $create_status || $append_status) {
+      $result = CheckResult::FAIL;
+    }
+
+    return $this->createResult($result, $writable);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function runCli() {
+    if (!$this->securityReview()->isServerPosix()) {
+      return $this->createResult(CheckResult::INFO);
+    }
+
+    return $this->run(TRUE);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function help() {
+    $paragraphs = [];
+    $paragraphs[] = $this->t('It is dangerous to allow the web server to write to files inside the document root of your server. Doing so could allow Drupal to write files that could then be executed. An attacker might use such a vulnerability to take control of your site. An exception is the Drupal files, private files, and temporary directories which Drupal needs permission to write to in order to provide features like file attachments.');
+    $paragraphs[] = $this->t('In addition to inspecting existing directories, this test attempts to create and write to your file system. Look in your security_review module directory on the server for files named file_write_test.YYYYMMDDHHMMSS and for a file called IGNOREME.txt which gets a timestamp appended to it if it is writeable.');
+    $paragraphs[] = new Link(
+      $this->t('Read more about file system permissions in the handbooks.'),
+      Url::fromUri('http://drupal.org/node/244924')
+    );
+
+    return [
+      '#theme' => 'check_help',
+      '#title' => $this->t('Web server file system permissions'),
+      '#paragraphs' => $paragraphs,
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function evaluate(CheckResult $result) {
+    if ($result->result() == CheckResult::SUCCESS) {
+      return [];
+    }
+
+    $paragraphs = [];
+    $paragraphs[] = $this->t('The following files and directories appear to be writeable by your web server. In most cases you can fix this by simply altering the file permissions or ownership. If you have command-line access to your host try running "chmod 644 [file path]" where [file path] is one of the following paths (relative to your webroot). For more information consult the <a href="http://drupal.org/node/244924">Drupal.org handbooks on file permissions</a>.');
+
+    return [
+      '#theme' => 'check_evaluation',
+      '#paragraphs' => $paragraphs,
+      '#items' => $result->findings(),
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function evaluatePlain(CheckResult $result) {
+    if ($result->result() == CheckResult::SUCCESS) {
+      return '';
+    }
+
+    $output = $this->t('Writable files:') . "\n";
+    foreach ($result->findings() as $file) {
+      $output .= "\t" . $file . "\n";
+    }
+
+    return $output;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getMessage($result_const) {
+    switch ($result_const) {
+      case CheckResult::SUCCESS:
+        return $this->t('Drupal installation files and directories (except required) are not writable by the server.');
+
+      case CheckResult::FAIL:
+        return $this->t('Some files and directories in your install are writable by the server.');
+
+      case CheckResult::INFO:
+        return $this->t('The test cannot be run on this system.');
+
+      default:
+        return $this->t('Unexpected result.');
+    }
+  }
+
+  /**
+   * Scans a directory recursively and returns the files and directories inside.
+   *
+   * @param string $directory
+   *   The directory to scan.
+   * @param string[] $parsed
+   *   Array of already parsed real paths.
+   * @param string[] $ignore
+   *   Array of file names to ignore.
+   *
+   * @return string[]
+   *   The items found.
+   */
+  protected function getFileList($directory, array &$parsed = NULL, array &$ignore = NULL) {
+    // Initialize $parsed and $ignore arrays.
+    if ($parsed === NULL) {
+      $parsed = [realpath($directory)];
+    }
+    if ($ignore === NULL) {
+      $ignore = $this->getIgnoreList();
+    }
+
+    // Start scanning.
+    $items = [];
+    if ($handle = opendir($directory)) {
+      while (($file = readdir($handle)) !== FALSE) {
+        // Don't check hidden files or ones we said to ignore.
+        $path = $directory . "/" . $file;
+        if ($file[0] != "." && !in_array($file, $ignore) && !in_array(realpath($path), $ignore)) {
+          if (is_dir($path) && !in_array(realpath($path), $parsed)) {
+            $parsed[] = realpath($path);
+            $items = array_merge($items, $this->getFileList($path, $parsed, $ignore));
+          }
+          $items[] = preg_replace("/\/\//si", "/", $path);
+        }
+      }
+      closedir($handle);
+    }
+
+    return $items;
+  }
+
+  /**
+   * Returns an array of relative and canonical paths to ignore.
+   *
+   * @return string[]
+   *   List of relative and canonical file paths to ignore.
+   */
+  protected function getIgnoreList() {
+    $file_path = PublicStream::basePath();
+    $ignore = ['..', 'CVS', '.git', '.svn', '.bzr', realpath($file_path)];
+
+    // Add temporary files directory if it's set.
+    $temp_path = file_directory_temp();
+    if (!empty($temp_path)) {
+      $ignore[] = realpath('./' . rtrim($temp_path, '/'));
+    }
+
+    // Add private files directory if it's set.
+    $private_files = PrivateStream::basePath();
+    if (!empty($private_files)) {
+      // Remove leading slash if set.
+      if (strrpos($private_files, '/') !== FALSE) {
+        $private_files = substr($private_files, strrpos($private_files, '/') + 1);
+      }
+      $ignore[] = $private_files;
+    }
+
+    $this->moduleHandler()->alter('security_review_file_ignore', $ignore);
+    return $ignore;
+  }
+
+}