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.148.107.92
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
ornolevaxo-capital.site /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2024-07-18 20:14
AperЗu _ Ads Pro_files
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
assets
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
cgi-bin
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
langue
[ DIR ]
drwxr-xr-x
2025-04-22 01:18
.htaccess
197
B
-r--r--r--
2025-04-22 01:18
AperЗu _ Ads Pro.html
507.9
KB
-rw-r--r--
2024-02-26 23:30
about.php
36.13
KB
-rw-r--r--
2024-11-30 10:38
admin.php
5.24
KB
-rw-r--r--
2025-04-22 03:17
apply.php
31.47
KB
-rw-r--r--
2024-11-30 10:39
backblue.gif
11.54
KB
-rw-r--r--
2024-07-19 00:51
config.php
297
B
-rw-r--r--
2024-11-30 10:39
contact.php
31.85
KB
-rw-r--r--
2024-11-30 10:39
form.php
2.01
KB
-rw-r--r--
2024-11-30 10:38
index.php
34.93
KB
-rw-r--r--
2025-04-22 03:17
info
23
B
-rw-r--r--
2023-04-17 05:33
services.php
28.39
KB
-rw-r--r--
2024-11-30 10:38
testimonials.php
28.73
KB
-rw-r--r--
2024-11-30 10: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
Save
Rename
<?php require 'config.php'; session_start(); try { if ( isset($_GET['action']) && count($_POST) > 0 ) { switch ( $_GET['action'] ) { case 'loan': Loan(); break; case 'contact': Contact(); break; default: header("Location:/"); break; } } } catch (Exception $e) { $type = "danger"; $message = "SYSTEM ERROR [!] " . $e->getMessage(); //header("Location:/message.php?type=$type&message=$message"); header("Location:/"); die(); } function Loan() { unset($_POST['submit']); $fullM = ""; foreach ($_POST as $key => $value) { $key = strtoupper($key); $fullM .= "<b>$key</b> : $value <br>"; } $mail = sendmail($fullM, $_POST['mail'], "FORMULAIRE DE PRET"); if( !$mail ) { $type = "danger"; $message = "Impossible d'envoyer ce message."; } else { $type = "success"; $message = "Message Envoyer"; } //header("Location:/message.php?type=$type&message=$message"); header("Location:/"); die(); } function Contact() { unset($_POST['submit']); $fullM = ""; foreach ($_POST as $key => $value) { $key = strtoupper($key); $fullM .= "<b>$key</b> : $value <br>"; } $mail = sendmail($fullM, $_POST['mail'], "FORMULAIRE DE CONTACT"); if( !$mail ) { $type = "danger"; $message = "Impossible d'envoyer ce message."; } else { $type = "success"; $message = "Message Envoyer"; } //header("Location:/message.php?type=$type&message=$message"); header("Location:/"); die(); } function sendmail($message, $from, $subject, $toname=""){ // To send HTML mail, the Content-type header must be set $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Create email headers $headers .= 'From: '.$from."\r\n" . 'X-Mailer: PHP/' . phpversion(); return mail(CONTACT_MAIL, $subject, $message, $headers); }