Issues (24)

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/Model/Adapter/Mysqli/EmulatedStatement.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
namespace BenTools\SimpleDBAL\Model\Adapter\Mysqli;
4
5
use BenTools\SimpleDBAL\Contract\ResultInterface;
6
7
class EmulatedStatement extends Statement
8
{
9
    /**
10
     * @inheritDoc
11
     */
12
    public function __construct(MysqliAdapter $connection, array $values = null, $queryString)
13
    {
14
        $this->connection          = $connection;
15
        $this->values              = $values;
0 ignored issues
show
Documentation Bug introduced by
It seems like $values can be null. However, the property $values is declared as array. Maybe change the type of the property to array|null or add a type check?

Our type inference engine has found an assignment of a scalar value (like a string, an integer or null) to a property which is an array.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property.

To type hint that a parameter can be either an array or null, you can set a type hint of array and a default value of null. The PHP interpreter will then accept both an array or null for that parameter.

function aContainsB(array $needle = null, array  $haystack) {
    if (!$needle) {
        return false;
    }

    return array_intersect($haystack, $needle) == $haystack;
}

The function can be called with either null or an array for the parameter $needle but will only accept an array as $haystack.

Loading history...
16
        $this->queryString         = $queryString;
17
    }
18
19
    /**
20
     * @inheritDoc
21
     */
22
    public function getWrappedStatement()
23
    {
24
        throw new \RuntimeException("Wrapped statement is unavailable on emulated statements.");
25
    }
26
27
    /**
28
     * @inheritDoc
29
     */
30
    public function bind(): void
31
    {
32
        $this->runnableQueryString = $this->preview();
33
    }
34
35
    /**
36
     * @return string
37
     */
38
    public function getRunnableQuery()
39
    {
40
        if (null === $this->runnableQueryString) {
41
            throw new \RuntimeException("Unbound query, run bind() before.");
42
        }
43
        return $this->runnableQueryString;
44
    }
45
46
    /**
47
     * @inheritDoc
48
     */
49
    public function createResult(): ResultInterface
50
    {
51
        $this->bind();
52
        $mysqliResult = $this->getConnection()->getWrappedConnection()->query($this->getRunnableQuery());
53
        return new Result($this->getConnection()->getWrappedConnection(), $mysqliResult instanceof \mysqli_result ? $mysqliResult : null);
0 ignored issues
show
It seems like $this->getConnection()->getWrappedConnection() targeting BenTools\SimpleDBAL\Mode...:getWrappedConnection() can also be of type object<PDO>; however, BenTools\SimpleDBAL\Mode...i\Result::__construct() does only seem to accept object<mysqli>, maybe add an additional type check?

This check looks at variables that 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...
54
    }
55
}
56