
srathore (Community Member) asked a question.
- SAXReader reader= new SAXReader();
- String realPath = getServletContext().getRealPath(path);
In both the cases causing External Control of File Name or Path flaw? how can i fix it?

srathore (Community Member) asked a question.
In both the cases causing External Control of File Name or Path flaw? how can i fix it?
Ask the Community
Get answers, share a use case, discuss your favorite features, or get input from the community.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
.png)
These cookies are necessary for the website to function and cannot be switched off in our systems. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms. You can set your browser to block or alert you about these cookies, but some parts of the site will not then work. These cookies do not store any personally identifiable information.
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies we will not know when you have visited our site, and will not be able to monitor its performance.
These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.
Hi @srathore (Community Member) ,
Veracode Static Analysis reports CWE 73 (External Control of File Name or Path), also called File Path Injection, when it can detect that a file path being accessed is composed using data from outside the application (such as the HTTP request, the database, or the filesystem). The concern is that an attacker might be able to use a dot-dot-slash attack ("../") to traverse through the filesystem and access arbitrary files.
The following Knowledge article describes in detail how to deal with CWE 73 in Java: https://community.veracode.com/s/article/how-do-i-fix-cwe-73-external-control-of-file-name-or-path-in-java .
In a nutshell: The only fixes that Veracode Static Analysis would automatically detect here is hardcoding the file path or validation against an allow-list. In any other case, we would recommend the following:
Thank you,
Florian Walter