Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
cpanel-php84-log /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
composite.php
302
B
-rw-r--r--
2025-06-09 19:56
console.php
148
B
-rw-r--r--
2025-06-09 19:56
display.php
270
B
-rw-r--r--
2025-06-09 19:56
error_log.php
168
B
-rw-r--r--
2025-06-09 19:56
file.php
210
B
-rw-r--r--
2025-06-09 19:56
firebug.php
208
B
-rw-r--r--
2025-06-09 19:56
mail.php
220
B
-rw-r--r--
2025-06-09 19:56
null.php
132
B
-rw-r--r--
2025-06-09 19:56
observer_mail.php
672
B
-rw-r--r--
2025-06-09 19:56
pear_error_handler.php
619
B
-rw-r--r--
2025-06-09 19:56
php_error_handler.php
767
B
-rw-r--r--
2025-06-09 19:56
sql.php
214
B
-rw-r--r--
2025-06-09 19:56
sqlite.php
482
B
-rw-r--r--
2025-06-09 19:56
syslog.php
155
B
-rw-r--r--
2025-06-09 19:56
win.php
202
B
-rw-r--r--
2025-06-09 19:56
Save
Rename
<?php require_once 'Log/observer.php'; class Log_observer_mail extends Log_observer { private $to = ''; private $subject = ''; private $pattern = ''; public function __construct($priority, $conf) { /* Call the base class constructor. */ parent::__construct($priority); /* Configure the observer. */ $this->to = $conf['to']; $this->subject = $conf['subject']; $this->pattern = $conf['pattern']; } public function notify($event): void { if (preg_match($this->pattern, $event['message']) != 0) { mail($this->to, $this->subject, $event['message']); } } } ?>