Skip to content
Snippets Groups Projects
Verified Commit e2d4abbd authored by Petr Špaček's avatar Petr Špaček Committed by Tomas Krizek
Browse files

doh debug: create OPENSSLKEYLOGFILE accessible only by process owner

parent 1803e1bd
No related branches found
No related tags found
1 merge request!886DoH debugging: auxiliary library for OpenSSL key logging
......@@ -110,7 +110,7 @@ static void init_keylog_file(void)
const char *filename = getenv("OPENSSLKEYLOGFILE");
if (filename) {
/* ctime output is max 26 bytes, POSIX 1003.1-2017 */
keylog_file_fd = open(filename, O_WRONLY | O_APPEND | O_CREAT, 0644);
keylog_file_fd = open(filename, O_WRONLY | O_APPEND | O_CREAT, 0600);
if (keylog_file_fd >= 0 && lseek(keylog_file_fd, 0, SEEK_END) == 0) {
time_t timenow = time(NULL);
char txtnow[30] = { '#', ' ', 0 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment