Problem When working on making a small application with a ZenityGUI,I ask the user for input. I need to somehow sanitize this input, or Iwill leave the gates wide open for two problems: SQL injection. Command injection. In this blog post, I’m going to look at a solution for the firstproblem. Disclaimer Of course, you shouldn’t write SQL queries in a programming languagethat doesn’t provide a way to supply parameterized queries. Also, when auser is executing a shell script themselves on ...