Issues (569)

Security Analysis    not enabled

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.

tests/unit/Task/PHPServerTest.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
use AspectMock\Test as test;
0 ignored issues
show
This use statement conflicts with another class in this namespace, test.

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...
4
5
class PHPServerTest extends \Codeception\TestCase\Test
6
{
7
    /**
8
     * @var \AspectMock\Proxy\ClassProxy
9
     */
10
    protected $process;
11
12 View Code Duplication
    protected function _before()
0 ignored issues
show
This method seems to be duplicated in 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...
13
    {
14
        $this->process = test::double('Symfony\Component\Process\Process', [
15
            'run' => false,
16
            'start' => false,
17
            'getOutput' => 'Hello world',
18
            'getExitCode' => 0,
19
            'logger' => new \Psr\Log\NullLogger(),
20
        ]);
21
        test::double('Robo\Task\Development\PhpServer', ['output' => new \Symfony\Component\Console\Output\NullOutput()]);
22
    }
23
24
    public function testServerBackgroundRun()
25
    {
26
        $task = new \Robo\Task\Development\PhpServer('8000');
27
        $task->setLogger(new \Psr\Log\NullLogger());
28
29
        $task->background()->run();
30
        $this->process->verifyInvoked('start');
31
    }
32
33
    public function testServerRun()
34
    {
35
        $task = new \Robo\Task\Development\PhpServer('8000');
36
        $task->setLogger(new \Psr\Log\NullLogger());
37
38
        $task->run();
39
        $this->process->verifyInvoked('run');
40
    }
41
42
    public function testServerCommand()
43
    {
44
        // There is an 'exec ' at the beginning of the command here when
45
        // running on Linux. Windows and MacOS do not have this prefix.
46
        $cmd = stripos(PHP_OS, 'linux') === false ? '' : 'exec ';
47
        $cmd .= 'php -S 127.0.0.1:8000 -t web';
48
49
        $this->assertEquals(
50
            $cmd,
51
            (new \Robo\Task\Development\PhpServer('8000'))
52
                ->host('127.0.0.1')
53
                ->dir('web')
54
                ->getCommand()
55
        );
56
    }
57
}
58