How to run the Security Analysis Tool Brakeman only for modified files?
I use brakeman version 4.6.1 with Ruby 2.6.3.
How to run the Security Analysis Tool Brakeman only for modified files?
I use brakeman version 4.6.1 with Ruby 2.6.3.
Copyright © 2021 Jogjafile Inc.
Maybe you need to run something that gives you the files modified in the period you want, there are some tricks available to find the last (
Dir.glob("*").max_by {|f| File.mtime(f)}
) modified file, e.g. here: ruby finding the most recently updated file.Playing with it, e.g. with the time and not using max_by should give you more / a list of files.
But, this is from the brakeman documentation:
Maybe you need to tell us why you want to scan only certain files ... the options mentioned seem to be sensible for me in your case.