Field.php in Security Review 8
File
src/Checks/Field.php
View source
<?php
namespace Drupal\security_review\Checks;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\Exception\UndefinedLinkTemplateException;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\security_review\Check;
use Drupal\security_review\CheckResult;
class Field extends Check {
public function getNamespace() {
return 'Security Review';
}
public function getTitle() {
return 'Content';
}
public function getMachineTitle() {
return 'field';
}
public function run() {
$result = CheckResult::SUCCESS;
$findings = [];
$field_types = [
'text_with_summary',
'text_long',
];
$tags = [
'Javascript' => 'script',
'PHP' => '?php',
];
$entity_type_manager = \Drupal::service('entity_type.manager');
$field_manager = \Drupal::service('entity_field.manager');
foreach ($field_manager
->getFieldMap() as $entity_type_id => $fields) {
$field_storage_definitions = $field_manager
->getFieldStorageDefinitions($entity_type_id);
foreach ($fields as $field_name => $field) {
if (!isset($field_storage_definitions[$field_name])) {
continue;
}
$field_storage_definition = $field_storage_definitions[$field_name];
if (in_array($field_storage_definition
->getType(), $field_types)) {
if ($field_storage_definition instanceof FieldStorageConfig) {
$table = $entity_type_id . '__' . $field_name;
$separator = '_';
$id = 'entity_id';
}
else {
$entity = $entity_type_manager
->getStorage($entity_type_id)
->getEntityType();
$translatable = $entity
->isTranslatable();
$table = '';
if ($translatable) {
$table = $entity
->getDataTable() ?: $entity_type_id . '_field_data';
}
else {
$table = $entity
->getBaseTable() ?: $entity_type_id;
}
$separator = '__';
$id = $entity
->getKey('id');
}
$rows = \Drupal::database()
->select($table, 't')
->fields('t')
->execute()
->fetchAll();
foreach ($rows as $row) {
foreach (array_keys($field_storage_definition
->getSchema()['columns']) as $column) {
$column_name = $field_name . $separator . $column;
foreach ($tags as $vulnerability => $tag) {
if (strpos($row->{$column_name}, '<' . $tag) !== FALSE) {
$findings[$entity_type_id][$row->{$id}][$field_name][] = $vulnerability;
}
}
}
}
}
}
}
if (!empty($findings)) {
$result = CheckResult::FAIL;
}
return $this
->createResult($result, $findings);
}
public function help() {
$paragraphs = [];
$paragraphs[] = $this
->t('Script and PHP code in content does not align with Drupal best practices and may be a vulnerability if an untrusted user is allowed to edit such content. It is recommended you remove such contents.');
return [
'#theme' => 'check_help',
'#title' => $this
->t('Dangerous tags in content'),
'#paragraphs' => $paragraphs,
];
}
public function evaluate(CheckResult $result) {
$findings = $result
->findings();
if (empty($findings)) {
return [];
}
$paragraphs = [];
$paragraphs[] = $this
->t('The following items potentially have dangerous tags.');
$items = [];
foreach ($findings as $entity_type_id => $entities) {
foreach ($entities as $entity_id => $fields) {
$entity = $this
->entityTypeManager()
->getStorage($entity_type_id)
->load($entity_id);
foreach ($fields as $field => $finding) {
$items[] = $this
->t('@vulnerabilities found in <em>@field</em> field of <a href=":url">@label</a>', [
'@vulnerabilities' => implode(' and ', $finding),
'@field' => $field,
'@label' => $entity
->label(),
':url' => $this
->getEntityLink($entity),
]);
}
}
}
return [
'#theme' => 'check_evaluation',
'#paragraphs' => $paragraphs,
'#items' => $items,
];
}
protected function getEntityLink(EntityInterface $entity) {
try {
$url = $entity
->toUrl('edit-form');
} catch (UndefinedLinkTemplateException $e) {
$url = NULL;
}
if ($url === NULL) {
try {
$url = $entity
->toUrl();
} catch (UndefinedLinkTemplateException $e) {
$url = NULL;
}
}
return $url !== NULL ? $url
->toString() : $entity
->getEntityTypeId() . ':' . $entity
->id();
}
public function evaluatePlain(CheckResult $result) {
$findings = $result
->findings();
if (empty($findings)) {
return '';
}
$output = '';
foreach ($findings as $entity_type_id => $entities) {
foreach ($entities as $entity_id => $fields) {
$entity = $this
->entityTypeManager()
->getStorage($entity_type_id)
->load($entity_id);
foreach ($fields as $field => $finding) {
$output .= "\t" . $this
->t('@vulnerabilities in @field of :link', [
'@vulnerabilities' => implode(' and ', $finding),
'@field' => $field,
':link' => $this
->getEntityLink($entity),
]) . "\n";
}
}
}
return $output;
}
public function getMessage($result_const) {
switch ($result_const) {
case CheckResult::SUCCESS:
return $this
->t('Dangerous tags were not found in any submitted content (fields).');
case CheckResult::FAIL:
return $this
->t('Dangerous tags were found in submitted content (fields).');
default:
return $this
->t('Unexpected result.');
}
}
}
Classes
Name |
Description |
Field |
Checks for Javascript and PHP in submitted content. |