Injections Attacks - amitbhilagude/userfullinks GitHub Wiki
- Injection attacks
- SQL Injection attacks: Passing 'OR''=' in password may allow SQl where true value.
- Non-SQl Injection attacks: Mongo DB API Query indexof
- Best practices
- Never throw SQL exceptions to users, attacker may find out how to do SQL injections attacks.
- Use of safe method of sql queries execution classes or second option is EF with Linq.
- Never trust input from user, it needs to be validated as you can