UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
testappnew
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
ServiceAccount.php
<?php declare(strict_types=1); namespace Kreait\Firebase; use Kreait\Firebase\Exception\InvalidArgumentException; use Kreait\Firebase\Util\JSON; use Throwable; /** * @internal */ class ServiceAccount { /** @var array<string, string> */ private $data = []; public function getProjectId(): string { return $this->data['project_id'] ?? ''; } public function getClientEmail(): string { return $this->data['client_email'] ?? ''; } public function getPrivateKey(): string { return $this->data['private_key'] ?? ''; } /** * @return array<string, string> */ public function asArray(): array { $array = $this->data; $array['type'] = $array['type'] ?? 'service_account'; return $array; } /** * @param self|string|array<mixed> $value * * @throws InvalidArgumentException * * @return ServiceAccount */ public static function fromValue($value): self { if ($value instanceof self) { return $value; } if (\is_string($value) && \mb_strpos($value, '{') === 0) { try { return self::fromJson($value); } catch (InvalidArgumentException $e) { throw new InvalidArgumentException('Invalid service account specification'); } } if (\is_string($value) && \mb_strpos($value, '{') !== 0) { try { return self::fromJsonFile($value); } catch (InvalidArgumentException $e) { throw new InvalidArgumentException('Invalid service account specification'); } } if (\is_array($value)) { return self::fromArray($value); } throw new InvalidArgumentException('Invalid service account specification.'); } /** * @param array<string, string> $data */ private static function fromArray(array $data): self { $type = $data['type'] ?? ''; if ($type !== 'service_account') { throw new InvalidArgumentException( 'A Service Account specification must have a field "type" with "service_account" as its value.' .' Please make sure you download the Service Account JSON file from the Service Accounts tab' .' in the Firebase Console, as shown in the documentation on' .' https://firebase.google.com/docs/admin/setup#add_firebase_to_your_app' ); } $serviceAccount = new self(); $serviceAccount->data = $data; return $serviceAccount; } private static function fromJson(string $json): self { $config = JSON::decode($json, true); return self::fromArray($config); } private static function fromJsonFile(string $filePath): self { try { $file = new \SplFileObject($filePath); $json = (string) $file->fread($file->getSize()); } catch (Throwable $e) { throw new InvalidArgumentException("{$filePath} can not be read: {$e->getMessage()}"); } try { $serviceAccount = self::fromJson($json); } catch (Throwable $e) { throw new InvalidArgumentException(\sprintf('%s could not be parsed to a Service Account: %s', $filePath, $e->getMessage())); } return $serviceAccount; } }
Copyright © 2025 - UnknownSec