Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
includes /
job /
Delete
Unzip
Name
Size
Permission
Date
Action
DoubleRedirectJob.php
5.25
KB
-rw-r--r--
2011-05-29 16:24
EmaillingJob.php
564
B
-rw-r--r--
2010-11-06 17:22
EnotifNotifyJob.php
924
B
-rw-r--r--
2010-09-03 20:24
JobQueue.php
9.66
KB
-rw-r--r--
2011-07-12 10:08
RefreshLinksJob.php
3.32
KB
-rw-r--r--
2011-04-20 02:12
UploadFromUrlJob.php
4.03
KB
-rw-r--r--
2011-03-25 12:21
Save
Rename
<?php /** * Old job for notification emails. * * @file * @ingroup JobQueue */ /** * Old job used for sending single notification emails; * kept for backwards-compatibility * * @ingroup JobQueue */ class EmaillingJob extends Job { function __construct( $title, $params, $id = 0 ) { parent::__construct( 'sendMail', Title::newMainPage(), $params, $id ); } function run() { UserMailer::send( $this->params['to'], $this->params['from'], $this->params['subj'], $this->params['body'], $this->params['replyto'] ); return true; } }