Issues (621)

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.

class/Helper.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 XoopsModules\Smallworld;
4
5
/*
6
 * You may not change or alter any portion of this comment or credits
7
 * of supporting developers from this source code or any supporting source code
8
 * which is considered copyrighted (c) material of the original comment or credit authors.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 */
14
15
/**
16
 * @copyright    XOOPS Project https://xoops.org/
17
 * @license      GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
18
 * @package
19
 * @since
20
 * @author       XOOPS Development Team
21
 */
22
23
/**
24
 * Class Helper
25
 */
26
class Helper extends \Xmf\Module\Helper
27
{
28
    public $debug;
29
30
    /**
31
     * @param bool $debug
32
     */
33
    public function __construct($debug = false)
34
    {
35
        $this->debug   = $debug;
36
        $moduleDirName = basename(dirname(__DIR__));
37
        parent::__construct($moduleDirName);
38
    }
39
40
    /**
41
     * @param bool $debug
42
     *
43
     * @return \XoopsModules\Smallworld\Helper
44
     */
45
    public static function getInstance($debug = false)
46
    {
47
        static $instance;
48
        if (null === $instance) {
49
            $instance = new static($debug);
50
        }
51
52
        return $instance;
53
    }
54
55
    /**
56
     * @return string
57
     */
58
    public function getDirname()
59
    {
60
        return $this->dirname;
61
    }
62
63
    /**
64
     * Get an Object Handler
65
     *
66
     * @param string $name name of handler to load
67
     *
68
     * @return bool|\XoopsObjectHandler|\XoopsPersistableObjectHandler
69
     */
70
    public function getHandler($name)
71
    {
72
        $ret = false;
0 ignored issues
show
$ret 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...
73
74
        $class = __NAMESPACE__ . '\\' . $name . 'Handler';
75
        if (!class_exists($class)) {
76
            throw new \RuntimeException("Class '$class' not found");
77
        }
78
        /** @var \XoopsMySQLDatabase $db */
79
        $db     = \XoopsDatabaseFactory::getDatabaseConnection();
80
        $helper = self::getInstance();
81
        $ret    = new $class($db, $helper);
82
        $this->addLog("Getting handler '{$name}'");
83
        return $ret;
84
    }
85
}
86
//require  dirname(dirname(__DIR__)) . '/mainfile.php';
87