From f12ca66008eff875e01be6becb2e4efa91557f16 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 12 Apr 2021 16:46:20 +1000 Subject: [PATCH] redact snode IP used in logs on production builds --- js/modules/loki_public_chat_api.js | 10 +++++----- js/modules/privacy.js | 12 +++++++++++- ts/session/onions/index.ts | 2 +- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/js/modules/loki_public_chat_api.js b/js/modules/loki_public_chat_api.js index 1e722b82e..27c61b4f3 100644 --- a/js/modules/loki_public_chat_api.js +++ b/js/modules/loki_public_chat_api.js @@ -154,11 +154,11 @@ class LokiPublicChatFactoryAPI extends EventEmitter { ); return null; } - if (window.isDev) { - log.info( - `loki_public_chat::findOrCreateServer - set token ${thisServer.token} for ${serverUrl}` - ); - } + // if (window.isDev) { + // log.info( + // `loki_public_chat::findOrCreateServer - set token ${thisServer.token} for ${serverUrl}` + // ); + // } this.servers.push(thisServer); } diff --git a/js/modules/privacy.js b/js/modules/privacy.js index 1720b7420..154535a9e 100644 --- a/js/modules/privacy.js +++ b/js/modules/privacy.js @@ -8,6 +8,7 @@ const { escapeRegExp } = require('lodash'); const APP_ROOT_PATH = path.join(__dirname, '..', '..', '..'); const SESSION_ID_PATTERN = /\b(05[0-9a-f]{64})\b/gi; +const SNODE_PATTERN = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/; const GROUP_ID_PATTERN = /(group\()([^)]+)(\))/g; const REDACTION_PLACEHOLDER = '[REDACTED]'; @@ -64,6 +65,14 @@ exports.redactSessionID = text => { return text.replace(SESSION_ID_PATTERN, REDACTION_PLACEHOLDER); }; +exports.redactSnodeIP = text => { + if (!is.string(text)) { + throw new TypeError("'text' must be a string"); + } + + return text.replace(SNODE_PATTERN, REDACTION_PLACEHOLDER); +}; + // redactGroupIds :: String -> String exports.redactGroupIds = text => { if (!is.string(text)) { @@ -84,7 +93,8 @@ exports.redactSensitivePaths = exports._redactPath(APP_ROOT_PATH); exports.redactAll = compose( exports.redactSensitivePaths, exports.redactGroupIds, - exports.redactSessionID + exports.redactSessionID, + exports.redactSnodeIP ); const removeNewlines = text => text.replace(/\r?\n|\r/g, ''); diff --git a/ts/session/onions/index.ts b/ts/session/onions/index.ts index 396c8c4eb..b32aa1612 100644 --- a/ts/session/onions/index.ts +++ b/ts/session/onions/index.ts @@ -312,6 +312,6 @@ export class OnionPaths { this.onionPaths.push({ path, bad: false }); } - log.info(`Built ${this.onionPaths.length} onion paths`, this.onionPaths); + log.info(`Built ${this.onionPaths.length} onion paths`); } }