From 60f0456d44043de43e2364c4ef740b99422c2de2 Mon Sep 17 00:00:00 2001 From: Rohan Barar Date: Sun, 3 Aug 2025 15:37:23 +1000 Subject: [PATCH] add note in README to secure 'winapps.conf' with best practice file permissions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2db5aa5..eaab3cb 100644 --- a/README.md +++ b/README.md @@ -473,9 +473,15 @@ APP_SCAN_TIMEOUT="60" # - The maximum time (in seconds) to wait for the Windows VM to boot if it is not running, before attempting to launch an application. # DEFAULT VALUE: '120' BOOT_TIMEOUT="120" - ``` +> [!IMPORTANT] +> To safeguard your Windows password, ensure `~/.config/winapps/winapps.conf` is accessible only by your user account. +> ```bash +> chown $(whoami):$(whoami) ~/.config/winapps/winapps.conf +> chmod 600 ~/.config/winapps/winapps.conf +> ``` + > [!IMPORTANT] > `RDP_USER` and `RDP_PASS` must correspond to a complete Windows user account and password, such as those created during Windows setup or for a domain user. User/PIN combinations are not valid for RDP access.