Plugin Directory

Changeset 3489173


Ignore:
Timestamp:
03/23/2026 03:43:33 PM (8 days ago)
Author:
frontiers
Message:

1.0.7

Location:
nodoss/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • nodoss/trunk/classes/base.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
  • nodoss/trunk/classes/load.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
  • nodoss/trunk/classes/plugin.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
  • nodoss/trunk/classes/setup.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
  • nodoss/trunk/inc/class-wp-sameorigin.php

    r3488271 r3489173  
    2828        // nodoss_blank_target_vulnerability
    2929        add_action('wp_enqueue_scripts', [$this, 'blank_target_vulnerability'], 10);
    30 
    31         // Enqueue same as origin
    32         // add_action('wp_head', [$this, 'injectContextMenuProtectionCss'], 99);
    3330    }
    3431
  • nodoss/trunk/inc/http/cross-origin-policy.php

    r3488271 r3489173  
    1 <?php // Cross Origin policy header
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     2// Cross Origin policy header
    23function nodoss_cross_origin_policy_headers() {
    34    /** Cross-Origin-Opener-Policy */
  • nodoss/trunk/inc/http/cross-origin-resource-sharing.php

    r3488271 r3489173  
    1 <?php
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    22/**
    33 * Add HTTPS cors Headers
  • nodoss/trunk/inc/http/csp-upgrade-insecure-requests.php

    r3488271 r3489173  
    1 <?php // Content-Security-Policy: upgrade-insecure-requests
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     2// Content-Security-Policy: upgrade-insecure-requests
    23function nodoss_upgrade_insecure_requests_csp_headers() {
    34    header( 'Content-Security-Policy: upgrade-insecure-requests');
  • nodoss/trunk/inc/http/referrer-policy.php

    r3488271 r3489173  
    1 <?php
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    22// Referrer-Policy: no-referrer
    33// Referrer-Policy: no-referrer-when-downgrade
  • nodoss/trunk/inc/http/strict-transport-security.php

    r3488271 r3489173  
    1 <?php
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    22/**
    33 * Set the HSTS header
  • nodoss/trunk/inc/http/x-content-type-options.php

    r3488271 r3489173  
    1 <?php /** Prevent MIME-Type Sniffing */
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     2/** Prevent MIME-Type Sniffing */
    23function nodoss_x_content_type_nosniff_headers() {
    34    header( 'X-Content-Type-Options: nosniff ');
  • nodoss/trunk/inc/http/x-permitted-cross-domain-policies.php

    r3488271 r3489173  
    1 <?php // X-Permitted-Cross-Domain-Policies
     1<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     2// X-Permitted-Cross-Domain-Policies
    23function nodoss_cdp_master_only_headers() {
    34    /** Master Only */
  • nodoss/trunk/inc/init/http-headers.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
  • nodoss/trunk/nodoss.php

    r3488271 r3489173  
    44 * @author        Edwin Bekedam
    55 * @license       gplv2
    6  * @version       1.0.6
     6 * @version       1.0.7
    77 *
    88 * @wordpress-plugin
     
    1010 * Plugin URI:  https://wordpress.org/plugins/nodoss
    1111 * Description: Lightweight Security plugin againts attacks, incl mordern securty headers.
    12  * Version:     1.0.6
     12 * Version:     1.0.7
    1313 * Author:      Edwin Bekedam
    1414 * Author URI:  https://github.com/frontiers-wp/nodoss
     
    4040// Define constant with current version
    4141if (! defined( 'NODOSS_VERSION' ) ) {
    42     define( 'NODOSS_VERSION', '1.0.6' );
     42    define( 'NODOSS_VERSION', '1.0.7' );
    4343}
    4444
  • nodoss/trunk/readme.txt

    r3488271 r3489173  
    77Description: Lightweight Security plugin againts attacks, incl mordern securty headers.
    88Requires at least: 5.0
    9 Tested up to: 6.8
     9Tested up to: 6.9
    1010Requires PHP: 8.1
    11 Stable tag: 1.0.6
     11Stable tag: 1.0.7
    1212License: GPLv2
    1313License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1414
    15 Stop bots, pingbacks, brute force hacking, script jacking, Iframe XSS attacks, CSRF Proctection, Insecure requests, invalid unwanted user edits.
     15Stop bots, pingbacks, protection againts brute force hacking, script jacking, Iframe XSS attacks, CSRF Proctection, Insecure requests, invalid unwanted user edits.
    1616
    1717== Description ==
     18
     19Pre-set Security Headers:
     20
     21Stop bots, pingbacks, protection againts brute force hacking, script jacking, Iframe XSS attacks, CSRF Proctection, Insecure requests, invalid unwanted user edits.
    1822
    1923Pre-set Security Headers:
     
    2428=x content-type-options =
    2529=x permitted cross domain policies =
     30
    2631
    2732== Installation ==
     
    7479= 1.0.6: December 01, 2025 =
    7580* Birthday of nodoss
    76  
     81= 1.0.7: Puplic release
     82Updated readme.
     83Plugin icon and header
Note: See TracChangeset for help on using the changeset viewer.