Issues (51)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  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.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  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.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  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.
  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.
  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.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
  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.
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  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.
  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.
  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.
  Header Injection
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/Common/FilesManagement.php (4 issues)

1
<?php
2
3
namespace XoopsModules\About\Common;
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     http://www.fsf.org/copyleft/gpl.html GNU public license
18
 * @author      mamba <[email protected]>
19
 */
20
trait FilesManagement
21
{
22
    /**
23
     * Function responsible for checking if a directory exists, we can also write in and create an index.html file
24
     *
25
     * @param string $folder The full path of the directory to check
26
     *
27
     * @throws \RuntimeException
28
     */
29
    public static function createFolder($folder)
30
    {
31
        try {
32
            if (!\is_dir($folder)) {
33
                if (!\is_dir($folder) && !\mkdir($folder) && !\is_dir($folder)) {
34
                    throw new \RuntimeException(\sprintf('Unable to create the %s directory', $folder));
35
                }
36
37
                file_put_contents($folder . '/index.html', '<script>history.go(-1);</script>');
38
            }
39
        } catch (\Exception $e) {
40
            echo 'Caught exception: ', $e->getMessage(), "\n", '<br>';
41
        }
42
    }
43
44
    /**
45
     * @param $file
46
     * @param $folder
47
     * @return bool
48
     */
49
    public static function copyFile($file, $folder)
50
    {
51
        return \copy($file, $folder);
52
    }
53
54
    /**
55
     * @param $src
56
     * @param $dst
57
     */
58
    public static function recurseCopy($src, $dst)
59
    {
60
        $dir = \opendir($src);
61
        //        @mkdir($dst);
62
        if (!@\mkdir($dst) && !\is_dir($dst)) {
63
            throw new \RuntimeException('The directory ' . $dst . ' could not be created.');
64
        }
65
        while (false !== ($file = \readdir($dir))) {
66
            if (('.' !== $file) && ('..' !== $file)) {
67
                if (\is_dir($src . '/' . $file)) {
68
                    self::recurseCopy($src . '/' . $file, $dst . '/' . $file);
69
                } else {
70
                    \copy($src . '/' . $file, $dst . '/' . $file);
71
                }
72
            }
73
        }
74
        \closedir($dir);
75
    }
76
77
    /**
78
     * Remove files and (sub)directories
79
     *
80
     * @param string $src source directory to delete
81
     *
82
     * @return bool true on success
83
     * @uses \Xmf\Module\Helper::isUserAdmin()
84
     *
85
     * @uses \Xmf\Module\Helper::getHelper()
86
     */
87
    public static function deleteDirectory($src)
88
    {
89
        // Only continue if user is a 'global' Admin
90
        if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
91
            return false;
92
        }
93
94
        $success = true;
95
        // remove old files
96
        $dirInfo = new \SplFileInfo($src);
97
        // validate is a directory
98
        if ($dirInfo->isDir()) {
99
            $fileList = \array_diff(\scandir($src, \SCANDIR_SORT_NONE), ['..', '.']);
100
            foreach ($fileList as $k => $v) {
101
                $fileInfo = new \SplFileInfo("{$src}/{$v}");
102
                if ($fileInfo->isDir()) {
103
                    // recursively handle subdirectories
104
                    if (!$success = self::deleteDirectory($fileInfo->getRealPath())) {
105
                        break;
106
                    }
107
                } elseif (!($success = \unlink($fileInfo->getRealPath()))) {
108
                    break;
109
                }
110
            }
111
            // now delete this (sub)directory if all the files are gone
112
            if ($success) {
113
                $success = \rmdir($dirInfo->getRealPath());
114
            }
115
        } else {
116
            // input is not a valid directory
117
            $success = false;
118
        }
119
120
        return $success;
121
    }
122
123
    /**
124
     * Recursively remove directory
125
     *
126
     * @todo currently won't remove directories with hidden files, should it?
127
     *
128
     * @param string $src directory to remove (delete)
129
     *
130
     * @return bool true on success
131
     */
132
    public static function rrmdir($src)
133
    {
134
        // Only continue if user is a 'global' Admin
135
        if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
136
            return false;
137
        }
138
139
        // If source is not a directory stop processing
140
        if (!\is_dir($src)) {
141
            return false;
142
        }
143
144
        $success = true;
0 ignored issues
show
The assignment to $success is dead and can be removed.
Loading history...
145
146
        // Open the source directory to read in files
147
        $iterator = new \DirectoryIterator($src);
148
        foreach ($iterator as $fObj) {
149
            if ($fObj->isFile()) {
150
                $filename = $fObj->getPathname();
151
                $fObj     = null; // clear this iterator object to close the file
0 ignored issues
show
The assignment to $fObj is dead and can be removed.
Loading history...
152
                if (!\unlink($filename)) {
153
                    return false; // couldn't delete the file
154
                }
155
            } elseif (!$fObj->isDot() && $fObj->isDir()) {
156
                // Try recursively on directory
157
                self::rrmdir($fObj->getPathname());
158
            }
159
        }
160
        $iterator = null;   // clear iterator Obj to close file/directory
0 ignored issues
show
The assignment to $iterator is dead and can be removed.
Loading history...
161
        return \rmdir($src); // remove the directory & return results
162
    }
163
164
    /**
165
     * Recursively move files from one directory to another
166
     *
167
     * @param string $src  - Source of files being moved
168
     * @param string $dest - Destination of files being moved
169
     *
170
     * @return bool true on success
171
     */
172
    public static function rmove($src, $dest)
173
    {
174
        // Only continue if user is a 'global' Admin
175
        if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
176
            return false;
177
        }
178
179
        // If source is not a directory stop processing
180
        if (!\is_dir($src)) {
181
            return false;
182
        }
183
184
        // If the destination directory does not exist and could not be created stop processing
185
        if (!\is_dir($dest) && !\mkdir($dest) && !\is_dir($dest)) {
186
            return false;
187
        }
188
189
        // Open the source directory to read in files
190
        $iterator = new \DirectoryIterator($src);
191
        foreach ($iterator as $fObj) {
192
            if ($fObj->isFile()) {
193
                \rename($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
194
            } elseif (!$fObj->isDot() && $fObj->isDir()) {
195
                // Try recursively on directory
196
                self::rmove($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
197
                //                rmdir($fObj->getPath()); // now delete the directory
198
            }
199
        }
200
        $iterator = null;   // clear iterator Obj to close file/directory
0 ignored issues
show
The assignment to $iterator is dead and can be removed.
Loading history...
201
        return \rmdir($src); // remove the directory & return results
202
    }
203
204
    /**
205
     * Recursively copy directories and files from one directory to another
206
     *
207
     * @param string $src  - Source of files being moved
208
     * @param string $dest - Destination of files being moved
209
     *
210
     * @return bool true on success
211
     * @uses \Xmf\Module\Helper::isUserAdmin()
212
     *
213
     * @uses \Xmf\Module\Helper::getHelper()
214
     */
215
    public static function rcopy($src, $dest)
216
    {
217
        // Only continue if user is a 'global' Admin
218
        if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
219
            return false;
220
        }
221
222
        // If source is not a directory stop processing
223
        if (!\is_dir($src)) {
224
            return false;
225
        }
226
227
        // If the destination directory does not exist and could not be created stop processing
228
        if (!\is_dir($dest) && !\mkdir($dest) && !\is_dir($dest)) {
229
            return false;
230
        }
231
232
        // Open the source directory to read in files
233
        $iterator = new \DirectoryIterator($src);
234
        foreach ($iterator as $fObj) {
235
            if ($fObj->isFile()) {
236
                \copy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
237
            } elseif (!$fObj->isDot() && $fObj->isDir()) {
238
                self::rcopy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
239
            }
240
        }
241
242
        return true;
243
    }
244
}
245