Skip to:
CSVs generated using clojure.csv is succeptible to injection attacks. It'd be a nice enhancement to have an option to apply this transformation on behalf of users.
For example:
(with-open [writer (io/writer "out-file.csv")](csv/write-csv writer[["abc" "def"]["ghi" "=jkl"]]))
See https://www.owasp.org/index.php/CSV_Injection
CSVs generated using clojure.csv is succeptible to injection attacks. It'd be a nice enhancement to have an option to apply this transformation on behalf of users.
For example:
(with-open [writer (io/writer "out-file.csv")]
(csv/write-csv writer
[["abc" "def"]
["ghi" "=jkl"]]))
See https://www.owasp.org/index.php/CSV_Injection