Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(CodeQL) Fixed finding: "Prevent information leak of stack trace details to HTTP responses" #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

pixee-b1171e79b0e16eb5[bot]
Copy link

Remediation

This change fixes "Prevent information leak of stack trace details to HTTP responses" (id = stack-trace-exposure) identified by CodeQL.

Details

This change prevents stack trace information from reaching the HTTP response, which could leak code internals to an attacker and aid in further profiling and attacks.

Have you ever seen an error page and thought, "Wow, I certainly shouldn't be seeing all these code details?" That's this problem.

Switching to a safe signature that doesn't leak anything is easy and the changes look something like this:

  try {
    httpResponse.write(output);
  } catch (Exception e) {
-   response.sendError(401, e.getMessage());
+   response.sendError(401);
  }
More reading

I have additional improvements ready for this repo! If you want to see them, leave the comment:

@pixeebot next

... and I will open a new PR right away!

🧚🤖 Powered by Pixeebot

Feedback | Community | Docs | Codemod ID: codeql:java/stack-trace-exposure

@carlosu7
Copy link
Owner

carlosu7 commented Jul 8, 2024

@pixeebot next

1 similar comment
@carlosu7
Copy link
Owner

carlosu7 commented Jul 9, 2024

@pixeebot next

@pixee-b1171e79b0e16eb5
Copy link
Author

I'm confident in this change, but I'm not a maintainer of this project. Do you see any reason not to merge it?

If this change was not helpful, or you have suggestions for improvements, please let me know!

@carlosu7
Copy link
Owner

@pixeebot next

1 similar comment
@carlosu7
Copy link
Owner

@pixeebot next

@pixee-b1171e79b0e16eb5
Copy link
Author

Just a friendly ping to remind you about this change. If there are concerns about it, we'd love to hear about them!

@pixee-b1171e79b0e16eb5
Copy link
Author

This change may not be a priority right now, so I'll close it. If there was something I could have done better, please let me know!

You can also customize me to make sure I'm working with you in the way you want.

@carlosu7
Copy link
Owner

@pixeebot next

Copy link

sonarcloud bot commented Jul 18, 2024

@pixee-b1171e79b0e16eb5
Copy link
Author

@carlosu7, I opened PR #116, go check it out!

@carlosu7
Copy link
Owner

@pixeebot next

@pixee-b1171e79b0e16eb5
Copy link
Author

@carlosu7, I opened PR #120, go check it out!

@carlosu7
Copy link
Owner

@pixeebot next

@pixee-b1171e79b0e16eb5
Copy link
Author

@carlosu7, I opened PR #123, go check it out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant