
| Path : /var/softaculous/wp51/ |
| Disable Functions : exec,passthru,shell_exec,system System : Linux server-604606.appsiete.com 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 [ Home ][ Zone-h ][ Jumping ][ Symlink ][ Mass Depes ][ Command ] |
| Current File : //var/softaculous/wp51/add_user.php |
<?php
@unlink(__FILE__);
// Validate if the request is from Softaculous
if($_REQUEST['pass'] != '[[autopass]]'){
die("Unauthorized Access");
}
require_once('wp-blog-header.php');
$user_data = '[[user_data]]';
$user_data = unserialize($user_data);
$add = wp_insert_user($user_data);
$ret = array();
if(is_wp_error($add)){
$ret['error'] = $add->get_error_messages();
}else{
$ret['done'] = 1;
}
echo '<add_user>'.serialize($ret).'</add_user>';
exit(0);