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 (13)

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.

fixtures/HttpKernel/DummyKernel.php (1 issue)

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
/*
4
 * This file is part of the Hautelook\AliceBundle package.
5
 *
6
 * (c) Baldur Rensch <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Hautelook\AliceBundle\HttpKernel;
13
14
use Hautelook\AliceBundle\NotCallableTrait;
15
use Symfony\Component\DependencyInjection\Container;
16
use Symfony\Component\HttpFoundation\Request;
17
use Symfony\Component\HttpKernel\KernelInterface;
18
19
/**
20
 * @author Théo FIDRY <[email protected]>
21
 */
22
class DummyKernel implements KernelInterface
23
{
24
    use NotCallableTrait;
25
26
    /**
27
     * @inheritdoc
28
     */
29
    public function serialize()
30
    {
31
        $this->__call(__METHOD__, func_get_args());
32
    }
33
34
    /**
35
     * @inheritdoc
36
     */
37
    public function unserialize($serialized)
38
    {
39
        $this->__call(__METHOD__, func_get_args());
40
    }
41
42
    /**
43
     * @inheritdoc
44
     */
45
    public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
46
    {
47
        $this->__call(__METHOD__, func_get_args());
48
    }
49
50
    /**
51
     * @inheritdoc
52
     */
53
    public function registerBundles()
54
    {
55
        $this->__call(__METHOD__, func_get_args());
56
    }
57
58
    /**
59
     * @inheritdoc
60
     */
61
    public function registerContainerConfiguration(\Symfony\Component\Config\Loader\LoaderInterface $loader)
62
    {
63
        $this->__call(__METHOD__, func_get_args());
64
    }
65
66
    /**
67
     * @inheritdoc
68
     */
69
    public function boot()
70
    {
71
        // Do nothing
72
    }
73
74
    /**
75
     * @inheritdoc
76
     */
77
    public function shutdown()
78
    {
79
        $this->__call(__METHOD__, func_get_args());
80
    }
81
82
    /**
83
     * @inheritdoc
84
     */
85
    public function getBundles()
86
    {
87
        return [];
88
    }
89
90
    /**
91
     * @inheritdoc
92
     */
93
    public function getBundle($name, $first = true)
94
    {
95
        $this->__call(__METHOD__, func_get_args());
96
    }
97
98
    /**
99
     * @inheritdoc
100
     */
101
    public function locateResource($name, $dir = null, $first = true)
102
    {
103
        $this->__call(__METHOD__, func_get_args());
104
    }
105
106
    /**
107
     * @inheritdoc
108
     */
109
    public function getName()
110
    {
111
        return 'fake';
112
    }
113
114
    /**
115
     * @inheritdoc
116
     */
117
    public function getEnvironment()
118
    {
119
        return 'fake_env';
120
    }
121
122
    /**
123
     * @inheritdoc
124
     */
125
    public function isDebug()
126
    {
127
        return true;
128
    }
129
130
    /**
131
     * @inheritdoc
132
     */
133
    public function getRootDir()
134
    {
135
        $this->__call(__METHOD__, func_get_args());
136
    }
137
138
    /**
139
     * @inheritdoc
140
     */
141
    public function getContainer()
142
    {
143
        return new Container();
144
    }
145
146
    /**
147
     * @inheritdoc
148
     */
149
    public function getStartTime()
150
    {
151
        $this->__call(__METHOD__, func_get_args());
152
    }
153
154
    /**
155
     * @inheritdoc
156
     */
157
    public function getCacheDir()
158
    {
159
        $this->__call(__METHOD__, func_get_args());
160
    }
161
162
    /**
163
     * @inheritdoc
164
     */
165
    public function getLogDir()
166
    {
167
        $this->__call(__METHOD__, func_get_args());
168
    }
169
170
    /**
171
     * @inheritdoc
172
     */
173
    public function getCharset()
174
    {
175
        $this->__call(__METHOD__, func_get_args());
176
    }
177
178
    /**
179
     * @inheritdoc
180
     */
181
    public function isClassInActiveBundle($class)
0 ignored issues
show
The parameter $class is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
182
    {
183
        $this->__call(__METHOD__, func_get_args());
184
    }
185
}
186