Thursday 15 June 2017

security - What common web exploits should I know about?




I'm pretty green still when it comes to web programming, I've spent most of my time on client applications. So I'm curious about the common exploits I should fear/test for in my site.

Answer


OWASP keeps a list of the Top 10 web attacks to watch our for, in addition to a ton of other useful security information for web development.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...