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/Connection/DatabaseConnection.php (1 issue)

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 TildBJ\Seeder\Connection;
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 2 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\Connection;
29
use TildBJ\Seeder;
30
use TYPO3\CMS\Core\Utility\GeneralUtility;
31
32
/**
33
 * DatabaseConnection
34
 *
35
 * @author Dennis Römmich<[email protected]>
36
 * @copyright Copyright belongs to the respective authors
37
 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
38
 */
39
class DatabaseConnection implements Connection
40
{
41
    /**
42
     * connection
43
     *
44
     * @var \TYPO3\CMS\Core\Database\DatabaseConnection $connection
45
     */
46
    protected $connection;
47
48
    /**
49
     * output
50
     *
51
     * @var \TildBJ\Seeder\Message $message
52
     */
53
    protected $message;
54
55
    /**
56
     * closures
57
     *
58
     * @var array $closures
59
     */
60
    protected $closures;
61
62
    /**
63
     * lastInsertId
64
     *
65
     * @var integer $lastInsertId
66
     */
67
    protected $lastInsertId;
68
69
    /**
70
     * DatabaseConnection constructor.
71
     *
72
     * @param \TYPO3\CMS\Core\Database\DatabaseConnection $connection
73
     * @param \TildBJ\Seeder\Message $message
74
     */
75
    public function __construct(
76
        \TYPO3\CMS\Core\Database\DatabaseConnection $connection,
77
        Seeder\Message $message
78
    ) {
79
        $this->connection = $connection;
80
        $this->message = $message;
81
    }
82
83
    /**
84
     * fetch
85
     *
86
     * @param array $seedArray
87
     * @throws Seeder\Exception
88
     * @return bool
89
     */
90
    public function fetch(array $seedArray)
91
    {
92
        /** @var \TYPO3\CMS\Core\DataHandling\DataHandler $dataHandler */
93
        $dataHandler = GeneralUtility::makeInstance(\TYPO3\CMS\Core\DataHandling\DataHandler::class);
94
        $GLOBALS['BE_USER']->user['admin'] = true;
95
        $dataHandler->start($seedArray, '');
0 ignored issues
show
'' is of type string, but the function expects a array.

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...
96
        $dataHandler->process_datamap();
97
        $dataHandler->clear_cacheCmd('pages');
98
99
        return true;
100
    }
101
}
102