Issues (1752)

Security Analysis    not enabled

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.

benchmark/uuid.php (3 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
require __DIR__ . '/../autoload.php';
3
4
use Fwlib\Test\Benchmark\Benchmark;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Benchmark.

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...
5
use Fwlib\Util\UtilContainer;
6
use Fwlib\Util\Uuid\GeneratorInterface;
7
8
// Speed test for Uuid generate
9
$count = 10000;
10
11
$utilContainer = UtilContainer::getInstance();
12
$bm = new Benchmark();
13
$bm->setUtilContainer($utilContainer);
14
15
$bm->start('Gen ' . $count . ' UUID');
16
$speed = 0;
17
18
19
$uuidBase16 = $utilContainer->getUuidBase16();
20
$uuidBase36 = $utilContainer->getUuidBase36();
21
$uuidBase36Short = $utilContainer->getUuidBase36Short();
22
$uuidBase62 = $utilContainer->getUuidBase62();
23
24
$algorithms = [
25
    'Base16',
26
    'Base36',
27
    'Base36Short',
28
    'Base62'
29
];
30
$arSpeed = [];
31
foreach ($algorithms as $k => $v) {
32
    $class = 'Fwlib\\Util\\Uuid\\' . $v;
33
    $instanceName = 'uuid' . $v;
34
    /** @var GeneratorInterface $instance */
35
    $instance = $$instanceName;
36
37
    $v = str_pad($v, 11, ' ', STR_PAD_RIGHT);   // For display later
38
39
    for ($i = 0; $i < $count; $i ++) {
40
        $instance->generate();
41
    }
42
    $usedTime = $bm->mark("$v without check digit: average speed{$k}wt/s");
43
    $arSpeed["speed{$k}wt"] = round($count / $usedTime * 1000);
44
45
    for ($i = 0; $i < $count; $i ++) {
46
        $instance->generate('', '', true);
47
    }
48
    $usedTime = $bm->mark("$v with    check digit: average speed{$k}wo/s");
49
    $arSpeed["speed{$k}wo"] = round($count / $usedTime * 1000);
50
51
}
52
53
// Replace {speed} in result
54
$rs = $bm->display(null, true);
0 ignored issues
show
The call to Benchmark::display() has too many arguments starting with null.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
Are you sure the assignment to $rs is correct as $bm->display(null, true) (which targets Fwlib\Test\Benchmark\Benchmark::display()) seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
55
$rs = str_replace(array_keys($arSpeed), $arSpeed, $rs);
56
57
echo $rs;
58
59
60
$env = $utilContainer->getEnv();
61
$env->ecl('Base16      without check digit: ' . $uuidBase16->generate('10', null, false));
62
$env->ecl('Base16      with    check digit: ' . $uuidBase16->generate('10', null, true));
63
64
$env->ecl('Base16      without check digit: ' . $uuidBase16->generateWithSeparator('10', null, false));
65
$env->ecl('Base16      with    check digit: ' . $uuidBase16->generateWithSeparator('10', null, true));
66
67
$env->ecl('Base36      without check digit: ' . $uuidBase36->generate('10', null, false));
68
$env->ecl('Base36      with    check digit: ' . $uuidBase36->generate('10', null, true));
69
70
$env->ecl('Base36Short without check digit: ' . $uuidBase36Short->generate('1', null, false));
71
$env->ecl('Base36Short with    check digit: ' . $uuidBase36Short->generate('1', null, true));
72
73
$env->ecl('Base62      without check digit: ' . $uuidBase62->generate('10', null, false));
74
$env->ecl('Base62      with    check digit: ' . $uuidBase62->generate('10', null, true));
75