https://github.com/sandhya80/preventing_sql_injectionattacks
Hardening the web-form to validate that the submission is a number, as well as converting the SQL query to a prepared statement preventing a SQL injection attack.
https://github.com/sandhya80/preventing_sql_injectionattacks
named-placeholders prepared-statements sanitizing-validating-forms-data sql-injection-attacks sql-injection-attacks-mitigation
Last synced: 9 months ago
JSON representation
Hardening the web-form to validate that the submission is a number, as well as converting the SQL query to a prepared statement preventing a SQL injection attack.
- Host: GitHub
- URL: https://github.com/sandhya80/preventing_sql_injectionattacks
- Owner: Sandhya80
- Created: 2024-03-06T02:21:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T02:23:39.000Z (almost 2 years ago)
- Last Synced: 2024-03-06T03:29:22.718Z (almost 2 years ago)
- Topics: named-placeholders, prepared-statements, sanitizing-validating-forms-data, sql-injection-attacks, sql-injection-attacks-mitigation
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Preventing_SQL_InjectionAttacks
Hardening the web-form to validate that the submission is a number, as well as converting the SQL query to a prepared statement preventing a possible SQL injection attack.