Issues (794)

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.

UriProcessor/QueryProcessor/AnonymousFunction.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 POData\UriProcessor\QueryProcessor;
4
use POData\Common\Messages;
5
6
/**
7
 * Class AnonymousFunction
8
 * @package POData\UriProcessor\QueryProcessor
9
 */
10
class AnonymousFunction
11
{
12
    /**
13
     * An array of parameters to the function represented by this instance
14
     * 
15
     * @var array
16
     */
17
    private $_parameters;
18
19
    /**
20
     * Parameters as string separated by comma
21
     * 
22
     * @var string
23
     */
24
    private $_parametersAsString;
25
26
    /**
27
     * body of the function represented by this instance
28
     * 
29
     * @var string
30
     */
31
    private $_code;
32
33
    /**
34
     * Reference to the anonymous function represented by this instance
35
     * reference will be the name of the function in the form char(0).lamba_n.
36
     * 
37
     * @var string
38
     */
39
    private $_reference = null;
40
41
    /**
42
     * Create new instance of AnonymousFunction
43
     * 
44
     * @param array  $parameters Array of parameters
45
     * @param string $code       Body of the function
46
     */
47
    public function __construct($parameters, $code)
48
    {
49
        $this->_parameters = $parameters;
50
        foreach ($this->_parameters as $parameter) {
51
            if (strpos($parameter, '$') !== 0) {
52
                throw new \InvalidArgumentException(
53
                    Messages::anonymousFunctionParameterShouldStartWithDollarSymbol()
54
                );
55
            } 
56
        }
57
58
        $this->_parametersAsString = implode(', ', $this->_parameters);
59
        $this->_code = $code;
60
    }
61
62
    /**
63
     * Gets function parameters as array.
64
     * 
65
     * @return array
66
     */
67
    public function getParameters()
68
    {
69
        return $this->_parameters;
70
    }
71
72
    /**
73
     * Gets function parameters as string seperated by comma
74
     * 
75
     * @return string
76
     */
77
    public function getParametersAsString()
78
    {
79
        return $this->_parametersAsString;
80
    }
81
82
    /**
83
     * Gets number of parameters
84
     * 
85
     * @return int
86
     */
87
    public function getParametersCount()
88
    {
89
        return count($this->_parameters);
90
    }
91
92
    /**
93
     * Gets function body
94
     * 
95
     * @return string
96
     */
97
    public function getCode()
98
    {
99
        return $this->_code;
100
    }
101
102
    /**
103
     * Gets refernece to the anonymous function.
104
     * 
105
     * @return string
106
     */
107
    public function getReference()
108
    {
109
        if (is_null($this->_reference)) {
110
            $this->_reference = create_function(
0 ignored issues
show
Security Best Practice introduced by
The use of create_function is highly discouraged, better use a closure.

create_function can pose a great security vulnerability as it is similar to eval, and could be used for arbitrary code execution. We highly recommend to use a closure instead.

// Instead of
$function = create_function('$a, $b', 'return $a + $b');

// Better use
$function = function($a, $b) { return $a + $b; }
Loading history...
111
                $this->_parametersAsString, $this->_code
112
            );
113
        }
114
115
        return $this->_reference;
116
    }
117
}