GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (27)

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.

core/Pimf/Application.php (1 issue)

Labels
Severity

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
 * Pimf
4
 *
5
 * @copyright Copyright (c) Gjero Krsteski (http://krsteski.de)
6
 * @license   http://opensource.org/licenses/MIT MIT License
7
 */
8
9
namespace Pimf;
10
11
use Pimf\Util\Character as Str, Pimf\Util\Header, Pimf\Util\Header\ResponseStatus, Pimf\Util\Uuid;
12
13
/**
14
 * Provides a facility for applications which provides reusable resources,
15
 * common-based bootstrapping and dependency checking.
16
 *
17
 * @package Pimf
18
 * @author  Gjero Krsteski <[email protected]>
19
 *
20
 */
21
final class Application
22
{
23
    const VERSION = '1.11.0';
24
25
    /**
26
     * @var Environment
27
     */
28
    protected static $env;
29
30
    /**
31
     * @var Logger
32
     */
33
    protected static $logger;
34
35
    /**
36
     * @var EntityManager
37
     */
38
    protected static $em;
39
40
    /**
41
     * @var Router
42
     */
43
    protected static $router;
44
45
    /**
46
     * Mechanism used to do initial setup and edging before a application runs.
47
     *
48
     * @param array $conf The array of configuration options.
49
     * @param array $server Array of information such as headers, paths, and script locations.
50
     *
51
     * @return boolean|null
52
     */
53
    public static function bootstrap(array $conf, array $server = array())
54
    {
55
        $problems = array();
56
57
        try {
58
59
            Config::load($conf);
60
61
            $environment = Config::get('environment');
62
63
            date_default_timezone_set(Config::get('timezone'));
64
65
            self::setupUtils($server, Config::get('bootstrap.local_temp_directory'), Config::get('logging.storage', 'file'));
66
            self::loadListeners(BASE_PATH . 'app/' . Config::get('app.name') . '/events.php');
67
            self::setupErrorHandling($environment);
68
            self::loadPdoDriver($environment, Config::get($environment . '.db'), Config::get('app.name'));
69
            self::loadRoutes(
70
                Config::get('app.routeable'),
71
                BASE_PATH . 'app/' . Config::get('app.name') . '/routes.php'
72
            );
73
74
        } catch (\Throwable $throwable) {
0 ignored issues
show
The class Throwable does not exist. Did you forget a USE statement, or did you not list all dependencies?

Scrutinizer analyzes your composer.json/composer.lock file if available to determine the classes, and functions that are defined by your dependencies.

It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.

Loading history...
75
            $problems[] = $throwable->getMessage();
76
        } catch (\Exception $exception) {
77
            $problems[] = $exception->getMessage();
78
        }
79
80
        self::reportIf($problems, PHP_VERSION);
81
    }
82
83
    /**
84
     * Please bootstrap first, than run the application!
85
     * Run a application, let application accept a request, route the request,
86
     * dispatch to controller/action, render response and return response to client finally.
87
     *
88
     * @param array $get Array of variables passed to the current script via the URL parameters.
89
     * @param array $post Array of variables passed to the current script via the HTTP POST method.
90
     * @param array $cookie Array of variables passed to the current script via HTTP Cookies.
91
     * @param array $files An associative array FILES of items uploaded to the current script via the HTTP POST method.
92
     *
93
     * @return void
94
     */
95
    public static function run(array $get, array $post, array $cookie, array $files)
96
    {
97
        $cli = array();
98
        if (Sapi::isCli()) {
99
            $cli = Cli::parse((array)self::$env->argv);
100
            if (count($cli) < 1 || isset($cli['list'])) {
101
                Cli::absorb();
102
                exit(0);
103
            }
104
        }
105
106
        $prefix = Str::ensureTrailing('\\', Config::get('app.name'));
107
        $repository = BASE_PATH . 'app/' . Config::get('app.name') . '/Controller';
108
109
        if (isset($cli['controller']) && $cli['controller'] == 'core') {
110
            $prefix = 'Pimf\\';
111
            $repository = BASE_PATH . 'pimf-framework/core/Pimf/Controller';
112
        }
113
114
        $request = new Request($get, $post, $cookie, $cli, $files, self::$env);
115
        $resolver = new Resolver($request, $repository, $prefix, self::$router);
116
        $sessionized = (Sapi::isWeb() && Config::get('session.storage') !== '');
117
118
        if ($sessionized) {
119
            Session::load();
120
        }
121
122
        $pimf = $resolver->process(self::$env, self::$em, self::$logger);
123
124
        if ($sessionized) {
125
            Session::save();
126
            Cookie::send();
127
        }
128
129
        $pimf->render();
130
    }
131
132
    /**
133
     * @param string $environment
134
     */
135
    private static function setupErrorHandling($environment)
136
    {
137
        if ($environment == 'testing') {
138
            error_reporting(E_ALL | E_STRICT);
139
        } else {
140
141
            $logger = self::$logger;
142
143
            set_exception_handler(
144
                function ($exception) use ($logger) {
145
                    Error::exception($exception, $logger);
146
                }
147
            );
148
149
            set_error_handler(
150
                function ($code, $error, $file, $line) use ($logger) {
151
                    Error::native($code, $error, $file, $line, $logger, error_reporting());
152
                }
153
            );
154
155
            register_shutdown_function(
156
                function () use ($logger) {
157
                    Error::shutdown($logger, error_get_last());
158
                }
159
            );
160
161
            error_reporting(-1);
162
        }
163
    }
164
165
    /**
166
     * @param array $server
167
     * @param $tmpPath
168
     * @param string $logging
169
     */
170
    private static function setupUtils(array $server, $tmpPath, $logging = 'file')
171
    {
172
        self::$env = new Environment($server);
173
        $envData = self::$env->data();
174
175
        Logger::setup(
176
            self::$env->getIp(),
177
            $envData->get('PHP_SELF', $envData->get('SCRIPT_NAME'))
178
        );
179
180
        ResponseStatus::setup($envData->get('SERVER_PROTOCOL', 'HTTP/1.0'));
181
182
        Header::setup(
183
            self::$env->getUserAgent()
184
        );
185
186
        Url::setup(self::$env->getUrl(), self::$env->isHttps());
187
        Uri::setup(self::$env->PATH_INFO, self::$env->REQUEST_URI);
188
        Uuid::setup(self::$env->getIp(), self::$env->getHost());
189
190
        if ($logging === 'file') {
191
            self::$logger = new Logger(
192
                new Adapter\File($tmpPath, "pimf-logs.txt"),
193
                new Adapter\File($tmpPath, "pimf-warnings.txt"),
194
                new Adapter\File($tmpPath, "pimf-errors.txt")
195
            );
196
        } else {
197
            self::$logger = new Logger(
198
                new Adapter\Std(Adapter\Std::OUT),
199
                new Adapter\Std(Adapter\Std::OUT),
200
                new Adapter\Std(Adapter\Std::ERR)
201
            );
202
        }
203
204
        self::$logger->init();
205
    }
206
207
    /**
208
     * @param string $environment
209
     * @param array $dbConf
210
     * @param string $appName
211
     */
212
    private static function loadPdoDriver($environment, $dbConf, $appName)
213
    {
214
        if (is_array($dbConf) && $environment != 'testing') {
215
            self::$em = new EntityManager(Pdo\Factory::get($dbConf), $appName);
216
        }
217
    }
218
219
    /**
220
     * @param boolean $routeable
221
     * @param string $routes Path to routes definition file.
222
     */
223
    private static function loadRoutes($routeable, $routes)
224
    {
225
        if ($routeable === true && file_exists($routes)) {
226
227
            self::$router = new Router();
228
229
            foreach ((array)(include $routes) as $route) {
230
231
                self::$router->map($route);
232
233
            }
234
        }
235
    }
236
237
    /**
238
     * @param string $events Path to event listeners
239
     */
240
    private static function loadListeners($events)
241
    {
242
        if (file_exists($events)) {
243
            include_once $events;
244
        }
245
    }
246
247
    /**
248
     * @param array $problems
249
     * @param float $version
250
     * @param bool $die
251
     *
252
     * @return array|void
253
     */
254
    private static function reportIf(array $problems, $version, $die = true)
255
    {
256
        if (version_compare($version, 5.3) == -1) {
257
            $problems[] = 'You have PHP ' . $version . ' and you need 5.3 or higher!';
258
        }
259
260
        if (!empty($problems)) {
261
            return ($die === true) ? die(implode(PHP_EOL . PHP_EOL, $problems)) : $problems;
262
        }
263
    }
264
265
    /**
266
     * PIMF Application can not be cloned.
267
     */
268
    private function __clone()
269
    {
270
    }
271
272
    /**
273
     * Stopping the PHP process for PHP-FastCGI users to speed up some PHP queries.
274
     */
275
    public static function finish()
276
    {
277
        if (function_exists('fastcgi_finish_request')) {
278
            fastcgi_finish_request();
279
        }
280
    }
281
}
282