Issues (10)

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/Zerg/Field/AbstractField.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 Zerg\Field;
4
5
use Zerg\DataSet;
6
use Zerg\Stream\AbstractStream;
7
8
/**
9
 * This abstract class represents any type of field - an entity that takes, processes and
10
 * returns some data from Stream. Also field has access
11
 * to DataSet from which it takes config values by given paths.
12
 *
13
 * @since 0.1
14
 * @package Zerg\Field
15
 */
16
abstract class AbstractField
17
{
18
    /**
19
     * @var DataSet The DataSet from which this field take values by path.
20
     */
21
    protected $dataSet;
22
23
    /**
24
     * @var mixed Value to compare parse result.
25
     */
26
    protected $assert;
27
28
    /**
29
     * @var array Cache to found values.
30
     */
31
    protected $propertyCache = [];
32
33
    /**
34
     * Read and process data from Stream.
35
     *
36
     * @api
37
     * @param AbstractStream $stream Stream from which field should read.
38
     * @return mixed Processed value.
39
     */
40
    abstract public function parse(AbstractStream $stream);
41
42
    /**
43
     * Associate given values to appropriate class properties.
44
     *
45
     * @param array $properties Associative array of properties values.
46
     */
47 54
    public function configure(array $properties)
48
    {
49 54
        foreach ($properties as $name => $value) {
50 32
            $methodName = 'set' . ucfirst(strtolower($name));
51 32
            if (method_exists($this, $methodName)) {
52 32
                $this->$methodName($value);
53 31
            }
54 53
        }
55 53
    }
56
57
    /**
58
     * Return DataSet instance from which this field take back linked values.
59
     *
60
     * @return DataSet DataSet corresponding this field.
61
     */
62 6
    public function getDataSet()
63
    {
64 6
        return $this->dataSet;
65
    }
66
67
    /**
68
     * Set to field DataSet instance for back links.
69
     *
70
     * @param DataSet $dataSet DataSet ro correspond to this field.
71
     * @return self For chaining.
72
     */
73 9
    public function setDataSet(DataSet $dataSet)
74
    {
75 9
        $this->dataSet = $dataSet;
76 9
        return $this;
77
    }
78
79
    /**
80
     * @return mixed
81
     */
82 19
    public function getAssert()
83
    {
84 19
        return $this->assert;
85
    }
86
87
    /**
88
     * @param mixed $assert
89
     * @return $this
90
     */
91 14
    public function setAssert($assert)
92
    {
93 14
        $this->assert = $assert;
94 14
        return $this;
95
    }
96
97
    /**
98
     * Check that given value is valid.
99
     *
100
     * @param $value mixed Checked value.
101
     * @return true On success validation.
0 ignored issues
show
Should the return type not be boolean?

This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.

Loading history...
102
     * @throws AssertException On assertion fail.
103
     */
104 19
    public function validate($value)
105
    {
106 19
        $assert = $this->getAssert();
107 19
        if ($assert !== null) {
108 8
            if (is_callable($assert)) {
109 2
                if (!call_user_func($assert, $value, $this)) {
110 1
                    throw new AssertException(
111 1
                        sprintf('Custom validation fail with value (%s) "%s"', gettype($value), print_r($value, true))
112 1
                    );
113
                }
114 1
            } else {
115 7
                if ($value !== $assert) {
116 3
                    throw new AssertException(
117 3
                        sprintf(
118 3
                            'Failed asserting that actual value (%s) "%s" matches expected value (%s) "%s".',
119 3
                            gettype($value),
120 3
                            print_r($value, true),
121 3
                            gettype($assert),
122 3
                            print_r($assert, true)
123 3
                        )
124 3
                    );
125
                }
126
            }
127 4
        }
128
129 15
        return true;
130
    }
131
132
    /**
133
     * Process, set and return given property.
134
     *
135
     * Find given property in DataSet if it was set as path string and return it.
136
     * Otherwise already set value will be returned.
137
     *
138
     * @param string $name Property name.
139
     * @return int|string|array|null Found or already set property value.
140
     */
141 32
    protected function resolveProperty($name)
142
    {
143 32
        $value = $this->$name;
144 32
        if (is_callable($value)) {
145 2
            return call_user_func($value, $this);
146
        }
147
148 31
        return $this->resolveValue($value);
149
    }
150
151
    /**
152
     * Find value in DataSet by given value if it is a path string.
153
     * Otherwise given value will be returned.
154
     *
155
     * @param $value
156
     * @return array|int|null|string
157
     * @since 0.2
158
     */
159 31
    private function resolveValue($value)
160
    {
161 31
        if (DataSet::isPath($value)) {
162 6
            if (empty($this->dataSet)) {
163 1
                throw new ConfigurationException('DataSet is required to resole value by path.');
164
            }
165 5
            $value = $this->dataSet->resolvePath($value);
166 5
        }
167
168 30
        if (is_array($value)) {
169 1
            foreach ($value as $key => $subValue) {
170 1
                $value[$key] = $this->resolveValue($subValue);
171 1
            }
172 1
        }
173
174 30
        return $value;
175
    }
176
}