Skip to content

Commit

Permalink
security
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurjuneja committed May 21, 2021
1 parent 91d4394 commit fd0eb3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [Stack](https://github.com/ankurjuneja/React-Java-Concepts/blob/master/DataStructures/Stack.md)
- [Multithreading](https://github.com/ankurjuneja/React-Java-Concepts/blob/master/Java/Multithreading.md)
- Web
- [Security](https://github.com/ankurjuneja/React-Java-Concepts/blob/master/Web-Issues-And-Monitoring/ApplicationSecurity.md)
- [Common Issues](https://github.com/ankurjuneja/React-Java-Concepts/blob/master/Web-Issues-And-Monitoring/Common.md)
- [Concepts](https://github.com/ankurjuneja/React-Java-Concepts/blob/master/Web-Issues-And-Monitoring/Concepts.md)

10 changes: 10 additions & 0 deletions Web-Issues-And-Monitoring/ApplicationSecurity.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
**SQL injection**
- what? insertion/injection of a sql query via the input data from the client/UI to the application/backend.
- harm - attacker can read/modify sensitive data in database, execute administration operations on db.
- how to prevent? use of prepared statements, use of stored procedures, allow-list input validation and
escaping all user-supplied input.

**XSS**
- what?
- type of injection attack in which attacker uses a web application to send malicious code to a different user.
- attacker uses XSS to send malicious script to an unsuspected user.

0 comments on commit fd0eb3a

Please sign in to comment.