Issues (1)

Branch: master

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/EtherpadLite/Response.php (1 issue)

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 EtherpadLite;
4
5
use Psr\Http\Message\ResponseInterface;
6
7
class Response
8
{
9
    const CODE_OK = 0;
10
    const CODE_WRONG_PARAMETERS = 1;
11
    const CODE_INTERNAL_ERROR = 2;
12
    const CODE_NO_SUCH_FUNCTION = 3;
13
    const CODE_NO_OR_WRONG_API_KEY = 4;
14
15
    /** @var array */
16
    private $data;
17
18
    /**
19
     * @param ResponseInterface $response
20
     */
21 5
    public function __construct(ResponseInterface $response)
22
    {
23 5
        if ($response->getStatusCode() === 200) {
24 5
            $this->data = (array)\GuzzleHttp\json_decode($response->getBody(), true);
0 ignored issues
show
Deprecated Code introduced by
The function GuzzleHttp\json_decode() has been deprecated with message: json_decode will be removed in guzzlehttp/guzzle:8.0. Use Utils::jsonDecode instead.

This function has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed from the class and what other function to use instead.

Loading history...
25
        } else {
26
            $this->data = [];
27
        }
28 5
    }
29
30
    /**
31
     * @return string|null
32
     */
33 4
    public function getCode(): ?string
34
    {
35 4
        return $this->getPropertyFromData('code');
36
    }
37
38
    /**
39
     * @return string|null
40
     */
41 4
    public function getMessage(): ?string
42
    {
43 4
        return $this->getPropertyFromData('message');
44
    }
45
46
    /**
47
     * Get Response Data Array.
48
     *
49
     * By default the whole array will be returned. In order to retrieve just a key based response, provide an array Key.
50
     *
51
     * ```php
52
     * $response = (new Client())->createAuthorIfNotExistsFor(1, 'John Doe');
53
     * $authorId = $response->getData('authorID');
54
     * ```
55
     *
56
     * @param string $key Access a given key from the data array, if no key is provided all data will be returned.
57
     * @param mixed $defaultValue If the given key is not found in the array, the $defaultValue will be returned.
58
     * @return array|string|null
59
     */
60 5
    public function getData($key = null, $defaultValue = null)
61
    {
62 5
        $data = $this->getPropertyFromData('data');
63
64 5
        if (null !== $key) {
65 1
            return isset($data[$key]) ? $data[$key] : $defaultValue;
66
        }
67
68 4
        return $data;
69
    }
70
71
    /**
72
     * @return array
73
     */
74 4
    public function getResponse(): array
75
    {
76 4
        return $this->data;
77
    }
78
79
    /**
80
     * @param string $key
81
     * @return mixed
82
     */
83 5
    private function getPropertyFromData($key)
84
    {
85 5
        return isset($this->data[$key]) ? $this->data[$key] : null;
86
    }
87
}
88