Changeset 3212193
- Timestamp:
- 12/23/2024 01:06:02 PM (16 months ago)
- Location:
- http-auth
- Files:
-
- 4 added
- 10 deleted
- 6 edited
- 10 copied
-
tags/1.0.1 (copied) (copied from http-auth/trunk)
-
tags/1.0.1/admin/class-http-auth-about.php (copied) (copied from http-auth/trunk/admin/class-http-auth-about.php)
-
tags/1.0.1/admin/class-http-auth-admin.php (copied) (copied from http-auth/trunk/admin/class-http-auth-admin.php) (3 diffs)
-
tags/1.0.1/admin/class-http-auth-settings.php (copied) (copied from http-auth/trunk/admin/class-http-auth-settings.php) (3 diffs)
-
tags/1.0.1/admin/class-http-auth-update-options.php (deleted)
-
tags/1.0.1/admin/css (deleted)
-
tags/1.0.1/admin/images (deleted)
-
tags/1.0.1/assets (copied) (copied from http-auth/trunk/assets)
-
tags/1.0.1/assets/css/about-plugins-1.0.0.min.css (deleted)
-
tags/1.0.1/assets/css/about-plugins-1.0.1.min.css (added)
-
tags/1.0.1/assets/css/admin-style-1.0.0.min.css (deleted)
-
tags/1.0.1/assets/css/admin-style-1.0.1.min.css (added)
-
tags/1.0.1/changelog.txt (copied) (copied from http-auth/trunk/changelog.txt)
-
tags/1.0.1/frontend (deleted)
-
tags/1.0.1/http-auth-main.php (deleted)
-
tags/1.0.1/http-auth.php (copied) (copied from http-auth/trunk/http-auth.php) (2 diffs)
-
tags/1.0.1/includes (copied) (copied from http-auth/trunk/includes)
-
tags/1.0.1/includes/class-http-auth.php (modified) (1 diff)
-
tags/1.0.1/languages (deleted)
-
tags/1.0.1/readme.txt (copied) (copied from http-auth/trunk/readme.txt) (5 diffs)
-
tags/1.0.1/uninstall.php (copied) (copied from http-auth/trunk/uninstall.php)
-
trunk/admin/class-http-auth-admin.php (modified) (3 diffs)
-
trunk/admin/class-http-auth-settings.php (modified) (3 diffs)
-
trunk/assets/css/about-plugins-1.0.0.min.css (deleted)
-
trunk/assets/css/about-plugins-1.0.1.min.css (added)
-
trunk/assets/css/admin-style-1.0.0.min.css (deleted)
-
trunk/assets/css/admin-style-1.0.1.min.css (added)
-
trunk/http-auth.php (modified) (2 diffs)
-
trunk/includes/class-http-auth.php (modified) (1 diff)
-
trunk/readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
http-auth/tags/1.0.1/admin/class-http-auth-admin.php
r2944651 r3212193 35 35 'HTTP Auth', 36 36 'HTTP Auth', 37 'a dministrator',37 'activate_plugins', 38 38 'http-auth-settings', 39 39 array( $this, 'admin_settings_page' ) … … 43 43 'HTTP Auth Settings', 44 44 'Settings', 45 'a dministrator',45 'activate_plugins', 46 46 'http-auth-settings', 47 47 array( $this, 'admin_settings_page' ) … … 51 51 'About HTTP Auth', 52 52 'About', 53 'a dministrator',53 'activate_plugins', 54 54 'http-auth-about-plugins', 55 55 array( $this, 'about_plugin' ) -
http-auth/tags/1.0.1/admin/class-http-auth-settings.php
r2944651 r3212193 46 46 $http_rule .= PHP_EOL; 47 47 48 // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_ read_file_put_contents48 // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents 49 49 file_put_contents( $filename, $http_rule, FILE_APPEND | LOCK_EX ); 50 50 } … … 67 67 <table class="http-auth-table"> 68 68 <caption> 69 <?php 70 esc_html_e( 'Credentials', 'http-auth' ); 71 ?> 69 <?php esc_html_e( 'Credentials', 'http-auth' ); ?> 72 70 </caption> 73 71 <tbody> 74 72 <tr> 75 73 <th> 76 <?php 77 esc_html_e( 'Username :', 'http-auth' ); 78 ?> 74 <?php esc_html_e( 'Username :', 'http-auth' ); ?> 79 75 </th> 80 76 <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 /> 82 78 </td> 83 79 </tr> 84 80 <tr> 85 81 <th> 86 <?php 87 esc_html_e( 'Password :', 'http-auth' ); 88 ?> 82 <?php esc_html_e( 'Password :', 'http-auth' ); ?> 89 83 </th> 90 84 <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 /> 92 86 </td> 93 87 </tr> … … 109 103 <table class="http-auth-table"> 110 104 <caption> 111 <?php 112 esc_html_e( 'Message (Optional)', 'http-auth' ); 113 ?> 105 <?php esc_html_e( 'Message (Optional)', 'http-auth' ); ?> 114 106 </caption> 115 107 <tbody> 116 108 <tr> 117 109 <th> 118 <?php 119 esc_html_e( 'Cancel Message :', 'http-auth' ); 120 ?> 110 <?php esc_html_e( 'Cancel Message :', 'http-auth' ); ?> 121 111 </th> 122 112 <td> -
http-auth/tags/1.0.1/http-auth.php
r2944651 r3212193 4 4 * Plugin URI: https://www.yasglobal.com/web-design-development/wordpress/http-auth/ 5 5 * 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 7 9 * Author: Sami Ahmed Siddiqui 8 10 * Author URI: https://www.linkedin.com/in/sami-ahmed-siddiqui/ 9 11 * License: GPLv3 12 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 13 * 11 14 * Text Domain: http-auth … … 17 20 /** 18 21 * HTTP Auth - Secure your website from the Brute-force attack 19 * Copyright 2016-202 3Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>22 * Copyright 2016-2024 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com> 20 23 * 21 24 * 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 19 19 * @var string 20 20 */ 21 public $version = '1.0. 0';21 public $version = '1.0.1'; 22 22 23 23 /** -
http-auth/tags/1.0.1/readme.txt
r3109224 r3212193 1 1 === HTTP Auth === 2 Contributors: aliya-yasir,sasiddiqui3 Tags: http-auth, brute attack, brute-force, restrict site, restrict pages, authentication, http authentication, login, admin, crawler, crawl, locked2 Contributors: sasiddiqui 3 Tags: http-auth, brute attack, brute-force, restrict site, prevent-crawl 4 4 Requires at least: 3.5 5 Tested up to: 6. 56 Stable tag: 1.0. 05 Tested up to: 6.7 6 Stable tag: 1.0.1 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html 9 9 10 Keeps you to secure your whole site on the development time and admin pages from the Brute attack.10 Provides comprehensive security during development by protecting your entire site and your admin pages from brute-force attacks. 11 11 12 12 == Description == 13 13 14 Enabling this plugin allows you to set up HTTP Authentication on your site. You can easily set username and password for HTTP Authentication.14 This 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. 15 15 16 This plugin helps:16 Here's how it benefits you: 17 17 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. 22 22 23 === Bug reports===23 === Help Us Improve! === 24 24 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. 25 I 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 27 Link to Reviews: [https://wordpress.org/support/plugin/http-auth/reviews/?rate=5#new-post]() 28 29 === Bug Reports === 30 31 We 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. 26 32 27 33 == Installation == … … 29 35 This process defines you the steps to follow either you are installing through WordPress or Manually from FTP. 30 36 31 **From within WordPress** 37 === From within WordPress === 32 38 33 39 1. Visit 'Plugins > Add New' … … 36 42 4. Go to "after activation" below. 37 43 38 **Manually** 44 === Manually === 39 45 40 46 1. Upload the `http-auth` folder to the `/wp-content/plugins/` directory … … 42 48 3. Go to "after activation" below. 43 49 44 **After activation** 50 === After activation === 45 51 46 52 1. Go to the plugin settings page and set up the plugin for your site. … … 48 54 49 55 == Changelog == 56 57 = 1.0.1 - Dec 23, 24 = 58 59 Fix minor WPCS issues and change text for better understanding. 50 60 51 61 = 1.0.0 - July 28, 2023 = -
http-auth/trunk/admin/class-http-auth-admin.php
r2944651 r3212193 35 35 'HTTP Auth', 36 36 'HTTP Auth', 37 'a dministrator',37 'activate_plugins', 38 38 'http-auth-settings', 39 39 array( $this, 'admin_settings_page' ) … … 43 43 'HTTP Auth Settings', 44 44 'Settings', 45 'a dministrator',45 'activate_plugins', 46 46 'http-auth-settings', 47 47 array( $this, 'admin_settings_page' ) … … 51 51 'About HTTP Auth', 52 52 'About', 53 'a dministrator',53 'activate_plugins', 54 54 'http-auth-about-plugins', 55 55 array( $this, 'about_plugin' ) -
http-auth/trunk/admin/class-http-auth-settings.php
r2944651 r3212193 46 46 $http_rule .= PHP_EOL; 47 47 48 // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_ read_file_put_contents48 // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents 49 49 file_put_contents( $filename, $http_rule, FILE_APPEND | LOCK_EX ); 50 50 } … … 67 67 <table class="http-auth-table"> 68 68 <caption> 69 <?php 70 esc_html_e( 'Credentials', 'http-auth' ); 71 ?> 69 <?php esc_html_e( 'Credentials', 'http-auth' ); ?> 72 70 </caption> 73 71 <tbody> 74 72 <tr> 75 73 <th> 76 <?php 77 esc_html_e( 'Username :', 'http-auth' ); 78 ?> 74 <?php esc_html_e( 'Username :', 'http-auth' ); ?> 79 75 </th> 80 76 <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 /> 82 78 </td> 83 79 </tr> 84 80 <tr> 85 81 <th> 86 <?php 87 esc_html_e( 'Password :', 'http-auth' ); 88 ?> 82 <?php esc_html_e( 'Password :', 'http-auth' ); ?> 89 83 </th> 90 84 <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 /> 92 86 </td> 93 87 </tr> … … 109 103 <table class="http-auth-table"> 110 104 <caption> 111 <?php 112 esc_html_e( 'Message (Optional)', 'http-auth' ); 113 ?> 105 <?php esc_html_e( 'Message (Optional)', 'http-auth' ); ?> 114 106 </caption> 115 107 <tbody> 116 108 <tr> 117 109 <th> 118 <?php 119 esc_html_e( 'Cancel Message :', 'http-auth' ); 120 ?> 110 <?php esc_html_e( 'Cancel Message :', 'http-auth' ); ?> 121 111 </th> 122 112 <td> -
http-auth/trunk/http-auth.php
r2944651 r3212193 4 4 * Plugin URI: https://www.yasglobal.com/web-design-development/wordpress/http-auth/ 5 5 * 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 7 9 * Author: Sami Ahmed Siddiqui 8 10 * Author URI: https://www.linkedin.com/in/sami-ahmed-siddiqui/ 9 11 * License: GPLv3 12 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 13 * 11 14 * Text Domain: http-auth … … 17 20 /** 18 21 * HTTP Auth - Secure your website from the Brute-force attack 19 * Copyright 2016-202 3Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com>22 * Copyright 2016-2024 Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com> 20 23 * 21 24 * This program is free software: you can redistribute it and/or modify -
http-auth/trunk/includes/class-http-auth.php
r2944651 r3212193 19 19 * @var string 20 20 */ 21 public $version = '1.0. 0';21 public $version = '1.0.1'; 22 22 23 23 /** -
http-auth/trunk/readme.txt
r3109224 r3212193 1 1 === HTTP Auth === 2 Contributors: aliya-yasir,sasiddiqui3 Tags: http-auth, brute attack, brute-force, restrict site, restrict pages, authentication, http authentication, login, admin, crawler, crawl, locked2 Contributors: sasiddiqui 3 Tags: http-auth, brute attack, brute-force, restrict site, prevent-crawl 4 4 Requires at least: 3.5 5 Tested up to: 6. 56 Stable tag: 1.0. 05 Tested up to: 6.7 6 Stable tag: 1.0.1 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html 9 9 10 Keeps you to secure your whole site on the development time and admin pages from the Brute attack.10 Provides comprehensive security during development by protecting your entire site and your admin pages from brute-force attacks. 11 11 12 12 == Description == 13 13 14 Enabling this plugin allows you to set up HTTP Authentication on your site. You can easily set username and password for HTTP Authentication.14 This 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. 15 15 16 This plugin helps:16 Here's how it benefits you: 17 17 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. 22 22 23 === Bug reports===23 === Help Us Improve! === 24 24 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. 25 I 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 27 Link to Reviews: [https://wordpress.org/support/plugin/http-auth/reviews/?rate=5#new-post]() 28 29 === Bug Reports === 30 31 We 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. 26 32 27 33 == Installation == … … 29 35 This process defines you the steps to follow either you are installing through WordPress or Manually from FTP. 30 36 31 **From within WordPress** 37 === From within WordPress === 32 38 33 39 1. Visit 'Plugins > Add New' … … 36 42 4. Go to "after activation" below. 37 43 38 **Manually** 44 === Manually === 39 45 40 46 1. Upload the `http-auth` folder to the `/wp-content/plugins/` directory … … 42 48 3. Go to "after activation" below. 43 49 44 **After activation** 50 === After activation === 45 51 46 52 1. Go to the plugin settings page and set up the plugin for your site. … … 48 54 49 55 == Changelog == 56 57 = 1.0.1 - Dec 23, 24 = 58 59 Fix minor WPCS issues and change text for better understanding. 50 60 51 61 = 1.0.0 - July 28, 2023 =
Note: See TracChangeset
for help on using the changeset viewer.