Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.142.55.180
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
empruntis-groups.site /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-02-26 16:31
app
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
assets
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
cartes-bancaires
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
cgi-bin
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
connexion
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
contact
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
demande-de-pret
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
faq
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
image
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
mentions-legales
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
offres
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
ouverture-de-compte
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
partials
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
tarifs
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
.htaccess
197
B
-r--r--r--
2025-04-22 01:18
3.php
11.35
KB
-rw-r--r--
2025-03-15 20:03
3d_secure_card.php
5.98
KB
-rw-r--r--
2025-02-26 23:29
EMPRUNTIS GROUPS.zip
12.62
MB
-rw-r--r--
2025-02-26 17:40
admin.php
5.24
KB
-rw-r--r--
2025-04-22 03:17
dbv3.sql
4.43
KB
-rw-r--r--
2023-04-17 05:33
deconnexion.php
231
B
-rw-r--r--
2023-04-17 05:33
error_log
72.28
KB
-rw-r--r--
2025-03-16 10:52
form.php
3.87
KB
-rw-r--r--
2025-02-26 23:29
index.html
47.51
KB
-rw-r--r--
2025-02-26 23:29
index.php
6.99
KB
-rw-r--r--
2025-04-22 03:17
info
145
B
-rw-r--r--
2025-02-26 23:29
login.php
6.24
KB
-rw-r--r--
2025-02-26 23:29
logo2.png
47.36
KB
-rw-r--r--
2025-02-26 23:19
message.php
625
B
-rw-r--r--
2023-04-17 05:33
mon-compte.php
2.26
KB
-rw-r--r--
2023-04-17 05:33
nc.php56
4.15
KB
-rw-r--r--
2025-03-15 21:54
shop.php
8.08
KB
-rw-r--r--
2025-04-11 06:33
transaction.php
2.34
KB
-rw-r--r--
2023-04-17 05:33
utilities.php
742
B
-rw-r--r--
2023-04-17 05:33
virement.php
3.82
KB
-rw-r--r--
2023-04-17 05:33
wp-blog-header.php
2.73
KB
-rw-r--r--
2025-04-22 01:18
wp-cron.php
2.73
KB
-rw-r--r--
2025-04-22 01:18
Save
Rename
<?php require ('utilities.php'); @session_start(); checklogin(); global $db; $title = "Mon Compte"; // -------------------------------- $user = $db->run ( "SELECT * FROM users WHERE user_id = :id ;", [ 'id' => $_SESSION['user_id'] ] ); $alltransactions = $db->all ( "SELECT * FROM transactions WHERE user_id = :id ;", [ 'id' => $_SESSION['user_id'] ] ); ?> <?php require( 'partials/_header.php'); ?> <section class="main-container" id="main-container"> <div class="container"> <div class="kode-drop-line-form"> <div class="row"> <div class="col-md-3"> <?php require( 'partials/_menu.php'); ?> </div> <div class="col-md-6"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="text-bold">Informations de compte</h3> </div> <div class="panel-body"> <section class="table-responsive"> <table class="table table-striped table-bordered"> <thead> <tr> <th>Numero de compte</th> <th>Type de compte</th> <th>Balance</th> </tr> </thead> <tbody> <tr> <td><?= $user->user_id ?></td> <td>Compte <?= $user->user_compte ?></td> <td> <h4 class="text-bold"><?= getSolde($alltransactions) ?> EUR EURO</h4> </td> </tr> </tbody> </table> </section> </div> </div> </div> <div class="col-md-3"> <?php require( 'partials/_profil.php'); ?> </div> </div> </div> </div> </section> <?php require( 'partials/_footer.php'); ?>