How would you test the security of a flat file processing application?
Perhaps the question is more about how does the back-end of an application that takes a flat file with a specific template as input handle such input.
How would you test the security of a flat file processing application?
Perhaps the question is more about how does the back-end of an application that takes a flat file with a specific template as input handle such input.
The key word is fuzzing. Essentially, you automatically run the program in question many many times, with randomized inputs and seeing if some of them cause an unexpected result.
For example, what if the input
Your program has a sort of expected behavior, but it's possible that some cases were not thought of by the developers (e.g. malformed UTF-16 input) and can lead to unexpected behavior. And unexpected behavior in turn can lead to security vulnerabilities.