Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
doc /
Log /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
composite.php
305
B
-rw-r--r--
console.php
149
B
-rw-r--r--
display.php
280
B
-rw-r--r--
error_log.php
169
B
-rw-r--r--
file.php
216
B
-rw-r--r--
firebug.php
270
B
-rw-r--r--
mail.php
226
B
-rw-r--r--
null.php
133
B
-rw-r--r--
observer_mail.php
655
B
-rw-r--r--
pear_error_handler.php
620
B
-rw-r--r--
php_error_handler.php
768
B
-rw-r--r--
sqlite.php
489
B
-rw-r--r--
sql.php
220
B
-rw-r--r--
syslog.php
156
B
-rw-r--r--
win.php
208
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : observer_mail.php
<?php require_once 'Log/observer.php'; class Log_observer_mail extends Log_observer { var $_to = ''; var $_subject = ''; var $_pattern = ''; function Log_observer_mail($priority, $conf) { /* Call the base class constructor. */ $this->Log_observer($priority); /* Configure the observer. */ $this->_to = $conf['to']; $this->_subject = $conf['subject']; $this->_pattern = $conf['pattern']; } function notify($event) { if (preg_match($this->_pattern, $event['message']) != 0) { mail($this->_to, $this->_subject, $event['message']); } } } ?>
Close