Is there a secure way to run a bat file from a Java program without command injection vulnerability?
Since using Runtime.exec() and ProcessBuilder trigger command injection vulnerability in static analyzing tools, is there any other recommended secure way to execute a bat file from a Java program?
Java code:
Runtime.getRu… Continue reading Is there a secure way to run a bat file from a Java program without command injection vulnerability?