String exploits
Several implementation / design flaws are associated with string programming, some of those are associated with security exploits.
Concatenation problems
It is possible to cause String1 + User_Input_String + String2 to behave in unexpected ways by crafting unanticipated User_Input_String, such as having string2 ignored in processing.String termination
In many environments, it is possible to truncate the string with clever input.Comment out characters
In many environments, it is possible to "ask" the system to ignore the rest of the string, using "comment" characters.See also (other string problems)
*printf format strings are dangerousCategory:Computer security exploits
Comments