Linux br942.hostgator.com.br 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
: 162.241.2.188 | : 3.147.28.162
Cant Read [ /etc/named.conf ]
8.2.22
manoe678
May The Force Be With You
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
MASS DEFACE
+ Create Folder
+ Create File
/
var /
softaculous /
sp /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
.htaccess
184
B
-rw-r--r--
_index.php
37
B
-rw-r--r--
check_charset.php
1.97
KB
-rw-r--r--
clone.php
13.18
KB
-rw-r--r--
edit.php
3.54
KB
-rw-r--r--
edit.xml
269
B
-rw-r--r--
extend.php
2.52
KB
-rw-r--r--
fileindex.php
32
B
-rw-r--r--
import.php
3.08
KB
-rw-r--r--
index.php
1.21
KB
-rw-r--r--
info.xml
20.32
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
24.56
KB
-rw-r--r--
install.xml
5.3
KB
-rw-r--r--
md5
1.38
KB
-rw-r--r--
post_download.json
95
B
-rw-r--r--
sign_on_func.php
2.13
KB
-rw-r--r--
soft.htaccess
124
B
-rw-r--r--
upgrade.php
3.27
KB
-rw-r--r--
upgrade.xml
231
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sign_on_func.php
<?php // Allows the user to login straight to SitePas function __sp_sign_on(){ global $__settings, $error, $software, $globals, $notes, $softpanel; // Lets fill in the necessary stuff $abc['username'] = $softpanel->user['name']; $abc['email'] = $__settings['email']; // BRANDING OPTIONS if(!empty($globals['sm_brand'])){ $abc['sm_brand'] = $globals['sm_brand']; } if(!empty($globals['sm_brand_url'])){ $abc['sm_brand_url'] = $globals['sm_brand_url']; } if(!empty($globals['sm_brand_editor'])){ $abc['sm_brand_editor'] = $globals['sm_brand_editor']; } if(!empty($globals['sm_logo_url'])){ $abc['sm_brand_logo'] = $globals['sm_logo_url']; } if(!empty($globals['sm_sitename'])){ $abc['sm_brand_app'] = $globals['sm_sitename']; } if(!empty($globals['sm_brand_demos'])){ // We need the http:// prefix $abc['sm_brand_demos'] = substr($globals['sm_brand_demos'], 0, 4) != 'http' ? 'http://'.$globals['sm_brand_demos'] : $globals['sm_brand_demos']; // Add a trailing slash $abc['sm_brand_demos'] = substr($abc['sm_brand_demos'], -1) != '/' ? $abc['sm_brand_demos'].'/' : $abc['sm_brand_demos']; } // Lets update the database with our vars sdb_query("INSERT INTO `".$__settings['dbprefix']."options` SET option_name = 'sitepad_vars', option_value = '".addslashes(serialize($abc))."' ON DUPLICATE KEY UPDATE option_value = '".addslashes(serialize($abc))."';", $__settings['softdbhost'], $__settings['softdbuser'], $__settings['softdbpass'], $__settings['softdb']); // Also add the login details $tmp['sp-login'] = generateRandStr(32); $tmp['time'] = time(); $q = "INSERT INTO `".$__settings['dbprefix']."options` SET option_name = 'sp-login', option_value = '".addslashes(serialize($tmp))."' ON DUPLICATE KEY UPDATE option_value = '".addslashes(serialize($tmp))."';"; sdb_query($q, $__settings['softdbhost'], $__settings['softdbuser'], $__settings['softdbpass'], $__settings['softdb']); //r_print($error);r_print($q);r_print($__settings);r_print($tmp);die(); // Redirect the user redirect($__settings['softurl'].'/?sp-login='.md5($tmp['sp-login']), true, true); die(); }
Close