Issues (28)

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.

src/Container/ServiceContainer.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
 * Created by PhpStorm.
4
 * User: lenovo
5
 * Date: 6/15/2018
6
 * Time: 9:33 AM
7
 */
8
namespace TimSDK\Container;
9
10
use TimSDK\Core\API;
11
use Pimple\Container;
12
use GuzzleHttp\Client;
13
use TimSDK\Foundation\Config;
14
use TimSDK\Foundation\Log\LogManager;
15
use Pimple\Exception\UnknownIdentifierException;
16
use TimSDK\Container\ServiceContainerInterface as ContainerContract;
17
18
/**
19
 * Class ServiceContainer
20
 * @property Config $config
21
 * @property LogManager $log
22
 * @property Client $httpClient
23
 * @package TimSDK\Container
24
 */
25
class ServiceContainer extends Container implements ContainerContract
26
{
27
    /**
28
     * @var static
29
     */
30
    protected static $instance;
31
32
    /**
33
     * Base path
34
     *
35
     * @var string
36
     */
37
    protected $basePath;
38
39
    /**
40
     * @var array
41
     */
42
    protected $defaultConfig = [];
43
44
    /**
45
     * @var array
46
     */
47
    protected $userConfig = [];
48
49
    /**
50
     * @var array
51
     */
52
    protected $providers = [
53
        //
54
    ];
55
56
    /**
57
     * @var array
58
     */
59
    protected $instances;
60
61
    /**
62
     * ServiceContainer constructor.
63
     *
64
     * @param array $config
65
     * @param array $prepends
66
     */
67 31
    public function __construct(array $config = [], array $prepends = [])
68
    {
69 31
        $this->userConfig = $config;
70
71 31
        $this->setBasePath(dirname(__DIR__));
72
73 31
        $this->registerBaseBindings();
74
75 31
        $this->registerProviders($this->getProviders());
76
77 31
        parent::__construct($prepends);
78 31
    }
79
80
    /**
81
     * Magic get access.
82
     *
83
     * @param string $id
84
     * @return mixed|null
85
     * @throws UnknownIdentifierException
86
     */
87 3
    public function __get($id)
88
    {
89 3
        return $this->offsetGet($id);
90
    }
91
92
    /**
93
     * Magic set access.
94
     *
95
     * @param string $id
96
     * @param mixed  $value
97
     */
98 1
    public function __set($id, $value)
99
    {
100 1
        $this->offsetSet($id, $value);
101 1
    }
102
103
    /**
104
     * Gets a parameter or an object.
105
     *
106
     * @param string $id The unique identifier for the parameter or object
107
     *
108
     * @return mixed The value of the parameter or an object
109
     *
110
     * @throws UnknownIdentifierException If the identifier is not defined
111
     */
112 23
    public function offsetGet($id)
113
    {
114 23
        if (isset($this->instances[$id])) {
115 3
            return $this->instances[$id];
116
        }
117
118 21
        return parent::offsetGet($id); // TODO: Change the autogenerated stub
119
    }
120
121
    /**
122
     * @param ServiceContainer $instance
123
     * @return ServiceContainer
124
     */
125 31
    public static function setInstance(ServiceContainer $instance = null)
126
    {
127 31
        return self::$instance = $instance;
128
    }
129
130
    /**
131
     * Set the globally available instance of the container.
132
     *
133
     * @return static
134
     */
135 8
    public static function getInstance()
136
    {
137 8
        if (is_null(static::$instance)) {
138
            static::$instance = new static;
139
        }
140 8
        return static::$instance;
141
    }
142
143
    /**
144
     * Register an existing instance as shared in the container.
145
     *
146
     * @param $abstract
147
     * @param $instance
148
     * @return mixed
149
     */
150 31
    public function instance($abstract, $instance)
151
    {
152 31
        $this->instances[$abstract] = $instance;
153
154 31
        return $instance;
155
    }
156
157
    /**
158
     * @param mixed $basePath
159
     */
160 31
    public function setBasePath($basePath)
161
    {
162 31
        $this->basePath = rtrim($basePath, DIRECTORY_SEPARATOR);
163
164 31
        $this->instance('path.base', $this->basePath());
165 31
        $this->instance('path.cert', $this->basePath('Cert'));
166 31
    }
167
168
    /**
169
     * Get the base path
170
     *
171
     * @param  string  $path Optionally, a path to append to the base path
172
     * @return string
173
     */
174 31
    public function basePath($path = '')
175
    {
176 31
        return $this->basePath.($path ? DIRECTORY_SEPARATOR.$path : $path);
177
    }
178
179
    /**
180
     * Get the version number of the application.
181
     *
182
     * @return string
183
     */
184 1
    public function version()
185
    {
186 1
        throw new \InvalidArgumentException('Unknow version.');
187
    }
188
189
    /**
190
     * @return array
191
     */
192 10
    public function getConfig()
193
    {
194
        $base = [
195
            // http://docs.guzzlephp.org/en/stable/request-options.html
196
            'http' => [
197 10
                'timeout' => 5.0,
198 10
                'base_uri' => API::BASE_URL,
199
            ],
200
        ];
201
202 10
        return array_replace_recursive($base, $this->defaultConfig, $this->userConfig);
203
    }
204
205
    /**
206
     * Register all providers
207
     * @param array $providers
208
     */
209 31
    public function registerProviders(array $providers)
210
    {
211 31
        foreach ($providers as $provider) {
212 31
            parent::register(new $provider());
0 ignored issues
show
Comprehensibility Bug introduced by
It seems like you call parent on a different method (register() instead of registerProviders()). Are you sure this is correct? If so, you might want to change this to $this->register().

This check looks for a call to a parent method whose name is different than the method from which it is called.

Consider the following code:

class Daddy
{
    protected function getFirstName()
    {
        return "Eidur";
    }

    protected function getSurName()
    {
        return "Gudjohnsen";
    }
}

class Son
{
    public function getFirstName()
    {
        return parent::getSurname();
    }
}

The getFirstName() method in the Son calls the wrong method in the parent class.

Loading history...
213
        }
214 31
    }
215
216
    /**
217
     * Register the basic bindings into the container.
218
     *
219
     * @return void
220
     */
221 31
    public function registerBaseBindings()
222
    {
223 31
        self::setInstance($this);
224
225 31
        $this->instance(ServiceContainer::class, $this);
226
227 31
        $this->instance('app', $this);
228 31
    }
229
230
    /**
231
     * Get all providers
232
     *
233
     * @return array
234
     */
235 31
    public function getProviders()
236
    {
237 31
        return array_merge([
238 31
            \TimSDK\Foundation\ServiceProviders\ConfigServiceProvider::class,
239
            \TimSDK\Foundation\ServiceProviders\LogServiceProvider::class,
240
            \TimSDK\Foundation\ServiceProviders\HttpClientServiceProvider::class,
241 31
        ], $this->providers);
242
    }
243
}
244