2022-02-18 15:46:04 +03:00
|
|
|
== Command Injection
|
|
|
|
|
|
|
|
Some Ruby core methods accept string data
|
|
|
|
that includes text to be executed as a system command.
|
|
|
|
|
|
|
|
They should not be called with unknown or unsanitized commands.
|
|
|
|
|
|
|
|
These methods include:
|
|
|
|
|
|
|
|
- Kernel.system
|
2023-06-07 17:05:04 +03:00
|
|
|
- Kernel.open
|
2022-09-03 17:47:46 +03:00
|
|
|
- {\`command` (backtick method)}[rdoc-ref:Kernel#`]
|
2022-02-18 15:46:04 +03:00
|
|
|
(also called by the expression <tt>%x[command]</tt>).
|
|
|
|
- IO.popen(command).
|
|
|
|
- IO.read(command).
|
|
|
|
- IO.write(command).
|
|
|
|
- IO.binread(command).
|
|
|
|
- IO.binwrite(command).
|
|
|
|
- IO.readlines(command).
|
|
|
|
- IO.foreach(command).
|
2023-06-07 17:05:04 +03:00
|
|
|
- URI.open(command).
|
2022-02-18 15:46:04 +03:00
|
|
|
|
|
|
|
Note that some of these methods do not execute commands when called
|
|
|
|
from subclass \File:
|
|
|
|
|
|
|
|
- File.read(path).
|
|
|
|
- File.write(path).
|
|
|
|
- File.binread(path).
|
|
|
|
- File.binwrite(path).
|
|
|
|
- File.readlines(path).
|
|
|
|
- File.foreach(path).
|