You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
7
+
## [0.4.6] - 2026-03-15
8
+
9
+
### Added
10
+
-**ServiceWhitelist implementation** -- `ServiceWhitelist` config field is now applied in Check-Processes.ps1 service analysis, skipping whitelisted services from unquoted-path, user-directory, and SYSTEM-outside-standard-dirs checks
-**Error handling** -- replaced empty `catch {}` blocks with `Write-Verbose`/`Write-Status`/`Write-Warning` in Check-Network.ps1 (DNS reverse-lookup, AbuseIPDB), lib/Helpers.ps1 (Run key enumeration), and AmIHacked.ps1 (config parse fallback)
15
+
-**`New-DefaultConfig``$PSScriptRoot` fix** -- default path now resolves via `Split-Path $PSScriptRoot -Parent` at call-time instead of during `param()` evaluation (which pointed to `lib/` instead of project root)
- All `.ps1` files **must** be saved with UTF-8 BOM (`EF BB BF`). PowerShell 5.1 defaults to Windows-1252, which misinterprets multi-byte UTF-8 sequences (e.g. `✓`, `╔`) as string delimiters, causing parse errors. **Some edit tools strip BOM on save** -- run `.\fix-bom.ps1`(gitignored dev utility) to re-apply after editing.
141
+
- All `.ps1` files **must** be saved with UTF-8 BOM (`EF BB BF`). PowerShell 5.1 defaults to Windows-1252, which misinterprets multi-byte UTF-8 sequences (e.g. `✓`, `╔`) as string delimiters, causing parse errors. **Some edit tools strip BOM on save** -- run `.\fix-bom.ps1` to re-apply after editing.
142
142
- See `CONTRIBUTING.md` for the full module authoring guide and test harness documentation.
0 commit comments