Revert "Add protections for loop-bound injections"#5847
Revert "Add protections for loop-bound injections"#5847christopherholland-workday merged 1 commit intomainfrom
Conversation
Summary of ChangesHello @christopherholland-workday, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request undoes a previous change that introduced specific constants intended to protect against loop-bound injection attacks. The reversal removes these limits, effectively restoring the code to its state before the protections were implemented. The primary impact is the removal of array size constraints within the evaluation runner service. Highlights
Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request reverts changes that were intended to add protection against Denial of Service (DoS) attacks. By removing the constants that limit array sizes in loops, the application may become vulnerable to resource exhaustion if malicious, large inputs are provided. This re-introduces a critical security vulnerability.
I am having trouble creating individual review comments. Click here to see my feedback.
packages/server/src/services/evaluations/EvaluatorRunner.ts (13-16)
Removing these constants eliminates protections against potential Denial of Service (DoS) attacks. These constants were intended to limit array sizes to prevent resource exhaustion from long-running loops over inputs like actualOutputArray, selectedEvaluators, and splitValues. Reverting this change re-introduces a security vulnerability where a malicious user could provide very large inputs, leading to excessive CPU usage and service unavailability. If the original protections caused problems, an alternative mitigation should be implemented rather than removing them entirely.
Reverts #5773
I do not know how this got merged in accidentally