Issues (1)

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

Labels
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
/**
4
 * Dead simple, high performance, drop-in bridge to Golang RPC with zero dependencies
5
 *
6
 * @author Wolfy-J
7
 */
8
9
declare(strict_types=1);
10
11
namespace Spiral\Goridge;
12
13
use Spiral\Goridge\RelayInterface as Relay;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Spiral\Goridge\Relay.

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...
14
15
/**
16
 * RPC bridge to Golang net/rpc package over Goridge protocol.
17
 */
18
class RPC
19
{
20
    /** @var Relay */
21
    private $relay;
22
23
    /** @var int */
24
    private $seq = 0;
25
26
    /**
27
     * @param Relay $relay
28
     */
29
    public function __construct(Relay $relay)
30
    {
31
        $this->relay = $relay;
32
    }
33
34
    /**
35
     * @param string $method
36
     * @param mixed  $payload An binary data or array of arguments for complex types.
37
     * @param int    $flags   Payload control flags.
38
     *
39
     * @return mixed
40
     *
41
     * @throws Exceptions\RelayException
42
     * @throws Exceptions\ServiceException
43
     */
44
    public function call(string $method, $payload, int $flags = 0)
45
    {
46
        $header = $method . pack('P', $this->seq);
47
        if (!$this->relay instanceof SendPackageRelayInterface) {
48
            $this->relay->send($header, Relay::PAYLOAD_CONTROL | Relay::PAYLOAD_RAW);
49
        }
50
51
        if ($flags & Relay::PAYLOAD_RAW && is_scalar($payload)) {
52
            if (!$this->relay instanceof SendPackageRelayInterface) {
53
                $this->relay->send((string)$payload, $flags);
54
            } else {
55
                $this->relay->sendPackage(
56
                    $header,
57
                    Relay::PAYLOAD_CONTROL | Relay::PAYLOAD_RAW,
58
                    (string)$payload,
59
                    $flags
60
                );
61
            }
62
        } else {
63
            $body = json_encode($payload);
64
            if ($body === false) {
65
                throw new Exceptions\ServiceException(
66
                    sprintf(
67
                        'json encode: %s',
68
                        json_last_error_msg()
69
                    )
70
                );
71
            }
72
73
            if (!$this->relay instanceof SendPackageRelayInterface) {
74
                $this->relay->send($body);
75
            } else {
76
                $this->relay->sendPackage($header, Relay::PAYLOAD_CONTROL | Relay::PAYLOAD_RAW, $body);
77
            }
78
        }
79
80
        $body = (string)$this->relay->receiveSync($flags);
81
82
        if (!($flags & Relay::PAYLOAD_CONTROL)) {
83
            throw new Exceptions\TransportException('rpc response header is missing');
84
        }
85
86
        $rpc = unpack('Ps', substr($body, -8));
87
        $rpc['m'] = substr($body, 0, -8);
88
89
        if ($rpc['m'] !== $method || $rpc['s'] !== $this->seq) {
90
            throw new Exceptions\TransportException(
91
                sprintf(
92
                    'rpc method call, expected %s:%d, got %s%d',
93
                    $method,
94
                    $this->seq,
95
                    $rpc['m'],
96
                    $rpc['s']
97
                )
98
            );
99
        }
100
101
        // request id++
102
        $this->seq++;
103
104
        // wait for the response
105
        $body = (string)$this->relay->receiveSync($flags);
106
107
        return $this->handleBody($body, $flags);
108
    }
109
110
    /**
111
     * Handle response body.
112
     *
113
     * @param string $body
114
     * @param int    $flags
115
     *
116
     * @return mixed
117
     *
118
     * @throws Exceptions\ServiceException
119
     */
120
    protected function handleBody(string $body, int $flags)
121
    {
122
        if ($flags & Relay::PAYLOAD_ERROR && $flags & Relay::PAYLOAD_RAW) {
123
            throw new Exceptions\ServiceException(
124
                sprintf(
125
                    "error '$body' on '%s'",
126
                    $this->relay instanceof StringableRelayInterface ? (string)$this->relay : get_class($this->relay)
127
                )
128
            );
129
        }
130
131
        if ($flags & Relay::PAYLOAD_RAW) {
132
            return $body;
133
        }
134
135
        return json_decode($body, true);
136
    }
137
}
138