Issues (12)

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.

composer.lock (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
{
2
    "_readme": [
3
        "This file locks the dependencies of your project to a known state",
4
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
        "This file is @generated automatically"
6
    ],
7
    "content-hash": "1933d6bef0c46b6e6042042d10347b10",
8
    "packages": [
9
        {
10
            "name": "erusev/parsedown",
0 ignored issues
show
There is a security advisory for your installed version of erusev/parsedown:

Cross-Site Scripting
Loading history...
11
            "version": "1.6.4",
12
            "source": {
13
                "type": "git",
14
                "url": "https://github.com/erusev/parsedown.git",
15
                "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
16
            },
17
            "dist": {
18
                "type": "zip",
19
                "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
20
                "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
21
                "shasum": ""
22
            },
23
            "require": {
24
                "php": ">=5.3.0"
25
            },
26
            "require-dev": {
27
                "phpunit/phpunit": "^4.8.35"
28
            },
29
            "type": "library",
30
            "autoload": {
31
                "psr-0": {
32
                    "Parsedown": ""
33
                }
34
            },
35
            "notification-url": "https://packagist.org/downloads/",
36
            "license": [
37
                "MIT"
38
            ],
39
            "authors": [
40
                {
41
                    "name": "Emanuil Rusev",
42
                    "email": "[email protected]",
43
                    "homepage": "http://erusev.com"
44
                }
45
            ],
46
            "description": "Parser for Markdown.",
47
            "homepage": "http://parsedown.org",
48
            "keywords": [
49
                "markdown",
50
                "parser"
51
            ],
52
            "time": "2017-11-14T20:44:03+00:00"
53
        },
54
        {
55
            "name": "matthiasmullie/minify",
56
            "version": "1.3.55",
57
            "source": {
58
                "type": "git",
59
                "url": "https://github.com/matthiasmullie/minify.git",
60
                "reference": "21084eb9e6c117f5236969532d00ed2750cd1617"
61
            },
62
            "dist": {
63
                "type": "zip",
64
                "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/21084eb9e6c117f5236969532d00ed2750cd1617",
65
                "reference": "21084eb9e6c117f5236969532d00ed2750cd1617",
66
                "shasum": ""
67
            },
68
            "require": {
69
                "ext-pcre": "*",
70
                "matthiasmullie/path-converter": "~1.1",
71
                "php": ">=5.3.0"
72
            },
73
            "require-dev": {
74
                "friendsofphp/php-cs-fixer": "~2.0",
75
                "matthiasmullie/scrapbook": "~1.0",
76
                "phpunit/phpunit": "~4.8"
77
            },
78
            "suggest": {
79
                "psr/cache-implementation": "Cache implementation to use with Minify::cache"
80
            },
81
            "bin": [
82
                "bin/minifycss",
83
                "bin/minifyjs"
84
            ],
85
            "type": "library",
86
            "autoload": {
87
                "psr-4": {
88
                    "MatthiasMullie\\Minify\\": "src/"
89
                }
90
            },
91
            "notification-url": "https://packagist.org/downloads/",
92
            "license": [
93
                "MIT"
94
            ],
95
            "authors": [
96
                {
97
                    "name": "Matthias Mullie",
98
                    "email": "[email protected]",
99
                    "homepage": "http://www.mullie.eu",
100
                    "role": "Developer"
101
                }
102
            ],
103
            "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
104
            "homepage": "http://www.minifier.org",
105
            "keywords": [
106
                "JS",
107
                "css",
108
                "javascript",
109
                "minifier",
110
                "minify"
111
            ],
112
            "time": "2017-10-25T11:13:12+00:00"
113
        },
114
        {
115
            "name": "matthiasmullie/path-converter",
116
            "version": "1.1.0",
117
            "source": {
118
                "type": "git",
119
                "url": "https://github.com/matthiasmullie/path-converter.git",
120
                "reference": "08551ec1b156e923c242a10ab484bd4d6ead6631"
121
            },
122
            "dist": {
123
                "type": "zip",
124
                "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/08551ec1b156e923c242a10ab484bd4d6ead6631",
125
                "reference": "08551ec1b156e923c242a10ab484bd4d6ead6631",
126
                "shasum": ""
127
            },
128
            "require": {
129
                "ext-pcre": "*",
130
                "php": ">=5.3.0"
131
            },
132
            "require-dev": {
133
                "phpunit/phpunit": "~4.8"
134
            },
135
            "type": "library",
136
            "autoload": {
137
                "psr-4": {
138
                    "MatthiasMullie\\PathConverter\\": "src/"
139
                }
140
            },
141
            "notification-url": "https://packagist.org/downloads/",
142
            "license": [
143
                "MIT"
144
            ],
145
            "authors": [
146
                {
147
                    "name": "Matthias Mullie",
148
                    "email": "[email protected]",
149
                    "homepage": "http://www.mullie.eu",
150
                    "role": "Developer"
151
                }
152
            ],
153
            "description": "Relative path converter",
154
            "homepage": "http://github.com/matthiasmullie/path-converter",
155
            "keywords": [
156
                "converter",
157
                "path",
158
                "paths",
159
                "relative"
160
            ],
161
            "time": "2017-01-26T08:54:49+00:00"
162
        },
163
        {
164
            "name": "nette/utils",
165
            "version": "v2.4.8",
166
            "source": {
167
                "type": "git",
168
                "url": "https://github.com/nette/utils.git",
169
                "reference": "f1584033b5af945b470533b466b81a789d532034"
170
            },
171
            "dist": {
172
                "type": "zip",
173
                "url": "https://api.github.com/repos/nette/utils/zipball/f1584033b5af945b470533b466b81a789d532034",
174
                "reference": "f1584033b5af945b470533b466b81a789d532034",
175
                "shasum": ""
176
            },
177
            "require": {
178
                "php": ">=5.6.0"
179
            },
180
            "conflict": {
181
                "nette/nette": "<2.2"
182
            },
183
            "require-dev": {
184
                "nette/tester": "~2.0",
185
                "tracy/tracy": "^2.3"
186
            },
187
            "suggest": {
188
                "ext-gd": "to use Image",
189
                "ext-iconv": "to use Strings::webalize() and toAscii()",
190
                "ext-intl": "for script transliteration in Strings::webalize() and toAscii()",
191
                "ext-json": "to use Nette\\Utils\\Json",
192
                "ext-mbstring": "to use Strings::lower() etc...",
193
                "ext-xml": "to use Strings::length() etc. when mbstring is not available"
194
            },
195
            "type": "library",
196
            "extra": {
197
                "branch-alias": {
198
                    "dev-master": "2.4-dev"
199
                }
200
            },
201
            "autoload": {
202
                "classmap": [
203
                    "src/"
204
                ]
205
            },
206
            "notification-url": "https://packagist.org/downloads/",
207
            "license": [
208
                "BSD-3-Clause",
209
                "GPL-2.0",
210
                "GPL-3.0"
211
            ],
212
            "authors": [
213
                {
214
                    "name": "David Grudl",
215
                    "homepage": "https://davidgrudl.com"
216
                },
217
                {
218
                    "name": "Nette Community",
219
                    "homepage": "https://nette.org/contributors"
220
                }
221
            ],
222
            "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
223
            "homepage": "https://nette.org",
224
            "keywords": [
225
                "array",
226
                "core",
227
                "datetime",
228
                "images",
229
                "json",
230
                "nette",
231
                "paginator",
232
                "password",
233
                "slugify",
234
                "string",
235
                "unicode",
236
                "utf-8",
237
                "utility",
238
                "validation"
239
            ],
240
            "time": "2017-08-20T17:32:29+00:00"
241
        },
242
        {
243
            "name": "psr/log",
244
            "version": "1.0.2",
245
            "source": {
246
                "type": "git",
247
                "url": "https://github.com/php-fig/log.git",
248
                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
249
            },
250
            "dist": {
251
                "type": "zip",
252
                "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
253
                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
254
                "shasum": ""
255
            },
256
            "require": {
257
                "php": ">=5.3.0"
258
            },
259
            "type": "library",
260
            "extra": {
261
                "branch-alias": {
262
                    "dev-master": "1.0.x-dev"
263
                }
264
            },
265
            "autoload": {
266
                "psr-4": {
267
                    "Psr\\Log\\": "Psr/Log/"
268
                }
269
            },
270
            "notification-url": "https://packagist.org/downloads/",
271
            "license": [
272
                "MIT"
273
            ],
274
            "authors": [
275
                {
276
                    "name": "PHP-FIG",
277
                    "homepage": "http://www.php-fig.org/"
278
                }
279
            ],
280
            "description": "Common interface for logging libraries",
281
            "homepage": "https://github.com/php-fig/log",
282
            "keywords": [
283
                "log",
284
                "psr",
285
                "psr-3"
286
            ],
287
            "time": "2016-10-10T12:19:37+00:00"
288
        },
289
        {
290
            "name": "symfony/console",
291
            "version": "v3.3.13",
292
            "source": {
293
                "type": "git",
294
                "url": "https://github.com/symfony/console.git",
295
                "reference": "63cd7960a0a522c3537f6326706d7f3b8de65805"
296
            },
297
            "dist": {
298
                "type": "zip",
299
                "url": "https://api.github.com/repos/symfony/console/zipball/63cd7960a0a522c3537f6326706d7f3b8de65805",
300
                "reference": "63cd7960a0a522c3537f6326706d7f3b8de65805",
301
                "shasum": ""
302
            },
303
            "require": {
304
                "php": "^5.5.9|>=7.0.8",
305
                "symfony/debug": "~2.8|~3.0",
306
                "symfony/polyfill-mbstring": "~1.0"
307
            },
308
            "conflict": {
309
                "symfony/dependency-injection": "<3.3"
310
            },
311
            "require-dev": {
312
                "psr/log": "~1.0",
313
                "symfony/config": "~3.3",
314
                "symfony/dependency-injection": "~3.3",
315
                "symfony/event-dispatcher": "~2.8|~3.0",
316
                "symfony/filesystem": "~2.8|~3.0",
317
                "symfony/process": "~2.8|~3.0"
318
            },
319
            "suggest": {
320
                "psr/log": "For using the console logger",
321
                "symfony/event-dispatcher": "",
322
                "symfony/filesystem": "",
323
                "symfony/process": ""
324
            },
325
            "type": "library",
326
            "extra": {
327
                "branch-alias": {
328
                    "dev-master": "3.3-dev"
329
                }
330
            },
331
            "autoload": {
332
                "psr-4": {
333
                    "Symfony\\Component\\Console\\": ""
334
                },
335
                "exclude-from-classmap": [
336
                    "/Tests/"
337
                ]
338
            },
339
            "notification-url": "https://packagist.org/downloads/",
340
            "license": [
341
                "MIT"
342
            ],
343
            "authors": [
344
                {
345
                    "name": "Fabien Potencier",
346
                    "email": "[email protected]"
347
                },
348
                {
349
                    "name": "Symfony Community",
350
                    "homepage": "https://symfony.com/contributors"
351
                }
352
            ],
353
            "description": "Symfony Console Component",
354
            "homepage": "https://symfony.com",
355
            "time": "2017-11-16T15:24:32+00:00"
356
        },
357
        {
358
            "name": "symfony/debug",
359
            "version": "v3.3.13",
360
            "source": {
361
                "type": "git",
362
                "url": "https://github.com/symfony/debug.git",
363
                "reference": "74557880e2846b5c84029faa96b834da37e29810"
364
            },
365
            "dist": {
366
                "type": "zip",
367
                "url": "https://api.github.com/repos/symfony/debug/zipball/74557880e2846b5c84029faa96b834da37e29810",
368
                "reference": "74557880e2846b5c84029faa96b834da37e29810",
369
                "shasum": ""
370
            },
371
            "require": {
372
                "php": "^5.5.9|>=7.0.8",
373
                "psr/log": "~1.0"
374
            },
375
            "conflict": {
376
                "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
377
            },
378
            "require-dev": {
379
                "symfony/http-kernel": "~2.8|~3.0"
380
            },
381
            "type": "library",
382
            "extra": {
383
                "branch-alias": {
384
                    "dev-master": "3.3-dev"
385
                }
386
            },
387
            "autoload": {
388
                "psr-4": {
389
                    "Symfony\\Component\\Debug\\": ""
390
                },
391
                "exclude-from-classmap": [
392
                    "/Tests/"
393
                ]
394
            },
395
            "notification-url": "https://packagist.org/downloads/",
396
            "license": [
397
                "MIT"
398
            ],
399
            "authors": [
400
                {
401
                    "name": "Fabien Potencier",
402
                    "email": "[email protected]"
403
                },
404
                {
405
                    "name": "Symfony Community",
406
                    "homepage": "https://symfony.com/contributors"
407
                }
408
            ],
409
            "description": "Symfony Debug Component",
410
            "homepage": "https://symfony.com",
411
            "time": "2017-11-10T16:38:39+00:00"
412
        },
413
        {
414
            "name": "symfony/polyfill-mbstring",
415
            "version": "v1.6.0",
416
            "source": {
417
                "type": "git",
418
                "url": "https://github.com/symfony/polyfill-mbstring.git",
419
                "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
420
            },
421
            "dist": {
422
                "type": "zip",
423
                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
424
                "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
425
                "shasum": ""
426
            },
427
            "require": {
428
                "php": ">=5.3.3"
429
            },
430
            "suggest": {
431
                "ext-mbstring": "For best performance"
432
            },
433
            "type": "library",
434
            "extra": {
435
                "branch-alias": {
436
                    "dev-master": "1.6-dev"
437
                }
438
            },
439
            "autoload": {
440
                "psr-4": {
441
                    "Symfony\\Polyfill\\Mbstring\\": ""
442
                },
443
                "files": [
444
                    "bootstrap.php"
445
                ]
446
            },
447
            "notification-url": "https://packagist.org/downloads/",
448
            "license": [
449
                "MIT"
450
            ],
451
            "authors": [
452
                {
453
                    "name": "Nicolas Grekas",
454
                    "email": "[email protected]"
455
                },
456
                {
457
                    "name": "Symfony Community",
458
                    "homepage": "https://symfony.com/contributors"
459
                }
460
            ],
461
            "description": "Symfony polyfill for the Mbstring extension",
462
            "homepage": "https://symfony.com",
463
            "keywords": [
464
                "compatibility",
465
                "mbstring",
466
                "polyfill",
467
                "portable",
468
                "shim"
469
            ],
470
            "time": "2017-10-11T12:05:26+00:00"
471
        }
472
    ],
473
    "packages-dev": [
474
        {
475
            "name": "hamcrest/hamcrest-php",
476
            "version": "v2.0.0",
477
            "source": {
478
                "type": "git",
479
                "url": "https://github.com/hamcrest/hamcrest-php.git",
480
                "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
481
            },
482
            "dist": {
483
                "type": "zip",
484
                "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
485
                "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
486
                "shasum": ""
487
            },
488
            "require": {
489
                "php": "^5.3|^7.0"
490
            },
491
            "replace": {
492
                "cordoval/hamcrest-php": "*",
493
                "davedevelopment/hamcrest-php": "*",
494
                "kodova/hamcrest-php": "*"
495
            },
496
            "require-dev": {
497
                "phpunit/php-file-iterator": "1.3.3",
498
                "phpunit/phpunit": "~4.0",
499
                "satooshi/php-coveralls": "^1.0"
500
            },
501
            "type": "library",
502
            "extra": {
503
                "branch-alias": {
504
                    "dev-master": "2.0-dev"
505
                }
506
            },
507
            "autoload": {
508
                "classmap": [
509
                    "hamcrest"
510
                ]
511
            },
512
            "notification-url": "https://packagist.org/downloads/",
513
            "license": [
514
                "BSD"
515
            ],
516
            "description": "This is the PHP port of Hamcrest Matchers",
517
            "keywords": [
518
                "test"
519
            ],
520
            "time": "2016-01-20T08:20:44+00:00"
521
        },
522
        {
523
            "name": "mockery/mockery",
524
            "version": "1.0",
525
            "source": {
526
                "type": "git",
527
                "url": "https://github.com/mockery/mockery.git",
528
                "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38"
529
            },
530
            "dist": {
531
                "type": "zip",
532
                "url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38",
533
                "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38",
534
                "shasum": ""
535
            },
536
            "require": {
537
                "hamcrest/hamcrest-php": "~2.0",
538
                "lib-pcre": ">=7.0",
539
                "php": ">=5.6.0"
540
            },
541
            "require-dev": {
542
                "phpunit/phpunit": "~5.7|~6.1"
543
            },
544
            "type": "library",
545
            "extra": {
546
                "branch-alias": {
547
                    "dev-master": "1.0.x-dev"
548
                }
549
            },
550
            "autoload": {
551
                "psr-0": {
552
                    "Mockery": "library/"
553
                }
554
            },
555
            "notification-url": "https://packagist.org/downloads/",
556
            "license": [
557
                "BSD-3-Clause"
558
            ],
559
            "authors": [
560
                {
561
                    "name": "Pádraic Brady",
562
                    "email": "[email protected]",
563
                    "homepage": "http://blog.astrumfutura.com"
564
                },
565
                {
566
                    "name": "Dave Marshall",
567
                    "email": "[email protected]",
568
                    "homepage": "http://davedevelopment.co.uk"
569
                }
570
            ],
571
            "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
572
            "homepage": "http://github.com/mockery/mockery",
573
            "keywords": [
574
                "BDD",
575
                "TDD",
576
                "library",
577
                "mock",
578
                "mock objects",
579
                "mockery",
580
                "stub",
581
                "test",
582
                "test double",
583
                "testing"
584
            ],
585
            "time": "2017-10-06T16:20:43+00:00"
586
        },
587
        {
588
            "name": "nette/tester",
589
            "version": "v2.0.0",
590
            "source": {
591
                "type": "git",
592
                "url": "https://github.com/nette/tester.git",
593
                "reference": "ee0ad514d66409037a0e72fe798112fd8cdae92e"
594
            },
595
            "dist": {
596
                "type": "zip",
597
                "url": "https://api.github.com/repos/nette/tester/zipball/ee0ad514d66409037a0e72fe798112fd8cdae92e",
598
                "reference": "ee0ad514d66409037a0e72fe798112fd8cdae92e",
599
                "shasum": ""
600
            },
601
            "require": {
602
                "php": ">=5.6.0"
603
            },
604
            "bin": [
605
                "src/tester"
606
            ],
607
            "type": "library",
608
            "extra": {
609
                "branch-alias": {
610
                    "dev-master": "2.0-dev"
611
                }
612
            },
613
            "autoload": {
614
                "classmap": [
615
                    "src/"
616
                ]
617
            },
618
            "notification-url": "https://packagist.org/downloads/",
619
            "license": [
620
                "BSD-3-Clause",
621
                "GPL-2.0",
622
                "GPL-3.0"
623
            ],
624
            "authors": [
625
                {
626
                    "name": "David Grudl",
627
                    "homepage": "https://davidgrudl.com"
628
                },
629
                {
630
                    "name": "Nette Community",
631
                    "homepage": "https://nette.org/contributors"
632
                }
633
            ],
634
            "description": "Nette Tester: enjoyable unit testing in PHP with code coverage reporter. 🍏🍏🍎🍏",
635
            "homepage": "https://tester.nette.org",
636
            "keywords": [
637
                "Xdebug",
638
                "assertions",
639
                "clover",
640
                "code coverage",
641
                "nette",
642
                "phpdbg",
643
                "phpunit",
644
                "testing",
645
                "unit"
646
            ],
647
            "time": "2017-08-22T06:46:57+00:00"
648
        }
649
    ],
650
    "aliases": [],
651
    "minimum-stability": "stable",
652
    "stability-flags": [],
653
    "prefer-stable": false,
654
    "prefer-lowest": false,
655
    "platform": {
656
        "php": ">= 7.1.0"
657
    },
658
    "platform-dev": []
659
}
660