Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
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']); } } } ?>