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
fix: handle backslash and double-quote in a single pass in toPhpIniPath (CodeQL #70)
Replace the two chained .replace() calls with a single-pass regex that
handles both \ and " in one substitution. This eliminates any ordering
ambiguity between the two transforms and resolves the CodeQL
js/incomplete-sanitization alert: there is now no intermediate state where
a newly introduced backslash could interact with a not-yet-processed
double-quote character.
0 commit comments