We know that using string concatenation to form SQL queries renders a program vulnerable to SQL injection. I usually get around that by using parameter features provided by the API of whatever database software I'm using.
But I haven't heard of this being a problem in regular system programming. Consider the following code as part of a program that allows a user to write to files in his private directory only.
Scanner scanner = new Scanner(System.in);
String directoryName = "Bob";
String filePath = null;
String text = "some text";
System.out.print("Enter a file to write to: ");
filePath = scanner.nextLine();
// Write to the file in Bob's personal directory for this program (i.e. Bob/textfile.txt)
FileOutputStream file = new FileOutputStream(directoryName + "/" + filePath);
file.write(text.getBytes());
Is the second-last line a vulnerability? If so, how can the program be made more secure (particularly in Java, C++ and C#)? One way is to validate input for escape characters. Anything else?
(Apologies if the code contains errors; I am a beginner to Java.)