From the course: Secure Coding in Java

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Other injection attacks

Other injection attacks - Java Tutorial

From the course: Secure Coding in Java

Start my 1-month free trial

Other injection attacks

- [Instructor] We're going to spend a lot more time talking about SQL injection or challenge exercises as well as how to prevent it. While this attack vector continues to be a major issue, it is rather easily mitigated. So we're not going to go into the web specific examples. If you're interested in how to mitigate those, check out my other course on secure coding here on the LinkedIn Learning Library, I do want to spend a bit of time to talk about some of those other injection attacks however that are prevalent in Java LDAP injection attacks can be a common internal attack within enterprise systems. Obviously LDAP is used outside of enterprises, but it does seem to be more prevalent within the enterprise itself. LDAP injection has caused like all injection from not sanitizing the input before submitting it to an interpreter. Consider the following query for LDAP to authenticate a user. We're doing a query here where sn…

Contents