DevelopingCoder/cs61a_hintr

View on GitHub
app/controllers/upload_question_sets_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage

Parameter value used in file name
Open

        uploaded_file = File.open(params[:path])

Using user input when accessing files (local or remote) will raise a warning in Brakeman.

For example

File.open("/tmp/#{cookie[:file]}")

will raise an error like

Cookie value used in file name near line 4: File.open("/tmp/#{cookie[:file]}")

This type of vulnerability can be used to access arbitrary files on a server (including /etc/passwd.

There are no issues that match your filters.

Category
Status