
RAhsan891366 (Community Member) asked a question.
73) for below code File newFile = new File(safedbFilePath + "/" + safeFileName);

RAhsan891366 (Community Member) asked a question.
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 @RAhsan891366 (Community Member),
Please see this article, which includes an in-depth treatment of CWE-73 remediation.
Kind regards,
Duncan
Hi @Dee, Veracode Security Consultant (Veracode) ,
I tried multiple solutions from this article but still it's not reslved.
Here I am adding the code snippet for your better understanding.
String dbFilePath = SystemProperties.getProperty("db_files_path");
String safeFileName = FilenameUtils.getName(fileName);
File newFile = new File(safeDbFilePath + "/" + safeFileName);
The bold line is where I'm getting the issue.
============================================================
public static String getName(final String fileName) {
if (fileName == null) {
return null;
}
failIfNullBytePresent(fileName);
final int index = indexOfLastSeparator(fileName);
return fileName.substring(index + 1);
}
Hi @RAhsan891366 (Community Member),
I don't recognise any of the suggestions from the article in your code. What section did you follow? For example, "CWE73-REGEX" or "CWE73-C14N".
Duncan