tim2CF
Let’s say we have a module like
defmodule Foo do
@salt Application.get_env(:foo, :salt, [])
def hash(password) do
try do
{:ok, md5(password, @salt)}
rescue
e -> {:error, {e, __STACKTRACE__}}
end
end
defp md5(password, salt = [_ | _]) do
Enum.reduce(salt, password, &:erlang.md5(&2<>&1))
end
end
And when we call &hash/1 function it returns error
iex(19)> Foo.hash "123"
{:error,
{%FunctionClauseError{
args: nil,
arity: 2,
clauses: nil,
function: :md5,
kind: nil,
module: Foo
},
[
{Foo, :md5, ["123", []], [file: 'iex', line: 27]},
{Foo, :hash, 1, [file: 'iex', line: 22]},
{:erl_eval, :do_apply, 6, [file: 'erl_eval.erl', line: 677]},
{:elixir, :eval_forms, 4, [file: 'src/elixir.erl', line: 265]},
{IEx.Evaluator, :handle_eval, 5, [file: 'lib/iex/evaluator.ex', line: 249]},
{IEx.Evaluator, :do_eval, 3, [file: 'lib/iex/evaluator.ex', line: 229]},
{IEx.Evaluator, :eval, 3, [file: 'lib/iex/evaluator.ex', line: 207]},
{IEx.Evaluator, :loop, 1, [file: 'lib/iex/evaluator.ex', line: 94]}
]}}
And we want to put this stacktrace to Logger (let’s say for easier debugging)
But we see, what stacktrace can contain sensitive data (in example is password = “123”)
Of course we can remove all arguments from stacktrace manually, but in most cases arguments are useful
Maybe there is already implemented solution to remove some arguments of some functions from stacktrace by marking them in module definition somehow?
It would be nice to say somehow that n-th argument of foo function in module Bar is sensitive and should be excluded from stacktrace
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #ai
- #graphql
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sfusato
There is ‘Custom struct inspections’ that was just released with Elixir 1.8:
https://github.com/elixir-lang/elixir/blob/v1.8/CHANGELOG.md
Maybe return just the tail of the stack trace and at an upper-level inspect your struct with the returned stack trace. This would obfuscate the password field or whatever you set to hide from your struct.
josevalim
Here is what Plug.Crypto does regarding the stacktrace: plug_crypto/lib/plug/crypto/key_generator.ex at 76a595f26529cd550f32166c3288358e1785fb1f · elixir-plug/plug_crypto · GitHub
zazaian
@sfusato’s response is very good, though it seems that in some instances you’d want to expressly name the excluded struct parameters, rather than list all of the unexcluded ones.
The Inspect protocol actually allows you to name the struct attributes that are excluded from inspection, which is cleaner for circumstances in which most of a struct’s attributes are not private or secret. Here’s an example:
If you had a myriad of secret attributes within a single struct though, using
onlyis probably cleaner and safer, as adding additional secret attributes would not require you to also add them for exclusion:Please note that the
@derivecall does have to be declared above thedefstructkeyword as indicated in theInspectdocs, as shown above.chocolatedonut
Despite all the helpful tips, I still am not able to hide password of the following
:gen_statem-based RabbitMQ consumer:I’d like that the
:configfield (above), which includes the password, be hidden in all these cases::sys.get_state Rabbit.ConsumerRabbit.Consumeroutright crashes and produces such stacktrace (observepasswordin plain sight)What I tried already
format_statusI added
:gen_statemc:format_status/2and also OTP 25 c:format_status/1:This did help as
:sys.get_statusdidn’t print the sensitive:configanymore. But, it didn’t help with neither of the cases 1. or 2. above.Prune args from stacktrace
I wrapped
Rabbit.Consumer’s call to a different process with arescueand pruned args fromSystem.stacktrace()(using the suggestedPlug.Crypto.prune_args_from_stacktrace/1). But, this doesn’t help when:gen_statem/Rabbit.Consumeritself crashes. How can oneprune_args_from_stacktraceof the process itself (be it GenServer, :gen_statem, etc.)?Process.flag(:sensitive, true)Neither of the cases 1. or 2. above were solved.
Docs for the
:sensitiveflag sayThe following bolded part from above
made me hopeful that state will also be included (among disabled features).
So, I saw the following on erlef.github.io:
Alas, this doesn’t seem to be true -
:sys.get_state Rabbit.Consumerstill shows the password.Here’s this section verbatim: