Issues (94)

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.

Classes/Factory/TableFactory.php (2 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
namespace TildBJ\Seeder\Factory;
3
4
/***************************************************************
5
 *
6
 *  Copyright notice
7
 *
8
 *  (c) 2016 Dennis Römmich <[email protected]>
9
 *
10
 *  All rights reserved
11
 *
12
 *  This script is part of the TYPO3 project. The TYPO3 project is
13
 *  free software; you can redistribute it and/or modify
14
 *  it under the terms of the GNU General Public License as published by
15
 *  the Free Software Foundation; either version 3 of the License, or
16
 *  (at your option) any later version.
17
 *
18
 *  The GNU General Public License can be found at
19
 *  http://www.gnu.org/copyleft/gpl.html.
20
 *
21
 *  This script is distributed in the hope that it will be useful,
22
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 *  GNU General Public License for more details.
25
 *
26
 *  This copyright notice MUST APPEAR in all copies of the script!
27
 ***************************************************************/
28
use TildBJ\Seeder\Provider\TableConfiguration;
29
use TildBJ\Seeder\Domain\Model;
30
use TYPO3\CMS\Core\Utility\GeneralUtility;
31
32
/**
33
 * Class TableFactory
34
 *
35
 * @package TildBJ\Seeder\Factory\TableFactory
36
 */
37
class TableFactory implements \TYPO3\CMS\Core\SingletonInterface
0 ignored issues
show
TableFactory does not seem to conform to the naming convention (Utils?$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
38
{
39
    /**
40
     * @var array $tables
41
     */
42
    protected static $tables = [];
43
44
    /**
45
     * @var array $columns
46
     */
47
    protected static $columns = [];
48
49
    /**
50
     * Provides a Table
51
     *
52
     * @param string $tableName
53
     * @return Model\TableInterface
54
     */
55
    public static function createTable($tableName)
56
    {
57
        /** @var TableConfiguration $tableConfiguration */
58
        $tableConfiguration = GeneralUtility::makeInstance(TableConfiguration::class, $tableName);
59
        if (!in_array($tableName, self::$tables)) {
60
            self::$tables[$tableName] = new Model\Table($tableConfiguration);
61
        }
62
63
        return self::$tables[$tableName];
64
    }
65
66
    /**
67
     * createColumn
68
     *
69
     * @param string $tableName
70
     * @param string $columnName
71
     * @return Model\ColumnInterface
72
     */
73
    public static function createColumn($tableName, $columnName)
74
    {
75
        $tableConfiguration = new TableConfiguration($tableName);
76
        $columnConfiguration = $tableConfiguration->getColumnConfiguration($columnName);
77
        $key = $tableName . '.' . key($columnConfiguration);
78
        if (!in_array($key, self::$columns)) {
79
            self::$columns[$key] = self::getColumn($columnName, $columnConfiguration[key($columnConfiguration)]);
80
        }
81
82
        return self::$columns[$key];
83
    }
84
85
    /**
86
     * @param string $columnName
87
     * @param array $configuration
88
     * @return Model\ColumnInterface
89
     */
90
    protected static function getColumn($columnName, $configuration)
91
    {
92
        $column = null;
0 ignored issues
show
$column is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
93
        switch ($configuration['type']) {
94
            case 'input':
95
                $column = new Model\Column\Input($columnName, $configuration);
96
                break;
97
            case 'text':
98
                $column = new Model\Column\Text($columnName, $configuration);
99
                break;
100
            case 'check':
101
                $column = new Model\Column\Check($columnName, $configuration);
102
                break;
103
            case 'radio':
104
                $column = new Model\Column\Radio($columnName, $configuration);
105
                break;
106
            case 'select':
107
                $column = new Model\Column\Select($columnName, $configuration);
108
                break;
109
            case 'group':
110
                $column = new Model\Column\Group($columnName, $configuration);
111
                break;
112
            case 'none':
113
                $column = new Model\Column\None($columnName, $configuration);
114
                break;
115
            case 'inline':
116
                $column = new Model\Column\Inline($columnName, $configuration);
117
                break;
118
            case 'passthrough':
119
            case 'user':
120
            case 'flex':
121
            default:
122
                $column = new Model\Column\None($columnName, $configuration);
123
        }
124
125
        return $column;
126
    }
127
}
128