Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Sichere Web-Applikationen am Beispiel von Django

Sichere Web-Applikationen am Beispiel von Django

Durch die hohe Komplexität moderner Web-Applikationen gibt es immer mehr Möglichkeiten für Angreifer, den Benutzern zu schaden oder sogar in die Systeme einzudringen. Die OWASP Top 10 2013 des Open Web Application Security Project (OWASP) listen die zehn gefährlichsten Möglichkeiten auf, eine Web-Applikation anzugreifen.

In diesem Vortrag werden die wichtigsten Szenarien aus den OWASP Top 10 2013 detailliert diskutiert. Dabei wird jede Angriffsmöglichkeit zuerst an einem praktischem Beispiel erläutert, dass zeigt wie ein Angriff aussehen könnte. Danach wird am Beispiel des Python Web Frameworks Django demonstriert, wie eine sichere Implementation aussieht.

Jedes Beispiel sollte sich einfach auf andere Programmiersprachen und Frameworks übertragen lassen. Daher richtet sich der Vortrag nicht nur an Nutzer von Django, sondern an alle, die Web Applikationen entwickeln.

Abschließend werden Werkzeuge vorgestellt, die zur Suche nach Schwachstellen in Web-Applikationen genutzt werden können.

More Decks by Markus Zapke-Gründemann

Other Decks in Programming

Transcript

  1. Markus Zapke-Gründemann Softwareentwickler seit 2001 Python, Django und Mercurial Inhaber

    von transcode Vorstand des Deutschen Django-Vereins keimlink.de // @keimlink
  2. Django Python Web-Application Framework Open Source (BSD-Lizenz) Rapid Development Model

    Template View (MTV) Object Relational Mapper (ORM) www.djangoproject.com
  3. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS)
  4. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References
  5. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration

  6. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration
 6. Sensitive Data Exposure
  7. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration
 6. Sensitive Data Exposure 7. Missing Function Level Access Control
  8. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration
 6. Sensitive Data Exposure 7. Missing Function Level Access Control 8. Cross-Site Request Forgery (CSRF)
  9. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration
 6. Sensitive Data Exposure 7. Missing Function Level Access Control 8. Cross-Site Request Forgery (CSRF) 9. Using Components with Known Vulnerabilities
  10. OWASP Top 10 1. Injection 2. Broken Authentication and Session

    Management 3. Cross-Site Scripting (XSS) 4. Insecure Direct Object References 5. Security Misconfiguration
 6. Sensitive Data Exposure 7. Missing Function Level Access Control 8. Cross-Site Request Forgery (CSRF) 9. Using Components with Known Vulnerabilities 10.Unvalidated Redirects and Forwards
  11. SQL Injection >>> cmd = "UPDATE animals SET name='%s' WHERE

    id='%s'" % (name, id) >>> cursor.execute(cmd)
  12. Cross-Site Scripting (XSS) <h3>Preparation</h3> {{ recipe.preparation }} ! <script>alert('The best

    recipe in the world!')</script> Heat the water in the pot to 100 °C. ! <p>&lt;script&gt;alert(&#39;The best recipe in the <world!&#39;)&lt;/script&gt;</p> <p>Heat the water in the pot to 100 °C.</p>
  13. Cross-Site Scripting (XSS) <h3>Preparation</h3> {{ recipe.preparation|safe }} ! <script>alert('The best

    recipe in the world!')</script> Heat the water in the pot to 100 °C. ! <p><script>alert('The best recipe in the world!')</ script></p> <p>Heat the water in the pot to 100 °C.</p>
  14. Sensitive Data Exposure >>> from django.contrib.auth.models import User >>> User.objects.get(pk=1).password

    u'pbkdf2_sha256$10000$sDN75YuuoUWi$Ua/ H364jPAPTPBiAyJ1fc0uB4ClzQD5yGFisYrxCo40='
  15. Cross-Site Request Forgery (CSRF) <form method="post" accept-charset="utf-8"> {{ form.as_p }}

    {% csrf_token %} <input type="submit" value="Submit"/> </form>
  16. Cross-Site Request Forgery (CSRF) <form method="post" accept-charset="utf-8"> ... <input type='hidden'

    name='csrfmiddlewaretoken' value='gB3bL3MU2fr8BCQXXrNV6pfS7GJYBdU0' /> <p><input type="submit" value="Submit" / ></p> </form>