it s worth a shot
play

Its worth a shot. https://youtu.be/7W5au-IJUEc Approach 1. What - PowerPoint PPT Presentation

Its worth a shot. https://youtu.be/7W5au-IJUEc Approach 1. What created the vulnerability. 2. How the vulnerability is exploited. 3. How to protect yourself. Web 2.0 What could possibly go wrong?! Servers send HTML and JS to clients


  1. It’s worth a shot. https://youtu.be/7W5au-IJUEc

  2. Approach 1. What created the vulnerability. 2. How the vulnerability is exploited. 3. How to protect yourself.

  3. Web 2.0 What could possibly go wrong?! Servers send HTML and JS to clients ● Clients execute JS that changes the ● DOM and makes requests back to the server HTML, CSS, JS Server Bingo

  4. Authentication Username and password… easy. Usually requires a username and password ● What kinds of passwords are acceptable? ● How should we send the username and password? ● How should we store and validate the username and password? ●

  5. Authentication Don’t store passwords in plaintext ● Hash! ●

  6. Authentication Password Storage random salt hash Hash password salt+hash function

  7. Authentication Password Validation salt Hash password salt+hash function hash to hash check Are hashed passwords match? uncrackable? No!

  8. Authentication Encryption We’re hashing passwords, so do we need encryption? ● We sure do! ● Thanks! Bongo HTTP POST Server salt+hash username, password Bingo

  9. Authentication Tokens We don’t want people to have to constantly log in ● We need to give the client a token that they can use to prove ● that they have authenticated successfully HTTPS POST username, password Server token Bingo

  10. Authentication Tokens Bongo fake Must identify the user ● token Must be signed with the server’s private key ● nope token Server OK Bingo

  11. SQL Injection What happens when name is “ or “” = “ ●

  12. SQL Injection Solving the problem. Blacklist certain characters ● Whitelist certain characters ● Use prepared statements ●

  13. Cross-site Scripting (XSS) Just stick to the script. www.bongo.com Stored XSS ● Check this out! Reflected XSS ● www.bank.com/profile?name=<script>...

  14. Cross-site Scripting (XSS) Protection. Sanitize inputs ● Escape HTML ● Use auto-escaping framework like React or Vue.js ●

  15. Cookies Just maintain state! No problem! HTTP is stateless ● Cookies are used to maintain state ● Store session information ○ Store user preferences ○ Track your every move... ○

  16. Cross-site Request Forgery (CSRF) It really wasn’t me this time. Your browser automatically attaches cookies to requests to the ● domain they came from

  17. Cross-site Request Forgery (CSRF) www.bongo.com malicious GET content www.bongo.com transfer <cookie> Server OK Bingo

  18. Cross-site Request Forgery (CSRF) Prevention. Don’t use GET to modify state ● Hidden nonces in forms ● Use Samesite cookies ● Check the origin or referer of the request ●

  19. Honorable Mentions Containers ● Metasploit (penetration testing): www.metasploit.com ● OWASP (web application security): www.owasp.org ● WebGoat: github.com/WebGoat/WebGoat ●

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend