Changeset 3443838
- Timestamp:
- 01/21/2026 08:28:12 AM (2 months ago)
- Location:
- watchful
- Files:
-
- 12 edited
- 1 copied
-
tags/v2.0.9 (copied) (copied from watchful/trunk)
-
tags/v2.0.9/changelog.txt (modified) (1 diff)
-
tags/v2.0.9/lib/Audit/AbstractAudit.php (modified) (1 diff)
-
tags/v2.0.9/lib/Audit/Files/FilesPermissions.php (modified) (2 diffs)
-
tags/v2.0.9/lib/Audit/Files/FoldersPermissions.php (modified) (1 diff)
-
tags/v2.0.9/readme.txt (modified) (1 diff)
-
tags/v2.0.9/watchful.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/lib/Audit/AbstractAudit.php (modified) (1 diff)
-
trunk/lib/Audit/Files/FilesPermissions.php (modified) (2 diffs)
-
trunk/lib/Audit/Files/FoldersPermissions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/watchful.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
watchful/tags/v2.0.9/changelog.txt
r3439239 r3443838 1 = v2.0.9 = 2 * Fix a bug that returned wrong file and folder permissions on Windows servers 3 1 4 = v2.0.8 = 2 5 * Fix timeout issues while performing a vulnerability scan -
watchful/tags/v2.0.9/lib/Audit/AbstractAudit.php
r3439239 r3443838 155 155 return microtime(true) - $this->start_time; 156 156 } 157 158 protected function is_windows(): bool 159 { 160 return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'; 161 } 157 162 } -
watchful/tags/v2.0.9/lib/Audit/Files/FilesPermissions.php
r3439239 r3443838 11 11 { 12 12 const MINIMUMFILESPERMISSION = 644; 13 13 14 14 /** 15 15 * Audit the file system permissions. … … 26 26 $result->size = count($files); 27 27 $result->start = $start; 28 29 if ($this->is_windows()) { 30 $result->end = $result->size; 31 32 return $result; 33 } 28 34 29 35 $current = $start; -
watchful/tags/v2.0.9/lib/Audit/Files/FoldersPermissions.php
r3439239 r3443838 28 28 $result->start = $start; 29 29 30 if ($this->is_windows()) { 31 $result->end = $result->size; 32 33 return $result; 34 } 35 30 36 $current = $start; 31 37 $folders_count = count($folders); -
watchful/tags/v2.0.9/readme.txt
r3439239 r3443838 83 83 84 84 == Changelog == 85 = v2.0.9 = 86 * Fix a bug that returned wrong file and folder permissions on Windows servers 87 85 88 = v2.0.8 = 86 89 * Fix timeout issues while performing a vulnerability scan -
watchful/tags/v2.0.9/watchful.php
r3439239 r3443838 4 4 * Plugin URI: https://app.watchful.net 5 5 * Description: Remote Website Management Plugin by Watchful 6 * Version: 2.0. 86 * Version: 2.0.9 7 7 * Author: watchful 8 8 * Author URI: https://watchful.net -
watchful/trunk/changelog.txt
r3439239 r3443838 1 = v2.0.9 = 2 * Fix a bug that returned wrong file and folder permissions on Windows servers 3 1 4 = v2.0.8 = 2 5 * Fix timeout issues while performing a vulnerability scan -
watchful/trunk/lib/Audit/AbstractAudit.php
r3439239 r3443838 155 155 return microtime(true) - $this->start_time; 156 156 } 157 158 protected function is_windows(): bool 159 { 160 return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'; 161 } 157 162 } -
watchful/trunk/lib/Audit/Files/FilesPermissions.php
r3439239 r3443838 11 11 { 12 12 const MINIMUMFILESPERMISSION = 644; 13 13 14 14 /** 15 15 * Audit the file system permissions. … … 26 26 $result->size = count($files); 27 27 $result->start = $start; 28 29 if ($this->is_windows()) { 30 $result->end = $result->size; 31 32 return $result; 33 } 28 34 29 35 $current = $start; -
watchful/trunk/lib/Audit/Files/FoldersPermissions.php
r3439239 r3443838 28 28 $result->start = $start; 29 29 30 if ($this->is_windows()) { 31 $result->end = $result->size; 32 33 return $result; 34 } 35 30 36 $current = $start; 31 37 $folders_count = count($folders); -
watchful/trunk/readme.txt
r3439239 r3443838 83 83 84 84 == Changelog == 85 = v2.0.9 = 86 * Fix a bug that returned wrong file and folder permissions on Windows servers 87 85 88 = v2.0.8 = 86 89 * Fix timeout issues while performing a vulnerability scan -
watchful/trunk/watchful.php
r3439239 r3443838 4 4 * Plugin URI: https://app.watchful.net 5 5 * Description: Remote Website Management Plugin by Watchful 6 * Version: 2.0. 86 * Version: 2.0.9 7 7 * Author: watchful 8 8 * Author URI: https://watchful.net
Note: See TracChangeset
for help on using the changeset viewer.