sonic-buildimage/platform/broadcom/sonic-platform-modules-cel/belgite
Mai Bui 51a1eb112b
[device/celestica] Mitigation for command injection vulnerability (#11740)
Signed-off-by: maipbui <maibui@microsoft.com>
Dependency: [PR (#12065)](https://github.com/sonic-net/sonic-buildimage/pull/12065) needs to merge first.
#### Why I did it
1. `eval()` - not secure against maliciously constructed input, can be dangerous if used to evaluate dynamic content. This may be a code injection vulnerability.
2. `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection.
3. `os` - not secure against maliciously constructed input and dangerous if used to evaluate dynamic content.
4. `is` operator - string comparison should not be used with reference equality.
5. `globals()` - extremely dangerous because it may allow an attacker to execute arbitrary code on the system
#### How I did it
1. `eval()` - use `literal_eval()`
2. `subprocess()` - use `shell=False` instead. use an array string. Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation)
3. `os` - use with `subprocess`
4. `is` - replace by `==` operator for value equality
5. `globals()` - avoid the use of globals()
2022-12-09 10:30:20 -05:00
..
modules Fix the pddf_custom_wdt driver rarely reports kernel dump issue while reboot in belgite platform (#12322) 2022-11-04 19:26:18 +08:00
pddf [device/celestica] Mitigation for command injection vulnerability (#11740) 2022-12-09 10:30:20 -05:00
scripts Add belgite support (#9511) 2022-05-23 18:45:37 -07:00
service Add belgite support (#9511) 2022-05-23 18:45:37 -07:00
systemd Add belgite support (#9511) 2022-05-23 18:45:37 -07:00
utils [device/celestica] Mitigation for command injection vulnerability (#11740) 2022-12-09 10:30:20 -05:00