Issues (3)

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.

LazyEventSubscriberServiceProvider.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
namespace Spiechu\LazyPimple\DependencyInjection;
4
5
use Pimple\Container;
6
use Pimple\ServiceProviderInterface;
7
use Spiechu\LazyPimple\Factory\LazyServiceFactory;
8
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
9
10
class LazyEventSubscriberServiceProvider implements ServiceProviderInterface
11
{
12
    /**
13
     * @var LazyServiceFactory
14
     */
15
    protected $lazyServiceFactory;
16
17
    /**
18
     * @var string
19
     */
20
    protected $eventDispatcherServiceName;
21
22
    /**
23
     * @var string[]
24
     */
25
    protected $eventSubscriberServiceNames;
26
27
    /**
28
     * @param LazyServiceFactory $lazyServiceFactory
29
     * @param string             $eventDispatcherServiceName
30
     * @param string[]           $eventSubscriberServiceNames
31
     */
32 4
    public function __construct(
33
        LazyServiceFactory $lazyServiceFactory,
34
        string $eventDispatcherServiceName,
35
        array $eventSubscriberServiceNames
36
    ) {
37 4
        $this->lazyServiceFactory = $lazyServiceFactory;
38 4
        $this->eventDispatcherServiceName = $eventDispatcherServiceName;
39 4
        $this->eventSubscriberServiceNames = $eventSubscriberServiceNames;
40 4
    }
41
42
    /**
43
     * {@inheritdoc}
44
     */
45 4
    public function register(Container $container): void
46
    {
47 4
        $eventDispatcher = $this->getEventDispatcher($container);
48
49 4
        foreach ($this->eventSubscriberServiceNames as $serviceName => $className) {
50
            // remember, here we have lazy subscribers
51
            // no subscriber instantiation until listened event is being dispatched
52 4
            $lazySubscriber = $this->lazyServiceFactory->getLazyServiceDefinition(
53 4
                $className,
54
                // encapsulate the whole Pimple service definition
55
                static function () use ($container, $serviceName) {
56 1
                    return call_user_func($container->raw($serviceName), $container);
57 4
                }
58
            );
59
60 4
            $eventDispatcher->addSubscriber($lazySubscriber);
0 ignored issues
show
$lazySubscriber is of type object<ProxyManager\Proxy\VirtualProxyInterface>, but the function expects a object<Symfony\Component...entSubscriberInterface>.

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...
61
        }
62 4
    }
63
64
    /**
65
     * @param Container $container
66
     *
67
     * @throws \InvalidArgumentException When container cannot instantiate EventDispatcher object
68
     *
69
     * @return EventDispatcherInterface
70
     */
71 4
    protected function getEventDispatcher(Container $container): EventDispatcherInterface
72
    {
73 4
        $eventDispatcher = $container[$this->eventDispatcherServiceName];
74
75 4 View Code Duplication
        if (!$eventDispatcher instanceof EventDispatcherInterface) {
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
76 1
            throw new \InvalidArgumentException(sprintf(
77 1
                'Container service "%s" is "%s" and not exptected instance of "EventDispatcherInterface"',
78 1
                $this->eventDispatcherServiceName,
79 1
                \is_object($eventDispatcher) ? \get_class($eventDispatcher) : \gettype($eventDispatcher)
80
            ));
81
        }
82
83 4
        return $eventDispatcher;
84
    }
85
}
86