CAPEC-CAPEC-3 - CERT CVE
Naziv

Using Leading 'Ghost' Character Sequences to Bypass Input Filters

Sažetak Some APIs will strip certain leading characters from a string of parameters. An adversary can intentionally introduce leading "ghost" characters (extra characters that don't affect the validity of the request at the API layer) that enable the input to pass the filters and therefore process the adversary's input. This occurs when the targeted API will accept input data in several syntactic forms and interpret it in the equivalent semantic way, while the filter does not take into account the full spectrum of the syntactic forms acceptable to the targeted API.
Preduvjeti The targeted API must ignore the leading ghost characters that are used to get past the filters for the semantics to be the same.
Rješenja ['Use an allowlist rather than a denylist input validation.', 'Canonicalize all data prior to validation.', 'Take an iterative approach to input validation (defense in depth).']