javascript - What is OWASP ? why we need that? -


i read documents said owasp used security purpose web application. not clear that. can 1 tell me purpose, difference normal app(without owasp) & secure app(with owasp) , why need that. can give me runable angularjs example following things

1)a2: cross-site scripting (xss)

2)a3: broken authentication , session management

3)a4: insecure direct object references

4)a5: cross-site request forgery (csrf)

5)a6: security misconfiguration

6)a7: insecure cryptographic storage

7)a9: insufficient transport layer protection

to put it, owasp community highlighting security threats web application. hence, provides information on top security threats (owasp top ten) , whole bunch of guidelines , best practices when developing web applications keep secure. difference whether developer followed said guidelines , best practices.

to give example: cross site scripting when user tries execute javascripts in web apps input fields, allowing rogue client-side script executed web pages viewed other users. xss exploits fact developers not validate user inputs , merely processes them clientside.

you'll need research bit rest have posted. google answer there. :)


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -