HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/WordPress/PlatformForm.php
<?php

namespace Nextend\Framework\Form\WordPress;

use Nextend\Framework\Form\Base\PlatformFormBase;
use Nextend\Framework\Request\Request;

class PlatformForm extends PlatformFormBase {

    public function tokenize() {
        return '<input type="hidden" name="nextend_nonce" value="' . wp_create_nonce('nextend_security') . '">';
    }

    public function tokenizeUrl() {
        $a                  = array();
        $a['nextend_nonce'] = wp_create_nonce('nextend_security');

        return $a;
    }

    public function checkToken() {
        return wp_verify_nonce(Request::$REQUEST->getVar('nextend_nonce'), 'nextend_security');
    }
}