Issues (201)

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.

includes/Admin/View/Helper/Panel.php (1 issue)

Labels
Severity

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
namespace Redaxscript\Admin\View\Helper;
3
4
use Redaxscript\Admin;
5
use Redaxscript\Html;
6
use Redaxscript\Module;
7
use Redaxscript\Validator;
8
use function array_key_exists;
9
use function array_replace_recursive;
10
use function count;
11
12
/**
13
 * helper class to create the admin panel
14
 *
15
 * @since 4.0.0
16
 *
17
 * @package Redaxscript
18
 * @category View
19
 * @author Henry Ruhs
20
 */
21
22
class Panel extends Admin\View\ViewAbstract
23
{
24
	/**
25
	 * options of the panel
26
	 *
27
	 * @var array
28
	 */
29
30
	protected array $_optionArray =
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_ARRAY, expecting T_FUNCTION or T_CONST
Loading history...
31
	[
32
		'className' =>
33
		[
34
			'list' =>
35
			[
36
				'panel' => 'rs-admin-fn-dropdown rs-admin-list-panel',
37
				'content' => 'rs-admin-fn-content-panel rs-admin-list-panel-children',
38
				'access' => 'rs-admin-fn-content-panel rs-admin-list-panel-children',
39
				'system' => 'rs-admin-fn-content-panel rs-admin-list-panel-children',
40
				'notification' => 'rs-admin-fn-content-panel rs-admin-list-panel-children rs-admin-list-notification'
41
			],
42
			'item' =>
43
			[
44
				'content' => 'rs-admin-item-panel',
45
				'access' => 'rs-admin-item-panel',
46
				'system' => 'rs-admin-item-panel',
47
				'profile' => 'rs-admin-item-panel',
48
				'notification' => 'rs-admin-item-panel',
49
				'logout' => 'rs-admin-item-panel rs-admin-item-panel-logout'
50
			],
51
			'link' =>
52
			[
53
				'view' => 'rs-admin-link-panel rs-admin-link-panel-view',
54
				'new' => 'rs-admin-link-panel rs-admin-link-panel-new',
55
				'system' => 'rs-admin-link-panel rs-admin-link-panel-system',
56
				'profile' => 'rs-admin-link-panel rs-admin-link-panel-profile',
57
				'logout' => 'rs-admin-link-panel rs-admin-link-panel-logout'
58
			],
59
			'label' =>
60
			[
61
				'content' => 'rs-admin-fn-toggle-panel rs-admin-label-panel rs-admin-label-panel-content',
62
				'access' => 'rs-admin-fn-toggle-panel rs-admin-label-panel rs-admin-label-panel-access',
63
				'system' => 'rs-admin-fn-toggle-panel rs-admin-label-panel rs-admin-label-panel-system',
64
				'notification' => 'rs-admin-fn-toggle-panel rs-admin-label-panel rs-admin-label-panel-notification'
65
			],
66
			'note' =>
67
			[
68
				'success' => 'rs-admin-is-success',
69
				'warning' => 'rs-admin-is-warning',
70
				'error' => 'rs-admin-is-error',
71
				'info' => 'rs-admin-is-info'
72
			],
73
			'text' => 'rs-admin-text-panel-group',
74
			'input' => 'rs-admin-fn-status-panel',
75
			'sup' => 'rs-admin-sup-panel-notification'
76
		]
77
	];
78
79
	/**
80
	 * init the class
81
	 *
82
	 * @since 4.0.0
83
	 *
84
	 * @param array $optionArray options of the panel
85
	 *
86
	 * @return self
87
	 */
88
89 8
	public function init(array $optionArray = []) : self
90
	{
91 8
		$this->_optionArray = array_replace_recursive($this->_optionArray, $optionArray);
92 8
		return $this;
93
	}
94
95
	/**
96
	 * render the view
97
	 *
98
	 * @since 4.0.0
99
	 *
100
	 * @return string
101
	 */
102
103 8
	public function render() : string
104
	{
105 8
		$output = Module\Hook::trigger('adminPanelStart');
106 8
		$outputItem = null;
107
108
		/* html element */
109
110 8
		$listElement = new Html\Element();
111 8
		$listElement->init('ul',
112
		[
113 8
			'class' => $this->_optionArray['className']['list']['panel']
114
		]);
115
116
		/* collect item output */
117
118 8
		if ($this->_hasPermission('contents'))
119
		{
120 2
			$outputItem .= $this->_renderContent();
121
		}
122 8
		if ($this->_hasPermission('access'))
123
		{
124 2
			$outputItem .= $this->_renderAccess();
125
		}
126 8
		if ($this->_hasPermission('system'))
127
		{
128 1
			$outputItem .= $this->_renderSystem();
129
		}
130 8
		if ($this->_hasPermission('profile'))
131
		{
132 1
			$outputItem .= $this->_renderProfile();
133
		}
134 8
		if ($this->_hasPermission('notification'))
135
		{
136 1
			$outputItem .= $this->_renderNotification();
137
		}
138 8
		$outputItem .= $this->_renderLogout();
139
140
		/* collect output */
141
142 8
		if ($outputItem)
143
		{
144 8
			$output .= $listElement->html($outputItem);
145
		}
146 8
		$output .= Module\Hook::trigger('adminPanelEnd');
147 8
		return $output;
148
	}
149
150
	/**
151
	 * has the permission
152
	 *
153
	 * @since 4.0.0
154
	 *
155
	 * @param string $type
156
	 *
157
	 * @return bool
158
	 */
159
160 8
	protected function _hasPermission(string $type = null) : bool
161
	{
162 8
		$permissionArray = [];
163 8
		$accessValidator = new Validator\Access();
164 8
		if ($this->_registry->get('categoriesEdit'))
165
		{
166 2
			$permissionArray['categories'] = $permissionArray['contents'] = true;
167
		}
168 8
		if ($this->_registry->get('articlesEdit'))
169
		{
170
			$permissionArray['articles'] = $permissionArray['contents'] = true;
171
		}
172 8
		if ($this->_registry->get('extrasEdit'))
173
		{
174
			$permissionArray['extras'] = $permissionArray['contents'] = true;
175
		}
176 8
		if ($this->_registry->get('commentsEdit'))
177
		{
178
			$permissionArray['comments'] = $permissionArray['contents'] = true;
179
		}
180 8
		if ($this->_registry->get('usersEdit'))
181
		{
182 2
			$permissionArray['users'] = $permissionArray['access'] = true;
183
		}
184 8
		if ($this->_registry->get('groupsEdit'))
185
		{
186
			$permissionArray['groups'] = $permissionArray['access'] = true;
187
		}
188 8
		if ($this->_registry->get('modulesEdit'))
189
		{
190 1
			$permissionArray['modules'] = $permissionArray['system'] = true;
191
		}
192 8
		if ($this->_registry->get('settingsEdit'))
193
		{
194 1
			$permissionArray['settings'] = $permissionArray['system'] = true;
195
		}
196 8
		if ($this->_registry->get('myId'))
197
		{
198 1
			$permissionArray['profile'] = true;
199
		}
200 8
		if ($accessValidator->validate(1, $this->_registry->get('myGroups')))
201
		{
202 1
			$permissionArray['notification'] = true;
203
		}
204 8
		return array_key_exists($type, $permissionArray);
205
	}
206
207
	/**
208
	 * render the content
209
	 *
210
	 * @since 4.0.0
211
	 *
212
	 * @return string|null
213
	 */
214
215 2
	protected function _renderContent() : ?string
216
	{
217 2
		$output = null;
218 2
		$parameterRoute = $this->_registry->get('parameterRoute');
219
		$contentArray =
220
		[
221 2
			'categories',
222
			'articles',
223
			'extras',
224
			'comments'
225
		];
226
227
		/* html element */
228
229 2
		$element = new Html\Element();
230
		$listElement = $element
231 2
			->copy()
232 2
			->init('ul',
233
			[
234 2
				'class' => $this->_optionArray['className']['list']['content']
235
			]);
236 2
		$itemElement = $element->copy()->init('li');
237 2
		$linkElement = $element->copy()->init('a');
238
		$textElement = $element
239 2
			->copy()
240 2
			->init('span',
241
			[
242 2
				'class' => $this->_optionArray['className']['text']
243
			]);
244
		$labelElement = $element
245 2
			->copy()
246 2
			->init('label',
247
			[
248 2
				'class' => $this->_optionArray['className']['label']['content'],
249
				'for' => self::class . '\Content'
250
			])
251 2
			->text($this->_language->get('contents'));
252
		$inputElement = $element
253 2
			->copy()
254 2
			->init('input',
255
			[
256 2
				'id' => self::class . '\Content',
257 2
				'class' => $this->_optionArray['className']['input'],
258 2
				'type' => 'radio',
259
				'name' => self::class . '\Panel'
260
			]);
261
262
		/* process contents */
263
264 2
		foreach ($contentArray as $type)
265
		{
266 2
			$tableNew = $this->_registry->get($type . 'New');
267 2
			if ($this->_hasPermission($type))
268
			{
269 2
				$listElement->append(
270
					$itemElement
271 2
						->copy()
272 2
						->html(
273
							$textElement
274 2
								->copy()
275 2
								->append(
276
									$linkElement
277 2
										->copy()
278 2
										->addClass($this->_optionArray['className']['link']['view'])
279 2
										->attr('href', $parameterRoute . 'admin/view/' . $type)
280 2
										->text($this->_language->get($type))
281
								)
282 2
								->append($tableNew ? $linkElement
283 1
									->copy()
284 1
									->addClass($this->_optionArray['className']['link']['new'])
285 1
									->attr('href', $parameterRoute . 'admin/new/' . $type)
286 2
									->text($this->_language->get('new')) : null
287
								)
288
						)
289
				);
290
			}
291
		}
292
293
		/* collect output */
294
295
		$output .= $itemElement
296 2
			->copy()
297 2
			->addClass($this->_optionArray['className']['item']['content'])
298 2
			->html($inputElement . $labelElement . $listElement);
299 2
		return $output;
300
	}
301
302
	/**
303
	 * render the access
304
	 *
305
	 * @since 4.0.0
306
	 *
307
	 * @return string|null
308
	 */
309
310 2
	protected function _renderAccess() : ?string
311
	{
312 2
		$output = null;
313 2
		$parameterRoute = $this->_registry->get('parameterRoute');
314
		$accessArray =
315
		[
316 2
			'users',
317
			'groups'
318
		];
319
320
		/* html element */
321
322 2
		$element = new Html\Element();
323
		$listElement = $element
324 2
			->copy()
325 2
			->init('ul',
326
			[
327 2
				'class' => $this->_optionArray['className']['list']['access']
328
			]);
329 2
		$itemElement = $element->copy()->init('li');
330 2
		$linkElement = $element->copy()->init('a');
331
		$textElement = $element
332 2
			->copy()
333 2
			->init('span',
334
			[
335 2
				'class' => $this->_optionArray['className']['text']
336
			]);
337
		$labelElement = $element
338 2
			->copy()
339 2
			->init('label',
340
			[
341 2
				'class' => $this->_optionArray['className']['label']['access'],
342
				'for' => self::class . '\Access'
343
			])
344 2
			->text($this->_language->get('access'));
345
		$inputElement = $element
346 2
			->copy()
347 2
			->init('input',
348
			[
349 2
				'id' => self::class . '\Access',
350 2
				'class' => $this->_optionArray['className']['input'],
351 2
				'type' => 'radio',
352
				'name' => self::class . '\Panel'
353
			]);
354
355
		/* process access */
356
357 2
		foreach ($accessArray as $type)
358
		{
359 2
			$tableNew = $this->_registry->get($type . 'New');
360 2
			if ($this->_hasPermission($type))
361
			{
362 2
				$listElement->append(
363
					$itemElement
364 2
						->copy()
365 2
						->html(
366
							$textElement
367 2
								->copy()
368 2
								->append(
369
									$linkElement
370 2
										->copy()
371 2
										->addClass($this->_optionArray['className']['link']['view'])
372 2
										->attr('href', $parameterRoute . 'admin/view/' . $type)
373 2
										->text($this->_language->get($type))
374
								)
375 2
								->append($tableNew ? $linkElement
376 1
									->copy()
377 1
									->addClass($this->_optionArray['className']['link']['new'])
378 1
									->attr('href', $parameterRoute . 'admin/new/' . $type)
379 2
									->text($this->_language->get('new')) : null
380
								)
381
						)
382
				);
383
			}
384
		}
385
386
		/* collect output */
387
388
		$output .= $itemElement
389 2
			->copy()
390 2
			->addClass($this->_optionArray['className']['item']['access'])
391 2
			->html($inputElement . $labelElement . $listElement);
392 2
		return $output;
393
	}
394
395
	/**
396
	 * render the system
397
	 *
398
	 * @since 4.0.0
399
	 *
400
	 * @return string|null
401
	 */
402
403 1
	protected function _renderSystem() : ?string
404
	{
405 1
		$output = null;
406 1
		$parameterRoute = $this->_registry->get('parameterRoute');
407
		$systemArray =
408
		[
409 1
			'modules',
410
			'settings'
411
		];
412
413
		/* html element */
414
415 1
		$element = new Html\Element();
416
		$listElement = $element
417 1
			->copy()
418 1
			->init('ul',
419
			[
420 1
				'class' => $this->_optionArray['className']['list']['system']
421
			]);
422 1
		$itemElement = $element->copy()->init('li');
423
		$linkElement = $element
424 1
			->copy()
425 1
			->init('a',
426
			[
427 1
				'class' => $this->_optionArray['className']['link']['system'],
428
			]);
429
		$labelElement = $element
430 1
			->copy()
431 1
			->init('label',
432
			[
433 1
				'class' => $this->_optionArray['className']['label']['system'],
434
				'for' => self::class . '\System'
435
			])
436 1
			->text($this->_language->get('system'));
437
		$inputElement = $element
438 1
			->copy()
439 1
			->init('input',
440
			[
441 1
				'id' => self::class . '\System',
442 1
				'class' => $this->_optionArray['className']['input'],
443 1
				'type' => 'radio',
444
				'name' => self::class . '\Panel'
445
			]);
446
447
		/* process system */
448
449 1
		foreach ($systemArray as $type)
450
		{
451 1
			if ($this->_hasPermission($type))
452
			{
453 1
				$listElement->append(
454
					$itemElement
455 1
						->copy()
456 1
						->html(
457
							$linkElement
458 1
								->copy()
459 1
								->attr('href', $type === 'settings' ? $parameterRoute . 'admin/edit/settings' : $parameterRoute . 'admin/view/' . $type)
460 1
								->text($this->_language->get($type))
461
						)
462
				);
463
			}
464
		}
465
466
		/* collect output */
467
468
		$output .= $itemElement
469 1
			->copy()
470 1
			->addClass($this->_optionArray['className']['item']['system'])
471 1
			->html($inputElement . $labelElement . $listElement);
472 1
		return $output;
473
	}
474
475
	/**
476
	 * render the profile
477
	 *
478
	 * @since 4.0.0
479
	 *
480
	 * @return string
481
	 */
482
483 1
	protected function _renderProfile() : string
484
	{
485 1
		$parameterRoute = $this->_registry->get('parameterRoute');
486 1
		$myId = $this->_registry->get('myId');
487
488
		/* html element */
489
490 1
		$element = new Html\Element();
491
		$itemElement = $element
492 1
			->copy()
493 1
			->init('li',
494
			[
495 1
				'class' => $this->_optionArray['className']['item']['profile']
496
			]);
497
		$linkElement = $element
498 1
			->copy()
499 1
			->init('a',
500
			[
501 1
				'href' => $parameterRoute . 'admin/edit/users/' . $myId,
502 1
				'class' => $this->_optionArray['className']['link']['profile']
503
			])
504 1
			->text($this->_language->get('profile'));
505
506
		/* collect item output */
507
508 1
		$output = $itemElement->html($linkElement);
509 1
		return $output;
510
	}
511
512
	/**
513
	 * render the notification
514
	 *
515
	 * @since 4.0.0
516
	 *
517
	 * @return string|null
518
	 */
519
520 1
	protected function _renderNotification() : ?string
521
	{
522 1
		$output = null;
523 1
		$adminNotification = new Notification($this->_language);
524 1
		$adminNotification->init(
525
		[
526
			'className' =>
527
			[
528 1
				'list' => $this->_optionArray['className']['list']['notification']
529
			]
530
		]);
531 1
		$notificationArray = $adminNotification->getNotificationArray();
532 1
		$notificationTotal = 0;
533
534
		/* html element */
535
536 1
		$element = new Html\Element();
537
		$itemElement = $element
538 1
			->copy()
539 1
			->init('li',
540
			[
541 1
				'class' => $this->_optionArray['className']['item']['notification']
542
			]);
543
		$labelElement = $element
544 1
			->copy()
545 1
			->init('label',
546
			[
547 1
				'class' => $this->_optionArray['className']['label']['notification'],
548
				'for' => self::class . '\Notification'
549
			])
550 1
			->text($this->_language->get('notification'));
551
		$inputElement = $element
552 1
			->copy()
553 1
			->init('input',
554
			[
555 1
				'id' => self::class . '\Notification',
556 1
				'class' => $this->_optionArray['className']['input'],
557 1
				'type' => 'radio',
558
				'name' => self::class . '\Panel',
559 1
				'checked' => 'checked'
560
			]);
561
		$supElement = $element
562 1
			->copy()
563 1
			->init('sup',
564
			[
565 1
				'class' => $this->_optionArray['className']['sup']
566
			]);
567
568
		/* process notification */
569
570 1
		foreach ($notificationArray as $key => $value)
571
		{
572 1
			$supElement->addClass($this->_optionArray['className']['note'][$key]);
573 1
			$notificationTotal += count($value);
574
		}
575 1
		$labelElement->append($supElement->text($notificationTotal < 10 ? $notificationTotal : '+'));
576
577
		/* collect item output */
578
579 1
		if ($notificationArray)
580
		{
581 1
			$output = $itemElement->html($inputElement . $labelElement . $adminNotification->render());
582
		}
583 1
		return $output;
584
	}
585
586
	/**
587
	 * render the logout
588
	 *
589
	 * @since 4.0.0
590
	 *
591
	 * @return string
592
	 */
593
594 8
	protected function _renderLogout() : string
595
	{
596 8
		$parameterRoute = $this->_registry->get('parameterRoute');
597
598
		/* html element */
599
600 8
		$element = new Html\Element();
601
		$itemElement = $element
602 8
			->copy()
603 8
			->init('li',
604
			[
605 8
				'class' => $this->_optionArray['className']['item']['logout']
606
			]);
607
		$linkElement = $element
608 8
			->copy()
609 8
			->init('a',
610
			[
611 8
				'href' => $parameterRoute . 'logout',
612 8
				'class' => $this->_optionArray['className']['link']['logout']
613
			])
614 8
			->text($this->_language->get('logout'));
615
616
		/* collect item output */
617
618 8
		$output = $itemElement->html($linkElement);
619 8
		return $output;
620
	}
621
}
622