uawdijnntqw1x1x1
IP : 216.73.217.47
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
yapwebtv.com
/
..
/
yapwebtv.com
/
Modules
/
Model
/
..
/
.
/
User
/
Http
/
Controllers
/
LoginController.php
/
/
<?php namespace Modules\User\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\Response; use Illuminate\Routing\Controller; use Cartalyst\Sentinel\Checkpoints\ThrottlingException; use Cartalyst\Sentinel\Checkpoints\NotActivatedException; use Sentinel; use Validator; class LoginController extends Controller { public function index() { return view('user::login'); } public function postLogin(Request $request) { Validator::make($request->all(), [ 'email' => 'required|email', 'password' => 'required|min:6|max:30', ])->validate(); try { $rememberMe = false; if (isset($request->remamber_me)): $rememberMe = true; endif; if (Sentinel::authenticate($request->all(), $rememberMe)): return redirect()->route('dashboard'); else: return redirect()->back()->with(['error' => __('email_password_mismatch')]); endif; } catch (ThrottlingException $e) { $delay = $e->getDelay(); return redirect()->back()->with(['error' => __('you_are_banned')]); } catch (NotActivatedException $e) { return redirect()->back()->with(['error' => __('your_account_is_not_activated')]); } } public function logout() { Sentinel::logout(); return redirect()->route('login'); } }
/var/www/yapwebtv.com/../yapwebtv.com/Modules/Model/.././User/Http/Controllers/LoginController.php