-
Notifications
You must be signed in to change notification settings - Fork 0
PatchWork AutoFix #16
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
base: main
Are you sure you want to change the base?
Conversation
|
File Changed:
|



This pull request from patched fixes 8 issues.
Fix: Use hardcoded regexes to avoid ReDoS
- Updated the replace function to take a hardcoded regex instead of dynamic one.Fix: Hardcode regex to prevent potential ReDoS
This commit hardcodes the regex to prevent a potential ReDoS attack.Fix vulnerability by replacing plaintext HTTP URL with HTTPS URL
The plaintext HTTP URL in the anchor link has been replaced with an encrypted HTTPS URL.Change HTTP to HTTPS Link
Changed the http:// url to a secure https:// urlFix: Prefer encrypted HTTPS URL over plaintext HTTP URL
Replaces the plaintext HTTP URL in the href attribute of the Analyst Reviews link with an encrypted HTTPS URL.Fix: Change url to https and remove alt text from the image.
- Changed the URL from plaintext HTTP to encrypted HTTPS.Fix Missing parameter validation when a user attempts to change their password
Added a null check for all parameters passed into the changePassword method in the AdminServlet class.Fixed cookie security attributes
- Set the 'HttpOnly' flag on the cookie to prevent client-side scripts from reading the cookie.