Michael Lubas

Results 4 comments of Michael Lubas

Thanks @krispetek for filing this, I'm seeing the same type of error.

I'm seeing this same issue too in Github actions.

![image](https://github.com/nccgroup/sobelow/assets/98478153/33384a5e-a4fc-4624-a806-22ee66cacc95) I ran a custom fork of Sobelow in Github actions that printed out the md5 hashes of the skips, so Sobelow can read the file. Something about the environment...

The reason this is happening: `lib/sobelow/finding.ex` ``` def fingerprint(%Sobelow.Finding{} = finding) do ... [finding.type, finding.vuln_source, filename, finding.vuln_line_no] |> :erlang.term_to_binary() |> :erlang.md5() |> Base.encode16() end ``` `:erlang.term_to_binary()` gives a different output...