Hacker News new | ask | show | jobs
by nodesocket 3839 days ago
Not saying I make of habit of this, but sometimes you have to pass sensitive things as arguments (passwords, api tokens, customer data, etc), it happens.

I think client side encryption by Bashhub would alleviate this security concern.

2 comments

That doesn't have to mean typing it at your command line. My approach is typically to set shell variables with read (if I need to type it) or xclip (if I need to paste).

Of course, client side encryption would be great in any case.

One of the AWS config utilities comes to mind - you have to paste in your AWS key if running interactively.
Actually `aws configure` is interactive when it asks for input. Those values won't be stored in `history`.