Issues (45)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  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.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  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.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  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.
  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.
  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.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
  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.
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  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.
  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.
  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.
  Header Injection
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/Bind.php (3 issues)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ray\Aop;
6
7
use Doctrine\Common\Annotations\AnnotationException;
8
use ReflectionClass;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Ray\Aop\ReflectionClass. Consider defining an alias.

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...
9
10
use function array_key_exists;
11
use function array_merge;
12
use function serialize;
13
14
final class Bind implements BindInterface
15
{
16
    /** @var array<string, array<MethodInterceptor>> */
17
    private $bindings = [];
18
19
    /** @var MethodMatch */
20
    private $methodMatch;
21
22
    /**
23
     * @throws AnnotationException
24
     */
25 40
    public function __construct()
26
    {
27 40
        $this->methodMatch = new MethodMatch($this);
28 40
    }
29
30
    /**
31
     * @return list<string>
0 ignored issues
show
The type Ray\Aop\list was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
32
     */
33 31
    public function __sleep(): array
34
    {
35 31
        return ['bindings'];
0 ignored issues
show
Bug Best Practice introduced by
The expression return array('bindings') returns the type array<integer,string> which is incompatible with the documented return type Ray\Aop\list.
Loading history...
36 31
    }
37
38 31
    /**
39
     * {@inheritdoc}
40
     */
41
    public function bind(string $class, array $pointcuts): BindInterface
42
    {
43
        $pointcuts = $this->getAnnotationPointcuts($pointcuts);
44 37
        $class = new ReflectionClass($class);
45
        $methods = $class->getMethods(ReflectionMethod::IS_PUBLIC);
46 37
        foreach ($methods as $method) {
47 3
            ($this->methodMatch)($class, $method, $pointcuts);
48 3
        }
49
50
        return $this;
51 37
    }
52
53
    /**
54
     * {@inheritdoc}
55
     */
56
    public function bindInterceptors(string $method, array $interceptors): BindInterface
57 34
    {
58
        $this->bindings[$method] = ! array_key_exists($method, $this->bindings) ? $interceptors : array_merge(
59 34
            $this->bindings[$method],
60
            $interceptors
61
        );
62
63
        return $this;
64
    }
65 18
66
    /**
67 18
     * {@inheritdoc}
68
     */
69 18
    public function getBindings(): array
70
    {
71
        return $this->bindings;
72
    }
73
74
    /**
75
     * {@inheritdoc}
76
     */
77 31
    public function toString($salt): string
78
    {
79 31
        unset($salt);
80 31
81 31
        return serialize($this->bindings);
82 2
    }
83
84 31
    /**
85
     * @param Pointcut[] $pointcuts
86
     *
87 31
     * @return Pointcut[]
88
     */
89
    public function getAnnotationPointcuts(array &$pointcuts): array
90 31
    {
91
        $keyPointcuts = [];
92 31
        foreach ($pointcuts as $key => $pointcut) {
93 31
            if ($pointcut->methodMatcher instanceof AnnotatedMatcher) {
94 31
                $key = $pointcut->methodMatcher->annotation;
95
            }
96 31
97
            $keyPointcuts[$key] = $pointcut;
98 31
        }
99
100 31
        return $keyPointcuts;
101
    }
102
}
103