セキュリティ エンジニアは、会社の Web サイトが Web アプリケーション攻撃に対して脆弱であるというペネトレーション テスト レポートを調査しています。テスト時の Web ログを確認しているときに、エンジニアは、「SELECT * FROM customername」という通常とは異なるアドレスを使用して、いくつかの無効な Web フォームが送信されていることに気付きました。試みられている可能性が最も高いのは次のうちどれですか?
正解:B
Explanation SQL injection is a web application attack that involves inserting malicious SQL statements into an input field, such as a web form, to manipulate or access the database behind the application. SQL injection can be used to perform various actions, such as reading, modifying, or deleting data, executing commands on the database server, or bypassing authentication. In this scenario, the attacker is trying to use a SQL statement "SELECT * FROM customername" to retrieve all data from the customername table in the database.