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(codegen): emit string literals as raw byte data to prevent assembly injection
Updated code generation to emit string literals as explicit byte sequences
(char values) instead of interpolating their contents into NASM string
literals, eliminating the possibility of user-controlled assembly injection.
Although the parser currently does not support escape sequences (e.g. \" or \n),
this change establishes a secure foundation and a clear extension point for
future safe handling of escaped characters.
0 commit comments