Looking for suggestions on security training for C...
# adobe
g
Looking for suggestions on security training for CF development / OWASP TOP 10, etc
j
https://foundeo.com/ Pete is like a security ninja 🙂
s
Foundeo offers security training classes if you are lookin for something formal: https://foundeo.com/consulting/coldfusion/security-training/ I personally just read the owasp docs and figured out the CF equivalents...using cfqueryparam, not useing iif() or evaluate(), using the EncodeForHTML() (and other encodeFor functions), etc
Not CF specific per se, but I would also make sure you are looking into CORS https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS and that you are setting access control headers to prevent unauthorized scripts from running on your application if something does get past your security and starts adding some skimming script to your code to capture data and send it to a 3rd party. I have dealt with several issues for clients over the last couple years where setting those helped.