Issues (4122)

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.

includes/XmlSelect.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
 * Class for generating HTML <select> elements.
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation; either version 2 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License along
16
 * with this program; if not, write to the Free Software Foundation, Inc.,
17
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
 * http://www.gnu.org/copyleft/gpl.html
19
 *
20
 * @file
21
 */
22
23
/**
24
 * Class for generating HTML <select> or <datalist> elements.
25
 */
26
class XmlSelect {
27
	protected $options = [];
28
	protected $default = false;
29
	protected $tagName = 'select';
30
	protected $attributes = [];
31
32
	public function __construct( $name = false, $id = false, $default = false ) {
33
		if ( $name ) {
34
			$this->setAttribute( 'name', $name );
35
		}
36
37
		if ( $id ) {
38
			$this->setAttribute( 'id', $id );
39
		}
40
41
		if ( $default !== false ) {
42
			$this->default = $default;
43
		}
44
	}
45
46
	/**
47
	 * @param string|array $default
48
	 */
49
	public function setDefault( $default ) {
50
		$this->default = $default;
0 ignored issues
show
Documentation Bug introduced by
It seems like $default of type string or array is incompatible with the declared type boolean of property $default.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

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

Loading history...
51
	}
52
53
	/**
54
	 * @param string|array $tagName
55
	 */
56
	public function setTagName( $tagName ) {
57
		$this->tagName = $tagName;
58
	}
59
60
	/**
61
	 * @param string $name
62
	 * @param string $value
63
	 */
64
	public function setAttribute( $name, $value ) {
65
		$this->attributes[$name] = $value;
66
	}
67
68
	/**
69
	 * @param string $name
70
	 * @return string|null
71
	 */
72
	public function getAttribute( $name ) {
73
		if ( isset( $this->attributes[$name] ) ) {
74
			return $this->attributes[$name];
75
		} else {
76
			return null;
77
		}
78
	}
79
80
	/**
81
	 * @param string $label
82
	 * @param string $value If not given, assumed equal to $label
83
	 */
84
	public function addOption( $label, $value = false ) {
85
		$value = $value !== false ? $value : $label;
86
		$this->options[] = [ $label => $value ];
87
	}
88
89
	/**
90
	 * This accepts an array of form
91
	 * label => value
92
	 * label => ( label => value, label => value )
93
	 *
94
	 * @param array $options
95
	 */
96
	public function addOptions( $options ) {
97
		$this->options[] = $options;
98
	}
99
100
	/**
101
	 * This accepts an array of form:
102
	 * label => value
103
	 * label => ( label => value, label => value )
104
	 *
105
	 * @param array $options
106
	 * @param string|array $default
107
	 * @return string
108
	 */
109
	static function formatOptions( $options, $default = false ) {
110
		$data = '';
111
112
		foreach ( $options as $label => $value ) {
113
			if ( is_array( $value ) ) {
114
				$contents = self::formatOptions( $value, $default );
115
				$data .= Html::rawElement( 'optgroup', [ 'label' => $label ], $contents ) . "\n";
116
			} else {
117
				// If $default is an array, then the <select> probably has the multiple attribute,
118
				// so we should check if each $value is in $default, rather than checking if
119
				// $value is equal to $default.
120
				$selected = is_array( $default ) ? in_array( $value, $default ) : $value === $default;
121
				$data .= Xml::option( $label, $value, $selected ) . "\n";
122
			}
123
		}
124
125
		return $data;
126
	}
127
128
	/**
129
	 * @return string
130
	 */
131
	public function getHTML() {
132
		$contents = '';
133
134
		foreach ( $this->options as $options ) {
135
			$contents .= self::formatOptions( $options, $this->default );
136
		}
137
138
		return Html::rawElement( $this->tagName, $this->attributes, rtrim( $contents ) );
139
	}
140
}
141