lib/vcap/host_system.rb
Possible command injection Open
Open
output = `ps -o rss= -p #{pid}`
- Read upRead up
- Exclude checks
Injection is #1 on the 2010 OWASP Top Ten web security risks. Command injection occurs when shell commands unsafely include user-manipulatable values.
There are many ways to run commands in Ruby:
`ls #{params[:file]}`
system("ls #{params[:dir]}")
exec("md5sum #{params[:input]}")
Brakeman will warn on any method like these that uses user input or unsafely interpolates variables.
See the Ruby Security Guide for details.
Method num_cores
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def num_cores
if RUBY_PLATFORM.match?(/linux/)
`cat /proc/cpuinfo | grep processor | wc -l`.to_i
elsif RUBY_PLATFORM.match?(/darwin/)
`sysctl -n hw.ncpu`.strip.to_i
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"