Preventing Unauthorized Database Access:Input sanitization ensures that web applications validate and cleanse user inputs to prevent malicious payloads, such as SQL injection, from being executed.
Why Input Sanitization Works:
Blocks injection attacks by filtering out harmful characters and queries.
Enforces strict input formats, reducing risks from malicious user input.
Why Not Other Options:
A. Session encryption: Protects data in transit, not database access.
B. Removing stored procedures: Disrupts functionality without addressing input risks.
D. Library control: Reduces vulnerabilities in dependencies but does not address input directly.
EC-Council Guidance:Input validation is a cornerstone of secure coding practices for safeguarding databases from unauthorized access.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit