Issues (125)

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.

src/NilaiServiceProvider.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 Bantenprov\Nilai;
4
5
use Illuminate\Support\ServiceProvider;
6
use Bantenprov\Nilai\Console\Commands\NilaiCommand;
7
8
/**
9
 * The NilaiServiceProvider class
10
 *
11
 * @package Bantenprov\Nilai
12
 * @author  bantenprov <[email protected]>
13
 */
14
class NilaiServiceProvider extends ServiceProvider
15
{
16
    /**
17
     * Indicates if loading of the provider is deferred.
18
     *
19
     * @var bool
20
     */
21
    protected $defer = false;
22
23
    /**
24
     * Bootstrap the application events.
25
     *
26
     * @return void
27
     */
28
    public function boot()
29
    {
30
        $this->routeHandle();
31
        $this->configHandle();
32
        $this->langHandle();
33
        $this->viewHandle();
34
        $this->assetHandle();
35
        $this->migrationHandle();
36
        $this->publicHandle();
37
        $this->seedHandle();
38
        $this->publishHandle();
39
    }
40
41
    /**
42
     * Register the service provider.
43
     *
44
     * @return void
45
     */
46
    public function register()
47
    {
48
        $this->app->singleton('nilai', function ($app) {
49
            return new Nilai;
50
        });
51
52
        $this->app->singleton('command.nilai', function ($app) {
53
            return new NilaiCommand;
54
        });
55
56
        $this->commands('command.nilai');
57
    }
58
59
    /**
60
     * Get the services provided by the provider.
61
     *
62
     * @return array
63
     */
64
    public function provides()
65
    {
66
        return [
67
            'nilai',
68
            'command.nilai',
69
        ];
70
    }
71
72
    /**
73
     * Loading and publishing package's config
74
     *
75
     * @return void
76
     */
77
    protected function configHandle($publish = '')
78
    {
79
        $packageConfigPath = __DIR__.'/config';
80
        $appConfigPath     = config_path('bantenprov/nilai');
81
82
        $this->mergeConfigFrom($packageConfigPath.'/nilai.php', 'nilai');
83
        $this->mergeConfigFrom($packageConfigPath.'/akademik.php', 'akademik');
84
85
        $this->publishes([
86
            $packageConfigPath.'/nilai.php' => $appConfigPath.'/nilai.php',
87
            $packageConfigPath.'/akademik.php' => $appConfigPath.'/akademik.php',
88
        ], $publish ? $publish : 'nilai-config');
89
    }
90
91
    /**
92
     * Loading package routes
93
     *
94
     * @return void
95
     */
96
    protected function routeHandle()
97
    {
98
        $this->loadRoutesFrom(__DIR__.'/routes/routes.php');
99
    }
100
101
    /**
102
     * Loading and publishing package's translations
103
     *
104
     * @return void
105
     */
106 View Code Duplication
    protected function langHandle($publish = '')
107
    {
108
        $packageTranslationsPath = __DIR__.'/resources/lang';
109
110
        $this->loadTranslationsFrom($packageTranslationsPath, 'nilai');
111
112
        $this->publishes([
113
            $packageTranslationsPath => resource_path('lang/vendor/nilai'),
114
        ], $publish ? $publish : 'nilai-lang');
115
    }
116
117
    /**
118
     * Loading and publishing package's views
119
     *
120
     * @return void
121
     */
122 View Code Duplication
    protected function viewHandle($publish = '')
123
    {
124
        $packageViewsPath = __DIR__.'/resources/views';
125
126
        $this->loadViewsFrom($packageViewsPath, 'nilai');
127
128
        $this->publishes([
129
            $packageViewsPath => resource_path('views/vendor/nilai'),
130
        ], $publish ? $publish : 'nilai-views');
131
    }
132
133
    /**
134
     * Publishing package's assets (JavaScript, CSS, images...)
135
     *
136
     * @return void
137
     */
138
    protected function assetHandle($publish = '')
139
    {
140
        $packageAssetsPath = __DIR__.'/resources/assets';
141
142
        $this->publishes([
143
            $packageAssetsPath => resource_path('assets'),
144
        ], $publish ? $publish : 'nilai-assets');
145
    }
146
147
    /**
148
     * Publishing package's migrations
149
     *
150
     * @return void
151
     */
152
    protected function migrationHandle($publish = '')
153
    {
154
        $packageMigrationsPath = __DIR__.'/database/migrations';
155
156
        $this->loadMigrationsFrom($packageMigrationsPath);
157
158
        $this->publishes([
159
            $packageMigrationsPath => database_path('migrations')
160
        ], $publish ? $publish : 'nilai-migrations');
161
    }
162
163
    /**
164
     * Publishing package's publics (JavaScript, CSS, images...)
165
     *
166
     * @return void
167
     */
168
    public function publicHandle($publish = '')
169
    {
170
        $packagePublicPath = __DIR__.'/public';
171
172
        $this->publishes([
173
            $packagePublicPath => base_path('public')
174
        ], $publish ? $publish : 'nilai-public');
175
    }
176
177
    /**
178
     * Publishing package's seeds
179
     *
180
     * @return void
181
     */
182
    public function seedHandle($publish = '')
183
    {
184
        $packageSeedPath = __DIR__.'/database/seeds';
185
186
        $this->publishes([
187
            $packageSeedPath => base_path('database/seeds')
188
        ], $publish ? $publish : 'nilai-seeds');
189
    }
190
191
    /**
192
     * Publishing package's all files
193
     *
194
     * @return void
195
     */
196
    public function publishHandle()
197
    {
198
        $publish = 'nilai-publish';
199
200
        $this->routeHandle($publish);
201
        $this->configHandle($publish);
202
        $this->langHandle($publish);
203
        $this->viewHandle($publish);
204
        $this->assetHandle($publish);
205
        // $this->migrationHandle($publish);
0 ignored issues
show
Unused Code Comprehensibility introduced by
75% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
206
        $this->publicHandle($publish);
207
        $this->seedHandle($publish);
208
    }
209
}
210