Issues (10)

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/Internal/ResponseStream.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
namespace Http\Adapter\Artax\Internal;
4
5
use Amp\Artax;
6
use Amp\ByteStream\InputStream;
7
use Amp\ByteStream\IteratorStream;
8
use Amp\CancellationTokenSource;
9
use Amp\CancelledException;
10
use Amp\Emitter;
11
use Amp\Promise;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Http\Adapter\Artax\Internal\Promise.

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...
12
use Psr\Http\Message\StreamInterface;
13
14
/**
15
 * PSR-7 stream implementation that converts an `Amp\ByteStream\InputStream` into a PSR-7 compatible stream.
16
 *
17
 * @internal
18
 */
19
class ResponseStream implements StreamInterface
20
{
21
    private $buffer = '';
22
23
    private $position = 0;
24
25
    private $eof = false;
26
27
    private $body;
28
29
    private $cancellationTokenSource;
30
31
    /**
32 60
     * @param InputStream             $body                    HTTP response stream to wrap.
33
     * @param CancellationTokenSource $cancellationTokenSource Cancellation source bound to the request to abort it.
34 60
     */
35 60
    public function __construct(InputStream $body, CancellationTokenSource $cancellationTokenSource)
36 60
    {
37
        $this->body = $body;
38 2
        $this->cancellationTokenSource = $cancellationTokenSource;
39
    }
40
41 2
    public function __toString()
42 1
    {
43 1
        try {
44
            return $this->getContents();
45
        } catch (\Throwable $e) {
46
            return '';
47 60
        }
48
    }
49 60
50 60
    public function __destruct()
51
    {
52 60
        $this->close();
53
    }
54 60
55
    public function close()
56 60
    {
57 60
        $this->cancellationTokenSource->cancel();
58 60
59 60
        $emitter = new Emitter();
60
        $emitter->fail(new Artax\HttpException('The stream has been closed'));
61 1
        $this->body = new IteratorStream($emitter->iterate());
62
    }
63 1
64 1
    public function detach()
65
    {
66 1
        $this->close();
67
    }
68 1
69
    public function getSize()
70
    {
71 1
        return null;
72
    }
73 1
74
    public function tell()
75
    {
76 52
        return $this->position;
77
    }
78 52
79
    public function eof()
80
    {
81 1
        return $this->eof;
82
    }
83 1
84
    public function isSeekable()
85
    {
86 2
        return false;
87
    }
88 2
89
    public function seek($offset, $whence = SEEK_SET)
90
    {
91 1
        throw new \RuntimeException('Stream is not seekable');
92
    }
93 1
94
    public function rewind()
95
    {
96 1
        $this->seek(0);
97
    }
98 1
99
    public function isWritable()
100
    {
101 1
        return false;
102
    }
103 1
104
    public function write($string)
105
    {
106 1
        throw new \RuntimeException('Stream is not writable');
107
    }
108 1
109
    public function isReadable()
110
    {
111 55
        return true;
112
    }
113 55
114 1
    public function read($length)
115
    {
116
        if ($this->eof) {
117 55
            return '';
118
        }
119 55
120 4
        if ('' === $this->buffer) {
121 3
            try {
122 1
                $this->buffer = Promise\wait($this->body->read());
123 1
            } catch (Artax\HttpException $e) {
124
                throw new \RuntimeException('Reading from the stream failed', 0, $e);
125
            } catch (CancelledException $e) {
126 51
                throw new \RuntimeException('Reading from the stream failed', 0, $e);
127 51
            }
128
129 51
            if (null === $this->buffer) {
130
                $this->eof = true;
131
132
                return '';
133 47
            }
134 47
        }
135 47
136
        $read = \substr($this->buffer, 0, $length);
137 47
        $this->buffer = (string) \substr($this->buffer, $length);
138
        $this->position += \strlen($read);
139
140 52
        return $read;
141
    }
142 52
143
    public function getContents()
144 52
    {
145 52
        $buffer = '';
146
147
        while (!$this->eof()) {
148 51
            $buffer .= $this->read(8192 * 8);
149
        }
150
151 1
        return $buffer;
152
    }
153 1
154
    public function getMetadata($key = null)
155
    {
156
        return null === $key ? [] : null;
157
    }
158
}
159