Issues (63)

Security Analysis    no request data  

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.

src/SearchEndpoint/QueryEndpoint.php (2 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
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace ONGR\ElasticsearchDSL\SearchEndpoint;
13
14
use ONGR\ElasticsearchDSL\BuilderInterface;
15
use ONGR\ElasticsearchDSL\Query\Compound\BoolQuery;
16
use ONGR\ElasticsearchDSL\Serializer\Normalizer\OrderedNormalizerInterface;
17
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
18
19
/**
20
 * Search query dsl endpoint.
21
 */
22
class QueryEndpoint extends AbstractSearchEndpoint implements OrderedNormalizerInterface
23
{
24
    /**
25
     * Endpoint name
26
     */
27
    const NAME = 'query';
28
29
    /**
30
     * @var BoolQuery
31
     */
32
    private $bool;
33
34
    /**
35
     * @var bool
36
     */
37
    private $filtersSet = false;
38
39
    /**
40
     * {@inheritdoc}
41
     */
42
    public function normalize(NormalizerInterface $normalizer, $format = null, array $context = [])
43
    {
44
        if (!$this->filtersSet && $this->hasReference('filter_query')) {
45
            /** @var BuilderInterface $filter */
46
            $filter = $this->getReference('filter_query');
47
            $this->addToBool($filter, BoolQuery::FILTER);
48
            $this->filtersSet = true;
49
        }
50
51
        if (!$this->bool) {
52
            return null;
53
        }
54
55
        return $this->bool->toArray();
56
    }
57
58
    /**
59
     * {@inheritdoc}
60
     */
61
    public function add(BuilderInterface $builder, $key = null)
62
    {
63
        return $this->addToBool($builder, BoolQuery::MUST, $key);
64
    }
65
66
    /**
67
     * {@inheritdoc}
68
     */
69
    public function addToBool(BuilderInterface $builder, $boolType = null, $key = null)
70
    {
71
        if (!$this->bool) {
72
            $this->bool = new BoolQuery();
73
        }
74
75
        return $this->bool->add($builder, $boolType, $key);
0 ignored issues
show
$boolType is of type array|null, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
It seems like $key defined by parameter $key on line 69 can also be of type array; however, ONGR\ElasticsearchDSL\Qu...mpound\BoolQuery::add() does only seem to accept string|null, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
76
    }
77
78
    /**
79
     * {@inheritdoc}
80
     */
81
    public function getOrder()
82
    {
83
        return 2;
84
    }
85
86
    /**
87
     * @return BoolQuery
88
     */
89
    public function getBool()
90
    {
91
        return $this->bool;
92
    }
93
94
    /**
95
     * {@inheritdoc}
96
     */
97
    public function getAll($boolType = null)
98
    {
99
        return $this->bool->getQueries($boolType);
100
    }
101
}
102