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/GridFSAdapter.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 League\Flysystem\GridFS;
4
5
use BadMethodCallException;
6
use League\Flysystem\Adapter\AbstractAdapter;
7
use League\Flysystem\Adapter\Polyfill\NotSupportingVisibilityTrait;
8
use League\Flysystem\Adapter\Polyfill\StreamedCopyTrait;
9
use League\Flysystem\Adapter\Polyfill\StreamedReadingTrait;
10
use League\Flysystem\Config;
11
use League\Flysystem\Util;
12
use LogicException;
13
use MongoGridFs;
14
use MongoGridFSException;
15
use MongoGridFSFile;
16
use MongoRegex;
17
18
class GridFSAdapter extends AbstractAdapter
19
{
20
    use NotSupportingVisibilityTrait;
21
    use StreamedCopyTrait;
22
    use StreamedReadingTrait;
23
24
    /**
25
     * @var MongoGridFs Mongo GridFS client
26
     */
27
    protected $client;
28
29
    /**
30
     * Constructor.
31
     *
32
     * @param MongoGridFs $client
33
     */
34
    public function __construct(MongoGridFs $client)
35
    {
36
        $this->client  = $client;
37
    }
38
39
    /**
40
     * Get the MongoGridFs instance.
41
     *
42
     * @return MongoGridFs
43
     */
44
    public function getClient()
45
    {
46
        return $this->client;
47
    }
48
49
    /**
50
     * {@inheritdoc}
51
     */
52
    public function has($path)
53
    {
54
        $location = $this->applyPathPrefix($path);
55
56
        return $this->client->findOne($location) !== null;
57
    }
58
59
    /**
60
     * {@inheritdoc}
61
     */
62
    public function write($path, $contents, Config $config)
63
    {
64
        $metadata = [];
65
66
        if ($config->has('mimetype')) {
67
            $metadata['mimetype'] = $config->get('mimetype');
68
        }
69
70
        return $this->writeObject($path, $contents, [
71
            'filename' => $path,
72
            'metadata' => $metadata,
73
        ]);
74
    }
75
76
    /**
77
     * {@inheritdoc}
78
     */
79
    public function writeStream($path, $resource, Config $config)
80
    {
81
        return $this->write($path, $resource, $config);
0 ignored issues
show
$resource is of type resource, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
82
    }
83
84
    /**
85
     * {@inheritdoc}
86
     */
87
    public function update($path, $contents, Config $config)
88
    {
89
        return $this->write($path, $contents, $config);
90
    }
91
92
    /**
93
     * {@inheritdoc}
94
     */
95
    public function updateStream($path, $resource, Config $config)
96
    {
97
        return $this->writeStream($path, $resource, $config);
98
    }
99
100
    /**
101
     * {@inheritdoc}
102
     */
103
    public function getMetadata($path)
104
    {
105
        $result = $this->client->findOne($path);
106
107
        return $this->normalizeGridFSFile($result, $path);
108
    }
109
110
    /**
111
     * {@inheritdoc}
112
     */
113
    public function getMimetype($path)
114
    {
115
        return $this->getMetadata($path);
116
    }
117
118
    /**
119
     * {@inheritdoc}
120
     */
121
    public function getSize($path)
122
    {
123
        return $this->getMetadata($path);
124
    }
125
126
    /**
127
     * {@inheritdoc}
128
     */
129
    public function getTimestamp($path)
130
    {
131
        return $this->getMetadata($path);
132
    }
133
134
    /**
135
     * {@inheritdoc}
136
     */
137
    public function delete($path)
138
    {
139
        $file = $this->client->findOne($path);
140
141
        return $file && $this->client->delete($file->file['_id']) !== false;
142
    }
143
144
    /**
145
     * {@inheritdoc}
146
     */
147
    public function read($path)
148
    {
149
        $file = $this->client->findOne($path);
150
151
        return $file ? ['contents' => $file->getBytes()] : false;
152
    }
153
154
    /**
155
     * {@inheritdoc}
156
     */
157
    public function rename($path, $newpath)
158
    {
159
        return $this->copy($path, $newpath) && $this->delete($path);
160
    }
161
162
    /**
163
     * {@inheritdoc}
164
     */
165
    public function createDir($path, Config $config)
166
    {
167
        throw new LogicException(get_class($this).' does not support directory creation.');
168
    }
169
170
    /**
171
     * {@inheritdoc}
172
     */
173
    public function deleteDir($path)
174
    {
175
        $prefix = rtrim($this->applyPathPrefix($path), '/').'/';
176
177
        $result = $this->client->remove([
178
            'filename' => new MongoRegex(sprintf('/^%s/', $prefix)),
179
        ]);
180
181
        return $result === true;
182
    }
183
184
    /**
185
     * {@inheritdoc}
186
     *
187
     * @todo Implement recursive listing.
188
     */
189
    public function listContents($dirname = '', $recursive = false)
190
    {
191
        if ($recursive) {
192
            throw new BadMethodCallException('Recursive listing is not yet implemented');
193
        }
194
195
        $keys = [];
196
        $cursor = $this->client->find([
197
            'filename' => new MongoRegex(sprintf('/^%s/', $dirname)),
198
        ]);
199
        foreach ($cursor as $file) {
200
            $keys[] = $this->normalizeGridFSFile($file);
201
        }
202
203
        return Util::emulateDirectories($keys);
204
    }
205
206
    /**
207
     * Write an object to GridFS.
208
     *
209
     * @param array $metadata
210
     *
211
     * @return array normalized file representation
212
     */
213
    protected function writeObject($path, $content, array $metadata)
214
    {
215
        try {
216
            if (is_resource($content)) {
217
                $id = $this->client->storeFile($content, $metadata);
218
            } else {
219
                $id = $this->client->storeBytes($content, $metadata);
220
            }
221
        } catch (MongoGridFSException $e) {
222
            return false;
223
        }
224
225
        $file = $this->client->findOne(['_id' => $id]);
226
227
        return $this->normalizeGridFSFile($file, $path);
228
    }
229
230
    /**
231
     * Normalize a MongoGridFs file to a response.
232
     *
233
     * @param MongoGridFSFile $file
234
     * @param string          $path
235
     *
236
     * @return array
237
     */
238
    protected function normalizeGridFSFile(MongoGridFSFile $file, $path = null)
239
    {
240
        $result = [
241
            'path'      => trim($path ?: $file->getFilename(), '/'),
242
            'type'      => 'file',
243
            'size'      => $file->getSize(),
244
            'timestamp' => $file->file['uploadDate']->sec,
245
        ];
246
247
        $result['dirname'] = Util::dirname($result['path']);
248
249
        if (isset($file->file['metadata']) && !empty($file->file['metadata']['mimetype'])) {
250
            $result['mimetype'] = $file->file['metadata']['mimetype'];
251
        }
252
253
        return $result;
254
    }
255
}
256