Symmetric Keys. with GPG for Windows.
Password encrypt a file with the command:
gpg -vc [FILENAME]
And decrypt it with the command:
gpg -vd [FILENAME]
Tagged: security Toggle Comment Threads | Keyboard Shortcuts
-
harlekwinblog
-
harlekwinblog
giving permission to read a specific file using sudo:
visudo
#Support Staff
Cmnd_Alias = LOGS = /bin/cat /var/log/squid/access.log, /bin/zcat /var/log/squid/access.log.[0-9].gz
%logaccess ALL (all) NOPASSWD: LOGS
This gives access to the Squid Logs to anyone in thelogaccess
group.
(sudo zcat /var/log/squid/access.log.1.gz) | grep "microsoft.com"
Reply