Issues (25)

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.

app/Http/Controllers/Auth/LoginController.php (5 issues)

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 namespace App\Http\Controllers\Auth;
2
3
use App\Events\Users\LoggedIn;
4
use App\Events\Users\LoggedOut;
5
use App\Events\Users\Registered;
6
use App\Exceptions\Common\ValidationException;
7
use App\Exceptions\Users\LoginNotValidException;
8
use App\Http\Controllers\Controller;
9
use App\Models\User;
10
use App\Models\UserOAuth;
11
use Illuminate\Foundation\Auth\AuthenticatesUsers;
12
use Illuminate\Http\Request;
13
use Laravel\Socialite\Contracts\Factory as SocialiteContract;
14
use Laravel\Socialite\AbstractUser as SocialiteUser;
15
16
class LoginController extends Controller
17
{
18
    use AuthenticatesUsers;
19
20
    private $redirectTo;
21
22
    /**
23
     * Create a new authentication controller instance.
24
     */
25
    public function __construct()
26
    {
27
        if (!empty($locale = app('translator')->getLocale()) && $locale != app('config')->get('app.locale')) {
28
            $this->redirectTo = '/' . $locale . $this->redirectTo;
29
        }
30
31
        $this->middleware('guest', ['except' => 'logout']);
32
    }
33
34
    /**
35
     * Show the application login form.
36
     *
37
     * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
38
     */
39
    public function showLoginForm()
40
    {
41
        return view('auth/login');
42
    }
43
44
    /**
45
     * Log the user in.
46
     *
47
     * @param \Illuminate\Http\Request $request
48
     *
49
     * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
50
     * @throws \App\Exceptions\Common\ValidationException
51
     */
52
    public function loginViaWeb(Request $request)
53
    {
54
        $validator = app('validator')->make($request->all(), [
55
            'email' => 'required|email',
56
            'password' => 'required',
57
        ]);
58
        if ($validator->fails()) {
59
            throw new ValidationException($validator);
60
        }
61
62
        // If the class is using the ThrottlesLogins trait, we can automatically throttle
63
        // the login attempts for this application. We'll key this by the username and
64
        // the IP address of the client making these requests into this application.
65
        if ($lockedOut = $this->hasTooManyLoginAttempts($request)) {
66
            $this->fireLockoutEvent($request);
67
68
            return $this->sendLockoutResponse($request);
69
        }
70
71
        $credentials = $request->only('email', 'password');
72
73
        if (app('auth.driver')->attempt($credentials, $request->has('remember'))) {
74
            $request->session()->regenerate();
0 ignored issues
show
The method regenerate() does not seem to exist on object<Symfony\Component...ssion\SessionInterface>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
75
            $this->clearLoginAttempts($request);
76
            event(new LoggedIn($user = app('auth.driver')->user()));
77
78
            if ($request->expectsJson()) {
79
                return response()->json(['data' => $user]);
80
            }
81
82
            return redirect()->intended($this->redirectPath());
83
        }
84
85
        // If the login attempt was unsuccessful we will increment the number of attempts
86
        // to login and redirect the user back to the login form. Of course, when this
87
        // user surpasses their maximum number of attempts they will get locked out.
88
        if (!$lockedOut) {
89
            $this->incrementLoginAttempts($request);
90
        }
91
92
        if ($request->expectsJson()) {
93
            throw new LoginNotValidException();
94
        }
95
96
        return redirect()->back()
97
            ->withInput($request->only('email', 'remember'))
98
            ->withErrors([
99
                'email' => app('translator')->get('auth.failed'),
100
            ]);
101
    }
102
103
    /**
104
     * @param \Laravel\Socialite\Contracts\Factory $socialite
105
     * @param string                               $provider
106
     *
107
     * @return \Symfony\Component\HttpFoundation\RedirectResponse
108
     */
109
    public function handleOAuthRedirect(SocialiteContract $socialite, $provider)
110
    {
111
        return $socialite->driver($provider)->redirect();
112
    }
113
114
    /**
115
     * Handle OAuth login.
116
     *
117
     * @param \Illuminate\Http\Request             $request
118
     * @param \Laravel\Socialite\Contracts\Factory $socialite
119
     * @param string                               $provider
120
     *
121
     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
122
     */
123
    public function handleOAuthReturn(Request $request, SocialiteContract $socialite, $provider)
124
    {
125
        switch ($provider) {
126
            case 'google':
127
            case 'facebook':
128
                if (!$request->exists('code')) {
129
                    return redirect('/login')->withErrors(trans('passwords.oauth_failed'));
130
                }
131
                break;
132
            case 'twitter':
133
                if (!$request->exists('oauth_token') || !$request->exists('oauth_verifier')) {
134
                    return redirect('/login')->withErrors(trans('passwords.oauth_failed'));
135
                }
136
                break;
137
        }
138
139
        /** @var SocialiteUser $userInfo */
140
        $userInfo = $socialite->driver($provider)->user();
141
        if ($this->loginViaOAuth($userInfo, $provider)) {
142
            return redirect()->intended($this->redirectPath());
143
        }
144
145
        return redirect('/login')->withErrors(trans('passwords.oauth_failed'));
146
    }
147
148
    /**
149
     * @param SocialiteUser $oauthUserData
150
     * @param string        $provider
151
     *
152
     * @return bool
153
     */
154
    protected function loginViaOAuth(SocialiteUser $oauthUserData, $provider)
155
    {
156
        /** @var UserOAuth $owningOAuthAccount */
157
        if ($owningOAuthAccount = UserOAuth::whereRemoteProvider($provider)->whereRemoteId($oauthUserData->id)->first()) {
158
            $ownerAccount = $owningOAuthAccount->owner;
159
            app('auth.driver')->login($ownerAccount, true);
160
161
            event(new LoggedIn($ownerAccount, $provider));
162
163
            return true;
164
        }
165
166
        return !$this->registerViaOAuth($oauthUserData, $provider) ? false : true;
167
    }
168
169
    /**
170
     * @param SocialiteUser $oauthUserData
171
     * @param string        $provider
172
     *
173
     * @return \Illuminate\Contracts\Auth\Authenticatable|bool
174
     */
175
    protected function registerViaOAuth(SocialiteUser $oauthUserData, $provider)
176
    {
177
        /** @var \App\Models\User $ownerAccount */
178
        if (!($ownerAccount = User::withTrashed()->whereEmail($oauthUserData->email)->first())) {
0 ignored issues
show
The method withTrashed() does not exist on App\Models\User. Did you maybe mean trashed()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
179
            $ownerAccount = User::create([
0 ignored issues
show
The method create() does not exist on App\Models\User. Did you maybe mean whereCreatedAt()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
180
                'name' => $oauthUserData->name,
181
                'email' => $oauthUserData->email,
182
                'password' => app('hash')->make(uniqid("", true))
183
            ]);
184
            event(new Registered($ownerAccount, $provider));
185
        }
186
187
        # If user account is soft-deleted, restore it.
188
        $ownerAccount->trashed() && $ownerAccount->restore();
189
190
        # Update missing user name.
191
        if (!$ownerAccount->name) {
192
            $ownerAccount->name = $oauthUserData->name;
193
            $ownerAccount->save();
194
        }
195
196
        ($doLinkOAuthAccount = $this->linkOAuthAccount($oauthUserData, $provider, $ownerAccount)) && app('auth.driver')->login($ownerAccount, true);
197
198
        event(new LoggedIn($ownerAccount, $provider));
199
200
        return $doLinkOAuthAccount;
201
    }
202
203
    /**
204
     * @param SocialiteUser $oauthUserData
205
     * @param string        $provider
206
     * @param User          $ownerAccount
207
     *
208
     * @return \App\Models\User|bool
209
     */
210
    protected function linkOAuthAccount(SocialiteUser $oauthUserData, $provider, $ownerAccount)
211
    {
212
        /** @var UserOAuth[] $linkedAccounts */
213
        $linkedAccounts = $ownerAccount->linkedAccounts()->ofProvider($provider)->get();
214
215
        foreach ($linkedAccounts as $linkedAccount) {
216
            if ($linkedAccount->remote_id === $oauthUserData->id || $linkedAccount->email === $oauthUserData->email) {
217
                $linkedAccount->remote_id = $oauthUserData->id;
218
                $linkedAccount->nickname = $oauthUserData->nickname;
219
                $linkedAccount->name = $oauthUserData->name;
220
                $linkedAccount->email = $oauthUserData->email;
221
                $linkedAccount->avatar = $oauthUserData->avatar;
222
223
                return $linkedAccount->save() ? $ownerAccount : false;
224
            }
225
        }
226
227
        $linkedAccount = new UserOAuth();
228
        $linkedAccount->remote_provider = $provider;
229
        $linkedAccount->remote_id = $oauthUserData->id;
230
        $linkedAccount->nickname = $oauthUserData->nickname;
231
        $linkedAccount->name = $oauthUserData->name;
232
        $linkedAccount->email = $oauthUserData->email;
233
        $linkedAccount->avatar = $oauthUserData->avatar;
234
235
        return $ownerAccount->linkedAccounts()->save($linkedAccount) ? $ownerAccount : false;
236
    }
237
238
    /**
239
     * Log the user out of the application.
240
     *
241
     * @param \Illuminate\Http\Request $request
242
     *
243
     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
244
     */
245
    public function logout(Request $request)
246
    {
247
        if (app('auth.driver')->check()) {
248
            $user = app('auth.driver')->user();
249
250
            app('auth.driver')->logout();
251
252
            app('events')->fire(new LoggedOut($user));
253
        }
254
255
        $request->session()->flush();
0 ignored issues
show
The method flush() does not seem to exist on object<Symfony\Component...ssion\SessionInterface>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
256
        $request->session()->regenerate();
0 ignored issues
show
The method regenerate() does not seem to exist on object<Symfony\Component...ssion\SessionInterface>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
257
258
        if ($request->expectsJson()) {
259
            return response()->json([]);
260
        }
261
262
        return redirect('/');
263
    }
264
}
265