userRepository = $userRepository; $this->serverRepository = $serverRepository; $this->permissionsService = $permissionsService; } /** * Authenticate a set of credentials and return the associated server details * for a SFTP connection on the daemon. * * @param \Pterodactyl\Http\Requests\Api\Remote\SftpAuthenticationFormRequest $request * @return \Illuminate\Http\JsonResponse * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function __invoke(SftpAuthenticationFormRequest $request): JsonResponse { // Reverse the string to avoid issues with usernames that contain periods. $parts = explode('.', strrev($request->input('username')), 2); // Unreverse the strings after parsing them apart. $connection = [ 'username' => strrev(array_get($parts, 1)), 'server' => strrev(array_get($parts, 0)), ]; if ($this->hasTooManyLoginAttempts($request)) { $seconds = $this->limiter()->availableIn($this->throttleKey($request)); throw new TooManyRequestsHttpException( $seconds, "Too many login attempts for this account, please try again in {$seconds} seconds." ); } /** @var \Pterodactyl\Models\Node $node */ $node = $request->attributes->get('node'); if (empty($connection['server'])) { throw new NotFoundHttpException; } /** @var \Pterodactyl\Models\User $user */ $user = $this->userRepository->findFirstWhere([ ['username', '=', $connection['username']], ]); $server = $this->serverRepository->getByUuid($connection['server'] ?? ''); if (! password_verify($request->input('password'), $user->password) || $server->node_id !== $node->id) { $this->incrementLoginAttempts($request); throw new HttpForbiddenException( 'Authorization credentials were not correct, please try again.' ); } if (! $user->root_admin && $server->owner_id !== $user->id) { $permissions = $this->permissionsService->handle($server, $user); if (! in_array(Permission::ACTION_FILE_SFTP, $permissions)) { throw new HttpForbiddenException( 'You do not have permission to access SFTP for this server.' ); } } // Remeber, for security purposes, only reveal the existence of the server to people that // have provided valid credentials, and have permissions to know about it. if ($server->installed !== 1 || $server->suspended) { throw new BadRequestHttpException( 'Server is not installed or is currently suspended.' ); } return JsonResponse::create([ 'server' => $server->uuid, // Deprecated, but still needed at the moment for Wings. 'token' => '', 'permissions' => $permissions ?? ['*'], ]); } /** * Get the throttle key for the given request. * * @param \Illuminate\Http\Request $request * @return string */ protected function throttleKey(Request $request) { $username = explode('.', strrev($request->input('username', ''))); return strtolower(strrev($username[0] ?? '') . '|' . $request->ip()); } }