Changeset 3324593
- Timestamp:
- 07/08/2025 08:45:40 PM (8 months ago)
- Location:
- rainbow-secure/trunk
- Files:
-
- 3 edited
-
inc/functions.php (modified) (3 diffs)
-
rainbow-secure.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rainbow-secure/trunk/inc/functions.php
r3321484 r3324593 1135 1135 1136 1136 function rainbow_secure_display_activity_log_table() { 1137 $ response = wp_remote_get('https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?AppToken=5D661544-257C-48B5-8A58-F0EA3B15F04E');1138 1137 $app_token = get_option('rainbow_secure_app_token'); 1138 $response = wp_remote_get("https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?AppToken=$app_token"); 1139 1139 if (is_wp_error($response)) { 1140 1140 echo '<p style="color:red;">Failed to fetch activity logs: ' . $response->get_error_message() . '</p>'; … … 1215 1215 1216 1216 function rainbow_send_activity_email_callback() { 1217 $app_token = get_option('rainbow_secure_app_token'); 1217 1218 $duration = intval($_POST['duration']); 1218 1219 $user = wp_get_current_user(); … … 1220 1221 1221 1222 $url = "https://www.rsecureoffice.com/sso/rs_get_wpusersactivitylog.aspx?" . http_build_query([ 1222 'AppToken' => '5D661544-257C-48B5-8A58-F0EA3B15F04E',1223 'AppToken' => $app_token, 1223 1224 'deliverymode' => 'email', 1224 1225 'durationindays' => $duration, -
rainbow-secure/trunk/rainbow-secure.php
r3321484 r3324593 8 8 Plugin URI: https://rainbowsecure.com 9 9 Description: Rainbow Secure MFA and SSO Plugin, allows you to secure your website with an interactive multi-layer security and get single sign on. 10 Version: 1. 1.010 Version: 1.2.0 11 11 Author: Rainbow Secure 12 12 License: GPLv2 or later -
rainbow-secure/trunk/readme.txt
r3321484 r3324593 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1. 1.06 Stable tag: 1.2.0 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 88 88 == Changelog == 89 89 90 = 1. 1.0 =90 = 1.2.0 = 91 91 * Initial release of Rainbow Secure 92 92 * Multi-Factor Authentication (MFA) options including OTP and Adaptive Authentication … … 99 99 == Upgrade Notice == 100 100 101 = 1. 1.0 =101 = 1.2.0 = 102 102 Initial release with MFA and SSO support. Configure MFA options and security policies for enhanced protection. 103 103
Note: See TracChangeset
for help on using the changeset viewer.