Issues (319)

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/NavigationBar/AbstractNavigationBar.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
 * @company MTE Telecom, Ltd.
4
 * @author Ushkov Nikolai <[email protected]>
5
 * Date: 18.04.16
6
 * Time: 16:53
7
 */
8
namespace Nnx\DataGrid\NavigationBar;
9
10
use ArrayAccess;
11
use Nnx\DataGrid\Button;
12
use Nnx\DataGrid\Button\GridButtonPluginManagerAwareTrait;
13
use Nnx\DataGrid\Button\ButtonInterface;
14
/**
15
 * Class AbstractNavigationBar
16
 * @package Nnx\DataGrid\NavigationBar
17
 */
18
abstract class AbstractNavigationBar implements NavigationBarInterface
19
{
20
    use GridButtonPluginManagerAwareTrait;
21
22
    /**
23
     * Кнопки бара
24
     * @var array
25
     */
26
    protected $buttons = [];
27
28
    /**
29
     * Опции бара
30
     * @var array
31
     */
32
    protected $options = [];
33
34
    /**
35
     * @param array $options
36
     * @throws Exception\InvalidArgumentException
37
     */
38
    public function __construct($options = [])
39
    {
40
        if (empty($options['buttonPluginManager'])) {
41
            throw new Exception\InvalidArgumentException(
42
                'Для корректной работы навигационного бара в конструктор необходимо передавать buttonPluginManager.'
43
            );
44
        }
45
        $buttonPluginManager = $options['buttonPluginManager'];
46
        $this->setButtonPluginManager($buttonPluginManager);
47
        unset($options['buttonPluginManager']);
48
        $this->setOptions($options);
49
    }
50
51
52
    /**
53
     * добавить кнопку
54
     * @param ButtonInterface | array | ArrayAccess $button
55
     * @return $this
56
     * @throws Button\Exception\InvalidButtonException
57
     * @throws Exception\InvalidArgumentException
58
     * @throws Exception\RuntimeException
59
     */
60
    public function add($button)
61
    {
62
        if (is_array($button) || $button instanceof ArrayAccess) {
63
            if (!array_key_exists('type', $button)) {
64
                throw new Button\Exception\InvalidButtonException(
65
                    'Не передан тип создаваемой кнопки.'
66
                );
67
            }
68
            $button['buttonPluginManager'] = $this->getButtonPluginManager();
69
            if (!$this->getButtonPluginManager()->has($button['type'])) {
70
                throw new Exception\RuntimeException(sprintf('Кнопка с именем %s не найдена', $button['type']));
71
            }
72
            /** @var ButtonInterface $button */
73
            $button = $this->getButtonPluginManager()->get($button['type'], $button);
0 ignored issues
show
$button is of type object<Nnx\DataGrid\Button\ButtonInterface>, but the function expects a array.

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...
74
        } elseif (!$button instanceof ButtonInterface) {
75
            throw new Exception\InvalidArgumentException(
76
                sprintf('Кнопка должна быть массивом или реализовывать %s', ButtonInterface::class)
77
            );
78
        }
79
        $this->buttons[$button->getName()] = $button;
80
        return $this;
81
    }
82
83
    /**
84
     * удалить кнопку
85
     * @param $name
86
     * @return $this
87
     */
88
    public function remove($name)
89
    {
90
        unset($this->buttons[$name]);
91
        return $this;
92
    }
93
94
    /**
95
     * получить кнопки бара
96
     * @return array
97
     */
98
    public function getButtons()
99
    {
100
        return $this->buttons;
101
    }
102
103
    /**
104
     * установить кнопки бара
105
     * @param array $buttons
106
     * @return $this
107
     */
108
    public function setButtons($buttons)
109
    {
110
        $this->buttons = $buttons;
111
        return $this;
112
    }
113
114
    /**
115
     * @return array
116
     */
117
    public function getOptions()
118
    {
119
        return $this->options;
120
    }
121
122
    /**
123
     * @param array $options
124
     * @return $this
125
     */
126
    public function setOptions($options)
127
    {
128
        $this->options = $options;
129
        return $this;
130
    }
131
}
0 ignored issues
show
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
132