Issues (2687)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

ORM/Tools/Pagination/CountOutputWalker.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Doctrine ORM
4
 *
5
 * LICENSE
6
 *
7
 * This source file is subject to the new BSD license that is bundled
8
 * with this package in the file LICENSE.txt.
9
 * If you did not receive a copy of the license and are unable to
10
 * obtain it through the world-wide-web, please send an email
11
 * to [email protected] so I can send you a copy immediately.
12
 */
13
14
namespace Eccube\Doctrine\ORM\Tools\Pagination;
15
16
use Doctrine\ORM\Query\SqlWalker;
17
use Doctrine\ORM\Query\AST\SelectStatement;
18
19
/**
20
 * Wraps the query in order to accurately count the root objects.
21
 *
22
 * Given a DQL like `SELECT u FROM User u` it will generate an SQL query like:
23
 * SELECT COUNT(*) (SELECT DISTINCT <id> FROM (<original SQL>))
24
 *
25
 * Works with composite keys but cannot deal with queries that have multiple
26
 * root entities (e.g. `SELECT f, b from Foo, Bar`)
27
 *
28
 * @author Sander Marechal <[email protected]>
29
 */
30
class CountOutputWalker extends SqlWalker
31
{
32
    /**
33
     * @var \Doctrine\DBAL\Platforms\AbstractPlatform
34
     */
35
    private $platform;
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
36
37
    /**
38
     * @var \Doctrine\ORM\Query\ResultSetMapping
39
     */
40
    private $rsm;
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
41
42
    /**
43
     * @var array
44
     */
45
    private $queryComponents;
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
46
47
    /**
48
     * Constructor.
49
     *
50
     * Stores various parameters that are otherwise unavailable
51
     * because Doctrine\ORM\Query\SqlWalker keeps everything private without
52
     * accessors.
53
     *
54
     * @param \Doctrine\ORM\Query              $query
55
     * @param \Doctrine\ORM\Query\ParserResult $parserResult
56
     * @param array                            $queryComponents
57
     */
58 16
    public function __construct($query, $parserResult, array $queryComponents)
59
    {
60 16
        $this->platform = $query->getEntityManager()->getConnection()->getDatabasePlatform();
61 16
        $this->rsm = $parserResult->getResultSetMapping();
62 16
        $this->queryComponents = $queryComponents;
63
64 16
        parent::__construct($query, $parserResult, $queryComponents);
65
    }
66
67
    /**
68
     * Walks down a SelectStatement AST node, wrapping it in a COUNT (SELECT DISTINCT).
69
     *
70
     * Note that the ORDER BY clause is not removed. Many SQL implementations (e.g. MySQL)
71
     * are able to cache subqueries. By keeping the ORDER BY clause intact, the limitSubQuery
72
     * that will most likely be executed next can be read from the native SQL cache.
73
     *
74
     * @param SelectStatement $AST
75
     *
76
     * @return string
77
     *
78
     * @throws \RuntimeException
79
     */
80 16
    public function walkSelectStatement(SelectStatement $AST)
81
    {
82 16
        if ($this->platform->getName() === "mssql") {
83
            $AST->orderByClause = null;
84
        }
85
86 16
        $sql = parent::walkSelectStatement($AST);
87
88
        // Find out the SQL alias of the identifier column of the root entity
89
        // It may be possible to make this work with multiple root entities but that
90
        // would probably require issuing multiple queries or doing a UNION SELECT
91
        // so for now, It's not supported.
92
93
        // Get the root entity and alias from the AST fromClause
94 16
        $from = $AST->fromClause->identificationVariableDeclarations;
95 16
        if (count($from) > 1) {
96
            throw new \RuntimeException("Cannot count query which selects two FROM components, cannot make distinction");
97
        }
98
99 16
        $fromRoot       = reset($from);
100 16
        $rootAlias      = $fromRoot->rangeVariableDeclaration->aliasIdentificationVariable;
101 16
        $rootClass      = $this->queryComponents[$rootAlias]['metadata'];
102 16
        $rootIdentifier = $rootClass->identifier;
103
104
        // For every identifier, find out the SQL alias by combing through the ResultSetMapping
105 16
        $sqlIdentifier = array();
106 16 View Code Duplication
        foreach ($rootIdentifier as $property) {
107 16
            if (isset($rootClass->fieldMappings[$property])) {
108 16
                foreach (array_keys($this->rsm->fieldMappings, $property) as $alias) {
109 16
                    if ($this->rsm->columnOwnerMap[$alias] == $rootAlias) {
110 16
                        $sqlIdentifier[$property] = $alias;
111
                    }
112
                }
113
            }
114
115 16
            if (isset($rootClass->associationMappings[$property])) {
116
                $joinColumn = $rootClass->associationMappings[$property]['joinColumns'][0]['name'];
117
118
                foreach (array_keys($this->rsm->metaMappings, $joinColumn) as $alias) {
119
                    if ($this->rsm->columnOwnerMap[$alias] == $rootAlias) {
120 16
                        $sqlIdentifier[$property] = $alias;
121
                    }
122
                }
123
            }
124
        }
125
126 16 View Code Duplication
        if (count($rootIdentifier) != count($sqlIdentifier)) {
127
            throw new \RuntimeException(sprintf(
128
                'Not all identifier properties can be found in the ResultSetMapping: %s',
129
                implode(', ', array_diff($rootIdentifier, array_keys($sqlIdentifier)))
130
            ));
131
        }
132
133
        // Build the counter query
134 16
        return sprintf('SELECT %s AS dctrn_count FROM (SELECT DISTINCT %s FROM (%s) dctrn_result) dctrn_table',
135 16
            $this->platform->getCountExpression('*'),
136 16
            implode(', ', $sqlIdentifier),
137
            $sql
138
        );
139
    }
140
}
141