Plugin Directory

Changeset 3212193


Ignore:
Timestamp:
12/23/2024 01:06:02 PM (16 months ago)
Author:
sasiddiqui
Message:

Bump to v1.0.1

Location:
http-auth
Files:
4 added
10 deleted
6 edited
10 copied

Legend:

Unmodified
Added
Removed
  • http-auth/tags/1.0.1/admin/class-http-auth-admin.php

    r2944651 r3212193  
    3535            'HTTP Auth',
    3636            'HTTP Auth',
    37             'administrator',
     37            'activate_plugins',
    3838            'http-auth-settings',
    3939            array( $this, 'admin_settings_page' )
     
    4343            'HTTP Auth Settings',
    4444            'Settings',
    45             'administrator',
     45            'activate_plugins',
    4646            'http-auth-settings',
    4747            array( $this, 'admin_settings_page' )
     
    5151            'About HTTP Auth',
    5252            'About',
    53             'administrator',
     53            'activate_plugins',
    5454            'http-auth-about-plugins',
    5555            array( $this, 'about_plugin' )
  • http-auth/tags/1.0.1/admin/class-http-auth-settings.php

    r2944651 r3212193  
    4646                        $http_rule .= PHP_EOL;
    4747
    48                         // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents
     48                        // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents
    4949                        file_put_contents( $filename, $http_rule, FILE_APPEND | LOCK_EX );
    5050                    }
     
    6767        <table class="http-auth-table">
    6868            <caption>
    69             <?php
    70                 esc_html_e( 'Credentials', 'http-auth' );
    71             ?>
     69                <?php esc_html_e( 'Credentials', 'http-auth' ); ?>
    7270            </caption>
    7371            <tbody>
    7472            <tr>
    7573                <th>
    76                 <?php
    77                 esc_html_e( 'Username :', 'http-auth' );
    78                 ?>
     74                    <?php esc_html_e( 'Username :', 'http-auth' ); ?>
    7975                </th>
    8076                <td>
    81                 <input type="text" name="http_auth_username" value="<?php echo esc_attr( $username ); ?>" class="regular-text" required />
     77                    <input type="text" name="http_auth_username" value="<?php echo esc_attr( $username ); ?>" class="regular-text" required />
    8278                </td>
    8379            </tr>
    8480            <tr>
    8581                <th>
    86                 <?php
    87                 esc_html_e( 'Password :', 'http-auth' );
    88                 ?>
     82                    <?php esc_html_e( 'Password :', 'http-auth' ); ?>
    8983                </th>
    9084                <td>
    91                 <input type="password" name="http_auth_password" value="<?php echo esc_attr( $password ); ?>" class="regular-text" required />
     85                    <input type="password" name="http_auth_password" value="<?php echo esc_attr( $password ); ?>" class="regular-text" required />
    9286                </td>
    9387            </tr>
     
    109103        <table class="http-auth-table">
    110104            <caption>
    111             <?php
    112                 esc_html_e( 'Message (Optional)', 'http-auth' );
    113             ?>
     105                <?php esc_html_e( 'Message (Optional)', 'http-auth' ); ?>
    114106            </caption>
    115107            <tbody>
    116108                <tr>
    117109                    <th>
    118                     <?php
    119                         esc_html_e( 'Cancel Message :', 'http-auth' );
    120                     ?>
     110                        <?php esc_html_e( 'Cancel Message :', 'http-auth' ); ?>
    121111                    </th>
    122112                    <td>
  • http-auth/tags/1.0.1/http-auth.php

    r2944651 r3212193  
    44 * Plugin URI: https://www.yasglobal.com/web-design-development/wordpress/http-auth/
    55 * Description: Secure your website from the Brute-force attack.
    6  * Version: 1.0.0
     6 * Version: 1.0.1
     7 * Requires at least: 3.5
     8 * Requires PHP: 5.6
    79 * Author: Sami Ahmed Siddiqui
    810 * Author URI: https://www.linkedin.com/in/sami-ahmed-siddiqui/
    911 * License: GPLv3
     12 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1013 *
    1114 * Text Domain: http-auth
     
    1720/**
    1821 *  HTTP Auth - Secure your website from the Brute-force attack
    19  *  Copyright 2016-2023 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>
     22 *  Copyright 2016-2024 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>
    2023 *
    2124 *  This program is free software: you can redistribute it and/or modify
  • http-auth/tags/1.0.1/includes/class-http-auth.php

    r2944651 r3212193  
    1919     * @var string
    2020     */
    21     public $version = '1.0.0';
     21    public $version = '1.0.1';
    2222
    2323    /**
  • http-auth/tags/1.0.1/readme.txt

    r3109224 r3212193  
    11=== HTTP Auth ===
    2 Contributors: aliya-yasir, sasiddiqui
    3 Tags: http-auth, brute attack, brute-force, restrict site, restrict pages, authentication, http authentication, login, admin, crawler, crawl, locked
     2Contributors: sasiddiqui
     3Tags: http-auth, brute attack, brute-force, restrict site, prevent-crawl
    44Requires at least: 3.5
    5 Tested up to: 6.5
    6 Stable tag: 1.0.0
     5Tested up to: 6.7
     6Stable tag: 1.0.1
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
    99
    10 Keeps you to secure your whole site on the development time and admin pages from the Brute attack.
     10Provides comprehensive security during development by protecting your entire site and your admin pages from brute-force attacks.
    1111
    1212== Description ==
    1313
    14 Enabling this plugin allows you to set up HTTP Authentication on your site. You can easily set username and password for HTTP Authentication.
     14This plugin empowers you to set up HTTP Authentication for your website. This adds an extra layer of security by requiring a username and password to access specific areas.
    1515
    16 This plugin helps:
     16Here's how it benefits you:
    1717
    18 * Secure your admin pages from the Brute attack.
    19 * Restricting crawler to crawl on your site while development.
    20 * Restrict admin pages after being your site Live.
    21 * Easy to activate or deactivate HTTP Auth without deactivating plugin.
     18* **Enhanced Admin Security:** Shield your admin pages from brute-force attacks by adding a login barrier.
     19* **Controlled Crawling:** Restrict crawlers from accessing your site during development, preventing unnecessary indexing.
     20* **Post-Launch Access Control:** Maintain control over admin page access even after your website goes live.
     21* **Easy Activation/Deactivation:** Conveniently enable or disable HTTP Auth without deactivating the plugin entirely.
    2222
    23 === Bug reports ===
     23=== Help Us Improve! ===
    2424
    25 Bug reports for HTTP Auth are [welcomed on GitHub](https://github.com/yasglobal/http-auth). Please note GitHub is not a support forum, and issues that aren't properly qualified as bugs will be closed.
     25I am constantly working to enhance this plugin and your feedback is valuable. If you are happy with the plugin, consider leaving a review on WordPress.org. Your positive feedback motivates us to keep improving!
     26
     27Link to Reviews: [https://wordpress.org/support/plugin/http-auth/reviews/?rate=5#new-post]()
     28
     29=== Bug Reports ===
     30
     31We welcome bug reports for HTTP Auth on GitHub: [https://github.com/samiahmedsiddiqui/http-auth](). Please remember that GitHub is primarily for bug reporting, and issues not classified as genuine bugs may be closed.
    2632
    2733== Installation ==
     
    2935This process defines you the steps to follow either you are installing through WordPress or Manually from FTP.
    3036
    31 **From within WordPress**
     37=== From within WordPress ===
    3238
    33391. Visit 'Plugins > Add New'
     
    36424. Go to "after activation" below.
    3743
    38 **Manually**
     44=== Manually ===
    3945
    40461. Upload the `http-auth` folder to the `/wp-content/plugins/` directory
     
    42483. Go to "after activation" below.
    4349
    44 **After activation**
     50=== After activation ===
    4551
    46521. Go to the plugin settings page and set up the plugin for your site.
     
    4854
    4955== Changelog ==
     56
     57= 1.0.1 - Dec 23, 24 =
     58
     59Fix minor WPCS issues and change text for better understanding.
    5060
    5161= 1.0.0 - July 28, 2023 =
  • http-auth/trunk/admin/class-http-auth-admin.php

    r2944651 r3212193  
    3535            'HTTP Auth',
    3636            'HTTP Auth',
    37             'administrator',
     37            'activate_plugins',
    3838            'http-auth-settings',
    3939            array( $this, 'admin_settings_page' )
     
    4343            'HTTP Auth Settings',
    4444            'Settings',
    45             'administrator',
     45            'activate_plugins',
    4646            'http-auth-settings',
    4747            array( $this, 'admin_settings_page' )
     
    5151            'About HTTP Auth',
    5252            'About',
    53             'administrator',
     53            'activate_plugins',
    5454            'http-auth-about-plugins',
    5555            array( $this, 'about_plugin' )
  • http-auth/trunk/admin/class-http-auth-settings.php

    r2944651 r3212193  
    4646                        $http_rule .= PHP_EOL;
    4747
    48                         // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents
     48                        // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents
    4949                        file_put_contents( $filename, $http_rule, FILE_APPEND | LOCK_EX );
    5050                    }
     
    6767        <table class="http-auth-table">
    6868            <caption>
    69             <?php
    70                 esc_html_e( 'Credentials', 'http-auth' );
    71             ?>
     69                <?php esc_html_e( 'Credentials', 'http-auth' ); ?>
    7270            </caption>
    7371            <tbody>
    7472            <tr>
    7573                <th>
    76                 <?php
    77                 esc_html_e( 'Username :', 'http-auth' );
    78                 ?>
     74                    <?php esc_html_e( 'Username :', 'http-auth' ); ?>
    7975                </th>
    8076                <td>
    81                 <input type="text" name="http_auth_username" value="<?php echo esc_attr( $username ); ?>" class="regular-text" required />
     77                    <input type="text" name="http_auth_username" value="<?php echo esc_attr( $username ); ?>" class="regular-text" required />
    8278                </td>
    8379            </tr>
    8480            <tr>
    8581                <th>
    86                 <?php
    87                 esc_html_e( 'Password :', 'http-auth' );
    88                 ?>
     82                    <?php esc_html_e( 'Password :', 'http-auth' ); ?>
    8983                </th>
    9084                <td>
    91                 <input type="password" name="http_auth_password" value="<?php echo esc_attr( $password ); ?>" class="regular-text" required />
     85                    <input type="password" name="http_auth_password" value="<?php echo esc_attr( $password ); ?>" class="regular-text" required />
    9286                </td>
    9387            </tr>
     
    109103        <table class="http-auth-table">
    110104            <caption>
    111             <?php
    112                 esc_html_e( 'Message (Optional)', 'http-auth' );
    113             ?>
     105                <?php esc_html_e( 'Message (Optional)', 'http-auth' ); ?>
    114106            </caption>
    115107            <tbody>
    116108                <tr>
    117109                    <th>
    118                     <?php
    119                         esc_html_e( 'Cancel Message :', 'http-auth' );
    120                     ?>
     110                        <?php esc_html_e( 'Cancel Message :', 'http-auth' ); ?>
    121111                    </th>
    122112                    <td>
  • http-auth/trunk/http-auth.php

    r2944651 r3212193  
    44 * Plugin URI: https://www.yasglobal.com/web-design-development/wordpress/http-auth/
    55 * Description: Secure your website from the Brute-force attack.
    6  * Version: 1.0.0
     6 * Version: 1.0.1
     7 * Requires at least: 3.5
     8 * Requires PHP: 5.6
    79 * Author: Sami Ahmed Siddiqui
    810 * Author URI: https://www.linkedin.com/in/sami-ahmed-siddiqui/
    911 * License: GPLv3
     12 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1013 *
    1114 * Text Domain: http-auth
     
    1720/**
    1821 *  HTTP Auth - Secure your website from the Brute-force attack
    19  *  Copyright 2016-2023 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>
     22 *  Copyright 2016-2024 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>
    2023 *
    2124 *  This program is free software: you can redistribute it and/or modify
  • http-auth/trunk/includes/class-http-auth.php

    r2944651 r3212193  
    1919     * @var string
    2020     */
    21     public $version = '1.0.0';
     21    public $version = '1.0.1';
    2222
    2323    /**
  • http-auth/trunk/readme.txt

    r3109224 r3212193  
    11=== HTTP Auth ===
    2 Contributors: aliya-yasir, sasiddiqui
    3 Tags: http-auth, brute attack, brute-force, restrict site, restrict pages, authentication, http authentication, login, admin, crawler, crawl, locked
     2Contributors: sasiddiqui
     3Tags: http-auth, brute attack, brute-force, restrict site, prevent-crawl
    44Requires at least: 3.5
    5 Tested up to: 6.5
    6 Stable tag: 1.0.0
     5Tested up to: 6.7
     6Stable tag: 1.0.1
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
    99
    10 Keeps you to secure your whole site on the development time and admin pages from the Brute attack.
     10Provides comprehensive security during development by protecting your entire site and your admin pages from brute-force attacks.
    1111
    1212== Description ==
    1313
    14 Enabling this plugin allows you to set up HTTP Authentication on your site. You can easily set username and password for HTTP Authentication.
     14This plugin empowers you to set up HTTP Authentication for your website. This adds an extra layer of security by requiring a username and password to access specific areas.
    1515
    16 This plugin helps:
     16Here's how it benefits you:
    1717
    18 * Secure your admin pages from the Brute attack.
    19 * Restricting crawler to crawl on your site while development.
    20 * Restrict admin pages after being your site Live.
    21 * Easy to activate or deactivate HTTP Auth without deactivating plugin.
     18* **Enhanced Admin Security:** Shield your admin pages from brute-force attacks by adding a login barrier.
     19* **Controlled Crawling:** Restrict crawlers from accessing your site during development, preventing unnecessary indexing.
     20* **Post-Launch Access Control:** Maintain control over admin page access even after your website goes live.
     21* **Easy Activation/Deactivation:** Conveniently enable or disable HTTP Auth without deactivating the plugin entirely.
    2222
    23 === Bug reports ===
     23=== Help Us Improve! ===
    2424
    25 Bug reports for HTTP Auth are [welcomed on GitHub](https://github.com/yasglobal/http-auth). Please note GitHub is not a support forum, and issues that aren't properly qualified as bugs will be closed.
     25I am constantly working to enhance this plugin and your feedback is valuable. If you are happy with the plugin, consider leaving a review on WordPress.org. Your positive feedback motivates us to keep improving!
     26
     27Link to Reviews: [https://wordpress.org/support/plugin/http-auth/reviews/?rate=5#new-post]()
     28
     29=== Bug Reports ===
     30
     31We welcome bug reports for HTTP Auth on GitHub: [https://github.com/samiahmedsiddiqui/http-auth](). Please remember that GitHub is primarily for bug reporting, and issues not classified as genuine bugs may be closed.
    2632
    2733== Installation ==
     
    2935This process defines you the steps to follow either you are installing through WordPress or Manually from FTP.
    3036
    31 **From within WordPress**
     37=== From within WordPress ===
    3238
    33391. Visit 'Plugins > Add New'
     
    36424. Go to "after activation" below.
    3743
    38 **Manually**
     44=== Manually ===
    3945
    40461. Upload the `http-auth` folder to the `/wp-content/plugins/` directory
     
    42483. Go to "after activation" below.
    4349
    44 **After activation**
     50=== After activation ===
    4551
    46521. Go to the plugin settings page and set up the plugin for your site.
     
    4854
    4955== Changelog ==
     56
     57= 1.0.1 - Dec 23, 24 =
     58
     59Fix minor WPCS issues and change text for better understanding.
    5060
    5161= 1.0.0 - July 28, 2023 =
Note: See TracChangeset for help on using the changeset viewer.