16 Matching Annotations
  1. Jun 2021
  2. Apr 2021
  3. Dec 2020
  4. Nov 2020
  5. Oct 2020
  6. mdxjs.com mdxjs.com
  7. Jul 2020
  8. May 2020
  9. Apr 2020
    1. 1- Validation: you “validate”, ie deem valid or invalid, data at input time. For instance if asked for a zipcode user enters “zzz43”, that’s invalid. At this point, you can reject or… sanitize. 2- sanitization: you make data “sane” before storing it. For instance if you want a zipcode, you can remove any character that’s not [0-9] 3- escaping: at output time, you ensure data printed will never corrupt display and/or be used in an evil way (escaping HTML etc…)