From ab8057af38e72ab0f881ba35f89af25d7d7d9a1c Mon Sep 17 00:00:00 2001 From: firebadnofire Date: Fri, 16 May 2025 18:32:01 +0000 Subject: [PATCH] commit --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08d30f4..019cabd 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,10 @@ supersecretpassword ## Security -To protect your sensitive word list, `logdebarker` will refuse to run if `$HOME/.blocked_words.txt` is not `chmod 700`. +To protect your sensitive word list, `logdebarker` will refuse to run if `$HOME/.blocked_words.txt` is not `chmod 600`. ```sh -chmod 700 ~/.blocked_words.txt +chmod 600 ~/.blocked_words.txt ``` ## Installation @@ -76,6 +76,19 @@ OR `go install archuser.org/logdebarker` +## Final notes + +`Logdebarker` is not a service, so you may simply wipe out ~/.blocked_words.txt when not in use for added security. This can be done with `truncate -s 0 ~/.blocked_words.txt` + +Usage is as follows: + +``` +Usage: + logdebarker [input_file] [output_file] + logdebarker < input.txt > output.txt + inputstream | logdebarker | outputstream +``` + ## License This project is released under the GPLv3 License.