監査中に、いくつかの顧客注文フォームに、アイテムの実際の価格と顧客に請求される金額との間に矛盾が含まれていることが判明しました。さらなる調査により、問題の原因は、顧客が製品を注文するために使用する公開 Web フォームの操作に絞り込まれました。この問題を特定するための最良の方法は、次のうちどれですか?
正解:C
Implementing input validation is the best way to locate and prevent the issue of manipulation of the public-facing web form used by customers to order products. Input validation is a technique that checks and filters any user input that is sent to an application before processing it. Input validation can help to ensure that the user input conforms to the expected format, length and type, and does not contain any malicious characters or syntax that may alter the logic or behavior of the application. Input validation can also reject or sanitize any input that does not meet the validation criteria .