You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unvalidated/Unsanitized user input in src/store/reducers/data.js
Expected behavior
User input should be validated and sanitized to prevent potential security issues.
Actual behavior
src/store/reducers/data.js
Data fetching functions, like in /store/reducers/data.js, use template literals for
URLs. If any of the values (e.g., organizationId) come directly from user input, it can
lead to security issues. Even though the risk in your code isn't evident, always validate
and sanitize user input before use.
The text was updated successfully, but these errors were encountered:
Issue Report
Unvalidated/Unsanitized user input in src/store/reducers/data.js
Expected behavior
User input should be validated and sanitized to prevent potential security issues.
Actual behavior
src/store/reducers/data.js
URLs. If any of the values (e.g., organizationId) come directly from user input, it can
lead to security issues. Even though the risk in your code isn't evident, always validate
and sanitize user input before use.
The text was updated successfully, but these errors were encountered: