PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
helpers
/
Solo
/
Session
<?php /** * @package solo * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Solo\Session; use Awf\Session\CsrfToken; class WordPressToken extends CsrfToken { /** * * Checks whether an incoming CSRF token value is valid. * * @param string $value The incoming token value. * * @return bool True if valid, false if not. * */ public function isValid($value) { return wp_verify_nonce($value, 'AkeebaBackupForWordPress') !== false; } /** * * Gets the value of the outgoing CSRF token. * * @return string * */ public function getValue() { return wp_create_nonce('AkeebaBackupForWordPress'); } /** * * Regenerates the value of the outgoing CSRF token. * * @return void * */ public function regenerateValue() { // No op. We use WordPress' nonce system. } }
[+]
..
[-] SegmentFactory.php
[edit]
[-] WordPressTokenFactory.php
[edit]
[-] Manager.php
[edit]
[-] Segment.php
[edit]
[-] WordPressToken.php
[edit]