Plugin Directory

Changeset 2977494


Ignore:
Timestamp:
10/11/2023 10:56:00 AM (2 years ago)
Author:
seosamba
Message:

Test plugin for version 6.3.1 (security improvements)

Location:
seosamba-webmasters/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • seosamba-webmasters/trunk/assets/js/dashboard.js

    r1685507 r2977494  
    1111            var data = {
    1212                action: 'seosfwm_save_access_key',
    13                 wp_access_key: $( 'input[name="wp_access_key"]' ).val()
     13                wp_access_key: $( 'input[name="wp_access_key"]' ).val(),
     14                security_field: $( 'input#wp-access-key_nonce' ).val()
    1415            };
    1516
  • seosamba-webmasters/trunk/modules/admin.php

    r1685507 r2977494  
    2828    public function save_access_key() {
    2929        try {
    30             if (is_admin()) {
     30            if (is_admin() && wp_verify_nonce($this->_params['security_field'],self::ACCESS_KEY_FIELD) ) {
    3131                $this->_save_access_key();
    3232                $response = array(
  • seosamba-webmasters/trunk/modules/dashboard.php

    r2002965 r2977494  
    6969                    <form action="" method="POST">
    7070                        <label class="text-bold fs14" for="wp-access-key">WordPress Access Key</label>
     71                        <input id="wp-access-key_nonce" type="hidden" value="<?php echo wp_create_nonce(SeosambaWebmasters::ACCESS_KEY_FIELD)?>" />
    7172                        <input id="wp-access-key" type="text" class="grid_5 alpha omega large"
    7273                               name="<?php echo SeosambaWebmasters::ACCESS_KEY_FIELD; ?>"
  • seosamba-webmasters/trunk/readme.txt

    r2753058 r2977494  
    11=== SeoSamba for WordPress Webmasters ===
    2 Contributors: seosamba, olegmalii
     2Contributors: seosamba, olegmalii, volodymyrkarpov
    33Donate link: https://www.seosamba.com/donate-seosamba-for-wordpress-webmasters.html
    44Tags: SEO, search engine rankings, Google webmaster tools, Google Search Console, Google verification, Google sitemap, xml sitemap, wordpress SEO
    55Requires at least: 4.4
    6 Tested up to: 6.0
    7 Stable tag: 1.0.5
     6Tested up to: 6.3.1
     7Stable tag: 1.0.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    101101= 1.0.5 =
    102102* Test plugin for version 6.0
     103= 1.0.6 =
     104* Test plugin for version 6.3.1 (security improvements)
    103105== Upgrade Notice ==
    104106No upgrade notice yet
  • seosamba-webmasters/trunk/seosamba-webmasters.php

    r2753058 r2977494  
    44Plugin URI: https://www.seosamba.com/wordpress-sitemap-seo-plugin-tool.html
    55Description: This plugin is a gateway to the "SeoSamba" platform. SeoSamba provides both free and premium SEO and marketing automation tools for websites owners.
    6 Version: 1.0.5
     6Version: 1.0.6
    77Author: SeoSamba
    88Author URI: https://www.seosamba.com/
Note: See TracChangeset for help on using the changeset viewer.