You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which brakeman is marking as a file access using a parameter:
File Access Parameter value used in file name near line 13: YAML.load(params[:doc])
but YAML::load seems to only load from a string, not a path like YAML::load_file. Thus, this is a false positive warning. Am I wrong or missing something?
The text was updated successfully, but these errors were encountered:
Hello,
I have the following line in a controller:
which brakeman is marking as a file access using a parameter:
but YAML::load seems to only load from a string, not a path like YAML::load_file. Thus, this is a false positive warning. Am I wrong or missing something?
The text was updated successfully, but these errors were encountered: