From 73bd8015c3ba50ceb5168a8b67bb1ac5d3b48dc1 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Sat, 19 Aug 2023 12:28:39 +0100 Subject: Automatically filter out secrets (#1182) I'd like to extend the regex list here very soon, but start off by automatically filtering out secrets. Do not store them in history! I've included regex for: 1. AWS key id 2. Github pat (old and new) 3. Slack oauth tokens (bot, user) 4. Slack webhooks 5. Stripe live/test keys Will need updating after #806 --- atuin-client/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'atuin-client/src/lib.rs') diff --git a/atuin-client/src/lib.rs b/atuin-client/src/lib.rs index 7ecfa894..05b69450 100644 --- a/atuin-client/src/lib.rs +++ b/atuin-client/src/lib.rs @@ -15,4 +15,5 @@ pub mod import; pub mod kv; pub mod ordering; pub mod record; +pub mod secrets; pub mod settings; -- cgit v1.3.1