Issues (6)

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/Checker/Service.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 Simplario\Checker\Checker;
4
5
use Simplario\Checker\ResultException\FailException;
6
use Simplario\Checker\ResultException\SuccessException;
7
8
/**
9
 * Class Service
10
 *
11
 * @package Simplario\Checker\Checker
12
 */
13
class Service extends AbstractChecker
14 3
{
15
    /**
16 3
     * @var string
17 3
     */
18 3
    protected $target = 'name';
19 3
20 3
    /**
21
     * @param string $command
22 3
     *
23
     * @return string
24 3
     */
25 3
    protected function runCommand($command)
26
    {
27 3
        $output = '';
28
        $process = popen($command, 'r');
29
        while (!feof($process)) {
30 2
            $t = fread($process, 4096);
31
            $output .= $t;
32 2
        }
33
        pclose($process);
34 2
35 1
        $output = strtr($output, ["\n" => ' ', "\r" => ' ', "\t" => ' ']);
36
        $output = trim($output);
37
38 1
        return $output;
39
    }
40 1
41
    /**
42
     * @param string  $name
43 1
     * @param boolean $expectExists
44
     * @param array   $task
45 1
     *
46
     * @throws FailException
47 1
     * @throws SuccessException
48
     */
49 View Code Duplication
    protected function testExists($name, $expectExists, array $task)
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...
50
    {
51 1
        $output = $this->runCommand("which {$name}");
52
53 1
        if (!empty($output) === $expectExists) {
54
            throw new SuccessException('Ok', $task);
55
        }
56
57
        $msg = $expectExists ? "Service '{$name}' is not exists'" : "Service '{$name}' is exists";
58
59
        throw new FailException($msg, $task);
60
    }
61
62
    /**
63
     * @param string  $name
64
     * @param boolean $expectWhich
65
     * @param array   $task
66
     *
67
     * @throws FailException
68
     * @throws SuccessException
69
     */
70 View Code Duplication
    protected function testWhich($name, $expectWhich, array $task)
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...
71
    {
72
        $output = $this->runCommand("which {$name}");
73
74
        if ($output === $expectWhich) {
75
            throw new SuccessException('Ok', $task);
76
        }
77
78
        $msg = "Service '{$name}' expected: '{$expectWhich}', but have {$output}";
79
80
        throw new FailException($msg, $task);
81
    }
82
83
    /**
84
     * @param string $name
85
     * @param string $version
86
     * @param array  $task
87
     *
88
     * @throws FailException
89
     * @throws SuccessException
90
     */
91
    protected function testVersion($name, $version, array $task)
92
    {
93
        $output = $this->runCommand("{$name} -version || {$name} -v || {$name} --version");
94
95
        $pattern = "/{$version}/i";
96
97
        if (preg_match($pattern, $output)) {
98
            throw new SuccessException('Ok', $task);
99
        }
100
101
        $msg = "Service '{$name}' version fail '{$version}'";
102
103
        throw new FailException($msg, $task);
104
    }
105
}
106