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 /** * Job for notification emails. * * @file * @ingroup JobQueue */ /** * Job for email notification mails * * @ingroup JobQueue */ class EnotifNotifyJob extends Job { function __construct( $title, $params, $id = 0 ) { parent::__construct( 'enotifNotify', $title, $params, $id ); } function run() { $enotif = new EmailNotification(); // Get the user from ID (rename safe). Anons are 0, so defer to name. if( isset($this->params['editorID']) && $this->params['editorID'] ) { $editor = User::newFromId( $this->params['editorID'] ); // B/C, only the name might be given. } else { $editor = User::newFromName( $this->params['editor'], false ); } $enotif->actuallyNotifyOnPageChange( $editor, $this->title, $this->params['timestamp'], $this->params['summary'], $this->params['minorEdit'], $this->params['oldid'], $this->params['watchers'] ); return true; } }