Reputation: 55283
As far as know, I must be careful with PHP, and I think Javascript. What else?
Upvotes: 1
Views: 606
Reputation: 1295
OWASP provides an annual report describing the top ten web application security flaws (see link below for description of the project and the most recent report). As SLaks wrote, many vulnerabilities are independent of the language. Web applications need to be designed with security in mind.
http://www.owasp.org/index.php/Category:OWASP_Top_Ten_Project
Upvotes: 1
Reputation: 887479
Security vulnerabilities are (mostly) independent of the language involved (except for memory issues).
Instead, you should focus on tasks with potential vulnerabilities, such as processing user input or handling sensitive data.
Some things to watch out for:
eval
, automatic updates, etc)You should also read articles about security, such as the Top 25 Most Dangerous Programming Errors.
Upvotes: 5