__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Second authentication factor handling
*/
declare(strict_types=1);
namespace PhpMyAdmin\Plugins\TwoFactor;
use PhpMyAdmin\Plugins\TwoFactorPlugin;
use function __;
/**
* Simple two-factor authentication auth asking just for confirmation.
*
* This has no practical use, but can be used for testing.
*/
class Simple extends TwoFactorPlugin
{
/** @var string */
public static $id = 'simple';
/**
* Checks authentication, returns true on success
*/
public function check(): bool
{
return isset($_POST['2fa_confirm']);
}
/**
* Renders user interface to enter two-factor authentication
*
* @return string HTML code
*/
public function render()
{
return $this->template->render('login/twofactor/simple');
}
/**
* Get user visible name
*
* @return string
*/
public static function getName()
{
return __('Simple two-factor authentication');
}
/**
* Get user visible description
*
* @return string
*/
public static function getDescription()
{
return __('For testing purposes only!');
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Application.php | File | 3.71 KB | 0644 |
|
| Invalid.php | File | 1.11 KB | 0644 |
|
| Key.php | File | 5.83 KB | 0644 |
|
| Simple.php | File | 1.15 KB | 0644 |
|
| WebAuthn.php | File | 8.08 KB | 0644 |
|