korbit-ai[bot] commented on code in PR #33060: URL: https://github.com/apache/superset/pull/33060#discussion_r2035513217
########## superset-frontend/src/pages/RolesList/index.tsx: ########## @@ -163,7 +163,7 @@ function RolesList({ addDangerToast, addSuccessToast, user }: RolesListProps) { const fetchPage = async (pageIndex: number) => { const response = await SupersetClient.get({ - endpoint: `api/v1/security/users/?q={"page_size":${pageSize},"page":${pageIndex}}`, + endpoint: `api/v1/security/users/?q=(page_size:${pageSize},page:${pageIndex})`, }); return response.json; }; Review Comment: ### Unsafe URL Parameter Interpolation <sub></sub> <details> <summary>Tell me more</summary> ###### What is the issue? Direct string interpolation of user-controlled variables (pageSize and pageIndex) into the API endpoint URL without validation or sanitization. ###### Why this matters This could allow malicious users to inject arbitrary characters into the URL, potentially leading to path traversal or API manipulation attacks. ###### Suggested change ∙ *Feature Preview* ```typescript const fetchPage = async (pageIndex: number) => { // Validate inputs are safe positive integers if (!Number.isInteger(pageSize) || !Number.isInteger(pageIndex) || pageSize < 1 || pageIndex < 0) { throw new Error('Invalid pagination parameters'); } const response = await SupersetClient.get({ endpoint: `api/v1/security/users/?q=(page_size:${pageSize},page:${pageIndex})`, }); return response.json; }; ``` ###### Provide feedback to improve future suggestions [](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/948ebf55-819a-4e57-a34c-887a56d09a99/upvote) [](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/948ebf55-819a-4e57-a34c-887a56d09a99?what_not_true=true) [](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/948ebf55-819a-4e57-a34c-887a56d09a99?what_out_of_scope=true) [](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/948ebf55-819a-4e57-a34c-887a56d09a99?what_not_in_standard=true) [](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/948ebf55-819a-4e57-a34c-887a56d09a99) </details> <sub> 💬 Looking for more details? Reply to this comment to chat with Korbit. </sub> <!--- korbi internal id:7c54b5be-a9e1-4e8a-9ccc-ade21282099d --> [](7c54b5be-a9e1-4e8a-9ccc-ade21282099d) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org