Start here

Home
About Klocwork
What's new
Fixed issues
Release notes
Installation

Reference

C/C++ checkers
Java checkers
C# checkers
MISRA C 2004 checkers
MISRA C++ 2008 checkers
MISRA C 2012 checkers
MISRA C 2012 checkers with Amendment 1
Commands
Metrics
Troubleshooting
Reference

Product components

C/C++ Integration build analysis
Java Integration build analysis
Desktop analysis
Refactoring
Klocwork Static Code Analysis
Klocwork Code Review
Structure101
Tuning
Custom checkers

Coding environments

Visual Studio
Eclipse for C/C++
Eclipse for Java
IntelliJ IDEA
Other

Administration

Project configuration
Build configuration
Administration
Analysis performance
Server performance
Security/permissions
Licensing
Klocwork Static Code Analysis Web API
Klocwork Code Review Web API

Community

View help online
Visit RogueWave.com
Klocwork Support
Rogue Wave Videos

Legal

Legal information

SV.EXEC.DIR

This error is detected when user input is used, unchecked, for all or part of a working directory used to select a command executed by the application.

Vulnerability and risk

In general, process creation or execution of external commands within an application is a security concern. This particular vulnerability occurs when all or part of the working directory used for the command or process is derived from unvalidated user input. An attacker can manipulate the working directory and cause undesired behavior, possibly running commands planted by the attacker rather than the intended command.

Klocwork security vulnerability (SV) checkers identify calls that create potentially dangerous data; these calls are considered unsafe sources. An unsafe source can be any data provided by the user, since the user could be an attacker or has the potential for introducing human error.

Mitigation and prevention

Prevent process or command injection attacks from user input by validating any and all input from outside the application (user input, file input, system parameters, etc.). Validation should include length and content. Typically only alphanumeric characters are needed (i.e., A-Za-z, 0-9). Any other accepted characters should be escaped. Perform validation at each source of data, such as when each parameter is read from the HTTP request, or user interface such as an application or the console.

Example 1

15     public void dataQuery(ServletRequest req) throws IOException {
16         String var = req.getParameter("username");
17         File userRoot = new File(webRoot, var);
18         Process proc = Runtime.getRuntime().exec("processRequest", null, userRoot);
19         // parse results of command
20         // ...
21     }

SV.EXEC.DIR is reported for line 18: 'var' contains data coming from an HTTP request parameter and might be tainted (line 13). This value is used to create an object of type 'java.io.File' on line 17, which is later used as the working directory for the process being executed on line 18.

Extension

This checker can be extended through the Klocwork knowledge base. See Tuning Java analysis for more information.