Successfully reported this slideshow.
Your SlideShare is downloading. ×

Privacy by design

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Loading in …3
×

Check these out next

1 of 73 Ad

More Related Content

Slideshows for you (20)

Similar to Privacy by design (20)

Advertisement

More from Michelangelo van Dam (20)

Recently uploaded (20)

Advertisement

Privacy by design

  1. 1. PRIVACY BY DESIGN Start by thinking privacy first
  2. 2. MICHELANGELO VAN DAM ➤ Web Application Architect ➤ CEO In2it ➤ President PHPBenelux ➤ Coach at CoderDojo ➤ Open source contributor ➤ Conference speaker
  3. 3. WHY IS PRIVACY IMPORTANT? ➤ Human right ➤ Too much data already collected ➤ Information is everywhere ➤ Individuals have become the product
  4. 4. LATEST BREACHES THAT IMPACTED PEOPLE’S LIVES
  5. 5. LATEST BREACHES THAT IMPACTED PEOPLE’S LIVES Equifax (2017) 143 Million accounts hacked financial exposure (credit), credit card data & personal information
  6. 6. LATEST BREACHES THAT IMPACTED PEOPLE’S LIVES Equifax (2017) 143 Million accounts hacked financial exposure (credit), credit card data & personal information Ashley Madison (2015) 37 Million accounts hacked extorsion, divorces, suicides
  7. 7. LATEST BREACHES THAT IMPACTED PEOPLE’S LIVES Equifax (2017) 143 Million accounts hacked financial exposure (credit), credit card data & personal information Ashley Madison (2015) 37 Million accounts hacked extorsion, divorces, suicides OPM (2015) 21 Million US government personnel foreign assets, informant data, addictions & relationship issues
  8. 8. YOUR ADVERSARIES Who’s after your data?
  9. 9. VIRUSES Automated scripts to steal data
  10. 10. SCRIPT KIDDIES Using free tools and often have no clue what they’re doing
  11. 11. SOFTWARE ENGINEERS These people are new to security and try out things they have learned
  12. 12. PROFESSIONALS They are the security experts!
  13. 13. COMPETITION They’re after your secret sauce
  14. 14. NATION STATES They might already be inside …
  15. 15. EMPLOYEES They have all the access!
  16. 16. WHAT IF A service I use has been breached?
  17. 17. HOW TO PROTECT PRIVACY? Time to step up and give trust back to your customers
  18. 18. DON’T COLLECT ALL THE THINGS! Keep it to a bare minimum
  19. 19. LIMIT EXPIRATION Don’t keep longer than needed
  20. 20. SEPARATE Keep private information somewhere different from other (business) data
  21. 21. DON’T EXPOSE Keep private data hidden from views
  22. 22. SOME EXAMPLES Technical things you can do right now!
  23. 23. PASSWORD MANAGEMENT ➤ Don’t store data access passwords in common repository ➤ Don’t keep passwords in environment variables* ➤ Make use of an Identity Management System to manage ➤ SSH keys ➤ API keys ➤ DSN’s ➤ Public keys (*) Why not use environment variables: diogomonica.com
  24. 24. HASHICORP VAULT ➤ Tool for managing secrets ➤ vaultproject.io ➤ Secures, stores and controls ➤ access tokens ➤ passwords ➤ certificates ➤ API keys ➤ … others ➤ Access Control ➤ Key Rolling ➤ Configurable lease time ➤ Audit logs ➤ Open Source
  25. 25. Database credentials Application Tokens Stored Secrets ACL’s AWS Temp keys Audit logs
  26. 26. USE A TEAM PASSWORD MANAGER
  27. 27. GIVE 2FA TO EVERYONE!
  28. 28. POP QUIZ & WIN A YUBICO KEY!
  29. 29. AUDIT TRAILS WITH MIDDLEWARE & CQRS ➤ Log access to data ➤ Automate anonymising of privacy data ➤ Automate encryption of privacy data
  30. 30. …AND DON’T FORGET TO ENCRYPT YOUR STORAGE & COMMUNICATIONS! App Data Storage File Storage Log Storage Backup Storage Public - private key exchange| encrypted data storage
  31. 31. WHAT YOU CAN DO NOW! Simple steps towards more privacy
  32. 32. RESPECT DNT HEADERS Your users have chosen to opt-out
  33. 33. Accept: text/html,application/xhtml+xml,application/xml;q=0.9 Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.8,en-US;q=0.6,nl;q=0.4 Cache-Control: max-age=0 Connection: keep-alive DNT: 1 Host: www.example.com Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (<script>alert(‘Filter Input, Escape Output’);</script>)
  34. 34. Accept: text/html,application/xhtml+xml,application/xml;q=0.9 Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.8,en-US;q=0.6,nl;q=0.4 Cache-Control: max-age=0 Connection: keep-alive DNT: 1 Host: www.example.com Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (<script>alert(‘Filter Input, Escape Output’);</script>)
  35. 35. INTERESTING FOR DISABLING GOOGLE ANALYTICS <?php if (!array_key_exists('HTTP_DNT', $_SERVER) || 1 !== (int) $_SERVER[‘HTTP_DNT’]): ?>  <!-- show your Google Analytics Script Here -->  <?php endif ?>
  36. 36. REMOVE THE “DATA” from views and interfaces
  37. 37. What’s wrong with this picture?
  38. 38. Why display full name details?
  39. 39. Why display email addresses?
  40. 40. Why display phone numbers?
  41. 41. REDUCE ACCESS TO DETAILS If a user has other ways to communicate with your clients, remove the visible display of common data elements like full names, email and shipment addresses and phone numbers.
  42. 42. Do you see the difference?
  43. 43. Not full name display
  44. 44. Integrated communication functionality
  45. 45. SAME FUNCTIONALITY, BUT KEEPS DATA HIDDEN ➤ Prevents accidentally exposing email and phone numbers (e.g. during a call) ➤ Hides details from end-user, but functionality is still provided ➤ Sending out an email uses build-in mail client ➤ Making calls uses a phone middleware used in the company ➤ Gives clear audit trail on who accessed what
  46. 46. NOT 100% PROTECTION, BUT… ➤ We remove the personal one-on-one communication with customers ➤ We add better access management on customer communication ➤ Full audit trail now possible as communication stays in-application ➤ Less chance for data loss as contact details are kept away from users
  47. 47. BLOCKCHAIN Immutable, verifiable ledger for all transactions
  48. 48. AUTOMATE Anonymisation and Data Leakage Prevention
  49. 49. REGULAR EXPRESSIONS cat server.log | sed -r 's/([0-9]+).([0-9]+) .([0-9]+).([0-9]+)/1.xxx.xxx.4/g' -
  50. 50. DATA LOSS PROTECTION (DLP) Prevent leakage on company level
  51. 51. EXAMPLES OF DLP
  52. 52. EMAIL MARKETING My contact list is the lifeline of our business!!!
  53. 53. CONTACT DATA Opt-in , always
  54. 54. NOT OPT-IN /dev/null is the place to be
  55. 55. RECAP ➤ Users give data in trust: respect that ➤ Ensure private data is kept to a minimum and removed from view ➤ Protect your data by anonymization and remove from view interfaces ➤ Know that security is not enough: if you don’t have it, it can’t be stolen!
  56. 56. QUESTIONS?
  57. 57. in it2PROFESSIONAL PHP SERVICES Michelangelo van Dam Zend Certified Engineer contact@in2it.be - www.in2it.be - T in2itvof - F in2itvof Consulting Automation Training

×