Issues (7)

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/Exception/AggregateException.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 namespace BuildR\Foundation\Exception;
2
3
use BuildR\Foundation\Object\ArrayConvertibleInterface;
4
use \Exception;
0 ignored issues
show
This use statement conflicts with another class in this namespace, BuildR\Foundation\Exception\Exception.

Let’s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let’s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
5
use \IteratorAggregate;
6
use \ArrayIterator;
7
use \Countable;
8
9
/**
10
 * Aggregates multiple PHP exception into one exception. Useful when iterating over
11
 * large set of objects and call a method on each that might be raise an exception.
12
 *
13
 * Simply aggregate all thrown exception to this class and throw it when the
14
 * iteration is end.
15
 *
16
 * BuildR PHP Framework
17
 *
18
 * @author Zoltán Borsos <[email protected]>
19
 * @package Foundation
20
 * @subpackage Exception
21
 *
22
 * @copyright    Copyright 2015, Zoltán Borsos.
23
 * @license      https://github.com/Zolli/BuildR/blob/master/LICENSE.md
24
 * @link         https://github.com/Zolli/BuildR
25
 *
26
 * @codeCoverageIgnore
27
 */
28
class AggregateException extends Exception implements \IteratorAggregate, Countable, ArrayConvertibleInterface {
29
30
    /**
31
     * @var array
32
     */
33
    private $collection = [];
34
35
    /**
36
     * Add a new exception to the stack
37
     *
38
     * @param \Exception|\Throwable $exception
39
     */
40
    public function add($exception) {
41
        if($this->checkException($exception) === FALSE) {
42
            trigger_error(
43
                'Only subclasses of \Exception and implementations of \Throwable can be aggregated!',
44
                E_USER_ERROR
45
            );
46
        }
47
48
        $this->collection[] = $exception;
49
    }
50
51
    /**
52
     * Check the exception
53
     *
54
     * @param \Throwable|\Exception $exception
55
     * @return bool
56
     *
57
     * @codeCoverageIgnore
58
     */
59
    private function checkException($exception) {
60
        if(version_compare(PHP_VERSION, '7.0.0', '>=')) {
61
            return in_array("Throwable", class_implements($exception));
62
        }
63
64
        return ($exception instanceof Exception);
65
    }
66
67
    /**
68
     * Determines, the current exception stack contains any exception
69
     *
70
     * @return bool
71
     */
72
    public function hasAny() {
73
        return ($this->count() > 0);
74
    }
75
76
    /**
77
     * {@inheritDoc}
78
     */
79
    public function getIterator() {
80
        return new ArrayIterator($this->collection);
81
    }
82
83
    /**
84
     * {@inheritDoc}
85
     */
86
    public function toArray() {
87
        return $this->collection;
88
    }
89
90
    /**
91
     * {@inheritDoc}
92
     */
93
    public function count() {
94
        return count($this->collection);
95
    }
96
97
}
98