-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Description:
Command injection happens when a program constructs a system command string from untrusted input without properly cleaning or checking it. An attacker may add more commands or arguments that the system runs with the same permissions as the application that is susceptible.
Proposal:
I propose a case study on Command Injection via Unsanitized User Input. This case study describe the process that leads to this problem when user input is incorrectly concatenated into shell or system instructions, demonstrate with few examples of working with Python, and discuss the impact of file manipulation, privilege escalation.
References:
1. https://owasp.org/www-community/attacks/Command_Injection
2. https://portswigger.net/web-security/os-command-injection
3.https://cwe.mitre.org/data/definitions/78.html
4. https://dl.acm.org/doi/10.1145/1111037.1111070#:~:text=References43-,Abstract,forms%20of%20command%20injection%20attacks.