160 likes | 174 Views
This project aims to enhance application security practices by addressing existing taxonomies' failures and exploring new approaches, such as secure frameworks, developer training, and automated tests. The goal is to minimize vulnerabilities and improve security across web development.
E N D
OWASP Periodic Table of Vulnerabilities James Landis james.landis@owasp.org
The AppSec Profession ~1980-????
Project Goal GOAL
Failed Approaches • Developer Training • “Enumerating Badness”, “Penetrate and Patch” (h/t Marcus Ranum) • Some vulnerability classes, automated tests – Yes! • Other classes (e.g. Logic flaws), manual tests – No! • Firewalls • Root cause analysis (XSS == SQLi, XSS != SQLi) • Everything else we’ve been doing
Solutions? • Accepting Reality • HTTP not stateless • People might try to hurt us • Platform Security Continuum • Make it impossible to make mistakes • Economies of Scale Vulnerable by Default Secure by Design
Economies of Scale WebDev Mistakes Code Changes Impact
Scope • Avoid reproducing existing documentation • Describe just enough of the solution to show how it’s distributed between targets • References, references, references! • Minimize original research • Most solutions enforce old ideas in frameworks • Browser/standards require some new thought • Mobile, thick client vulnerabilities excluded
Case Study - XSS • Decouple presentation and data – easy with AJAX, not with Web 1.0 • What if content IS markup? • Secure framework might have steep learning curve / difficult adoption path • Browser sandboxing • CSP, Caja, IFRAME seamless/sandbox
Developer Training BEFORE AFTER XSS SQLi CSRF HTTPRS Clickjacking Application DDoS Improper Input Handling Redirector Abuse Logical Flaws Remote File Include OS Commanding XML External Entities Logical Flaws Function Abuse Input Validation Secure Framework
Drawbacks and Benefits • DOESN’T help us with legacy/current applications • DOES help drive remediation planning / gap analysis in existing applications • DOES focus remediation toward areas with greatest force multiplier (e.g. Top Ten Defenses) • DOES allow objective evaluation of firewalls and frameworks