In this blog post, we will explore the concept of CWE-1236, also known as CSV Injection or Formula Injection, which poses a significant security risk when exporting data to CSV files. We will delve into the mechanics of this vulnerability, its implications, and how to mitigate the risks associated with it.
Tag
programming best practices
All blogs tagged with programming best practices
3
Articles
6,514
Total Views
Showing 3 of 3 articles
19
Mar
2026
Understanding CWE-1236: CSV Injection and How to Prevent Formula Injection Attacks
17
Mar
2026
Understanding CWE-200: Exposure of Sensitive Information and Its Prevention
In this blog post, we will explore the concept of CWE-200, which refers to the exposure of sensitive information in applications, and learn practical techniques for preventing data leakage. By understanding common vulnerabilities and implementing best practices, developers can significantly enhance the security of their applications.
15
Aug
2022
Input validation to stop backSlash on keypress and copy paste
Hello guys, sometimes we need to put validations on textboxes to accept certain type of data. For that purpose , we have to apply validation to stop backSlash on keypress and also on copy/paste. So we will see how to apply Input validation on keypress and copy paste using javascript.