generic-remediation-reports.error-message-exposure.description.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
This change removes exposure through sending/printing of error and exception data.
Our changes look like this:
```java
void function(HttpServletResponse response) {
PrintWriter pw = reponse.getWriter();
try{
...
} catch (Exception e) {
- pw.println(e.getMessage());
}
}
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy