Issues (4)

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/CodeCoverageReporters.php (1 issue)

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
3
namespace Peridot\Reporter;
4
5
use Evenement\EventEmitterInterface;
6
use Peridot\Console\Environment;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Input\InputOption;
9
use Symfony\Component\Console\Output\OutputInterface;
10
11
/**
12
 * Class CodeCoverageReporters
13
 * @package Peridot\Reporter
14
 */
15
class CodeCoverageReporters
16
{
17
    /**
18
     * @var \Peridot\Reporter\CodeCoverageConfiguration
19
     */
20
    protected $configuration;
21
22
    /**
23
     * @var EventEmitterInterface
24
     */
25
    protected $eventEmitter;
26
27
    /**
28
     * Constructor.
29
     *
30
     * @param EventEmitterInterface $eventEmitter
31
     * @param CodeCoverageConfiguration|null $configuration
32
     */
33
    public function __construct(EventEmitterInterface $eventEmitter, CodeCoverageConfiguration $configuration = null)
34
    {
35
        if (!$configuration) {
36
            $configuration = new CodeCoverageConfiguration($eventEmitter);
37
        }
38
39
        $this->configuration = $configuration;
40
        $this->eventEmitter = $eventEmitter;
41
    }
42
43
    /**
44
     * Handle the peridot.execute event.
45
     *
46
     * @param InputInterface $input
47
     * @param OutputInterface $output
48
     */
49
    public function onPeridotExecute(InputInterface $input, OutputInterface $output)
0 ignored issues
show
The parameter $output is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
50
    {
51
        if ($input->hasOption('code-coverage-path')) {
52
            $this->configuration->setReportPath($input->getOption('code-coverage-path'));
53
        }
54
    }
55
56
    /**
57
     * Handle the peridot.reporters event.
58
     *
59
     * @param InputInterface $input
60
     * @param ReporterFactory $reporterFactory
61
     */
62
    public function onPeridotReporters(InputInterface $input, ReporterFactory $reporterFactory)
63
    {
64
        $reporterFactory->register(
65
            'clover-code-coverage',
66
            'Code coverage with a PHP_CodeCoverage style Clover report',
67
            'Peridot\Reporter\CodeCoverage\CloverCodeCoverageReporter'
68
        );
69
70
        $reporterFactory->register(
71
            'crap4j-code-coverage',
72
            'Code coverage with a PHP_CodeCoverage style Crap4J report',
73
            'Peridot\Reporter\CodeCoverage\Crap4JCodeCoverageReporter'
74
        );
75
76
        $reporterFactory->register(
77
            'html-code-coverage',
78
            'Code coverage with a PHP_CodeCoverage style HTML report',
79
            'Peridot\Reporter\CodeCoverage\HTMLCodeCoverageReporter'
80
        );
81
82
        $reporterFactory->register(
83
            'php-code-coverage',
84
            'Code coverage with a PHP_CodeCoverage style PHP report',
85
            'Peridot\Reporter\CodeCoverage\PHPCodeCoverageReporter'
86
        );
87
88
        $reporterFactory->register(
89
            'text-code-coverage',
90
            'Code coverage with a PHP_CodeCoverage style Text report',
91
            'Peridot\Reporter\CodeCoverage\TextCodeCoverageReporter'
92
        );
93
94
        $reporterFactory->register(
95
            'xml-code-coverage',
96
            'Code coverage with a PHP_CodeCoverage style XML report',
97
            'Peridot\Reporter\CodeCoverage\XMLCodeCoverageReporter'
98
        );
99
    }
100
101
    public function onPeridotStart(Environment $environment)
102
    {
103
        $environment->getDefinition()->option(
104
            'code-coverage-path',
105
            'coverage',
106
            InputOption::VALUE_REQUIRED,
107
            'Set the output directory for code coverage reporter'
108
        );
109
    }
110
111
    /**
112
     * Register the reporters.
113
     *
114
     * @return $this
115
     */
116
    public function register()
117
    {
118
        $this->eventEmitter->on('peridot.start', [$this, 'onPeridotStart']);
119
        $this->eventEmitter->on('peridot.execute', [$this, 'onPeridotExecute']);
120
        $this->eventEmitter->on('peridot.reporters', [$this, 'onPeridotReporters']);
121
        return $this;
122
    }
123
}
124