I have a Java program and it uses user.home system property to get user home directory.
This program should not allow user.home property on command line. If user pass wrong directory from command line for user.home (java -Duser.home) then my program will have security hole.
So how can I restrict user.home from command line and it should uses only through program?
user.hometo be correct for security, your program will be unsafe regardless of whether the user can specify it as a property on the command line. – Charles Duffy Jan 9 at 14:58user.homeis security-sensitive in your use case, in detail. – Charles Duffy Jan 9 at 15:01