Cyber Security für Entwickler - Java User Group IN //08.12.2020
Agenda
Intro
Simon Trockel
- Bachelor of Science Informatik (Wirtschaft)
- CISSP
- Softwareentwickler seit 2008
- Cyber Security Berater seit 2015
OWASP Top 10
1. Injection: Injection flaws, such as SQL, NoSQL, OS, and LDAP injection, occur when untrusted data is sent to an interpreter as part of a command or query. The attacker’s hostile data can trick the interpreter into executing unintended commands or accessing data without proper authorization.
2. Broken Authentication: Application functions related to authentication and session management are often implemented incorrectly, allowing attackers to compromise passwords, keys, or session tokens, or to exploit other implementation flaws to assume other users’ identities temporarily or permanently.
3. Sensitive Data Exposure: Many web applications and APIs do not properly protect sensitive data, such as financial, healthcare, and PII. Attackers may steal or modify such weakly protected data to conduct credit card fraud, identity theft, or other crimes. Sensitive data may be compromised without extra protection, such as encryption at rest or in transit, and requires special precautions when exchanged with the browser.
4. XML External Entities (XXE): Many older or poorly configured XML processors evaluate external entity references within XML documents. External entities can be used to disclose internal files using the file URI handler, internal file shares, internal port scanning, remote code execution, and denial of service attacks.
5. Broken Access Control: Restrictions on what authenticated users are allowed to do are often not properly enforced. Attackers can exploit these flaws to access unauthorized functionality and/or data, such as access other users’ accounts, view sensitive files, modify other users’ data, change access rights, etc.
6. Security Misconfiguration: Security misconfiguration is the most commonly seen issue. This is commonly a result of insecure default configurations, incomplete or ad hoc configurations, open cloud storage, misconfigured HTTP headers, and verbose error messages containing sensitive information. Not only must all operating systems, frameworks, libraries, and applications be securely configured, but they must be patched/upgraded in a timely fashion.
7. Cross-Site Scripting (XSS): XSS flaws occur whenever an application includes untrusted data in a new web page without proper validation or escaping, or updates an existing web page with user-supplied data using a browser API that can create HTML or JavaScript. XSS allows attackers to execute scripts in the victim’s browser which can hijack user sessions, deface web sites, or redirect the user to malicious sites.
8. Insecure Deserialization: Insecure deserialization often leads to remote code execution. Even if deserialization flaws do not result in remote code execution, they can be used to perform attacks, including replay attacks, injection attacks, and privilege escalation attacks.
9. Using Components with Known Vulnerabilities: Components, such as libraries, frameworks, and other software modules, run with the same privileges as the application. If a vulnerable component is exploited, such an attack can facilitate serious data loss or server takeover. Applications and APIs using components with known vulnerabilities may undermine application defenses and enable various attacks and impacts.
10. Insufficient Logging & Monitoring: Insufficient logging and monitoring, coupled with missing or ineffective integration with incident response, allows attackers to further attack systems, maintain persistence, pivot to more systems, and tamper, extract, or destroy data. Most breach studies show time to detect a breach is over 200 days, typically detected by external parties rather than internal processes or monitoring.
Saftladen
# Run at own risk! Do not set NODE_ENV to unsafe in Cloud Environments
docker run --rm -p 3000:3000 -e NODE_ENV=unsafe bkimminich/juice-shop:latest
Normale Benutzung
- Account anlegen
- Eine Bestellung abschließen
- Bissl rumklicken
SQL Injection & Broken Auth
Login kaputt machen:
- User ohne Email anlegen
- Login ohne Passwort
- Login als Admin
- SQL Injection
Lösung
- Email Validierung ist Client Seitig -> API Call direkt
- Zuerst Testen ob SQL Injection möglich ist mit
'
als Username. Dann mal in den Error Logs suchen gehen. SQL Error gefunden? wie wäre es mitAlice' --
- Login als Admin mit
' OR true --
Sensitive Data Exposure
- JWT in
POST 'http://localhost:3000/rest/user/login'
- Customer Feedback & About
Lösung
- Das
POST
gibt ein JWT zurück. Allerdings enthält es mehr Informationen als nötig(und sinnvoll). Insbesondere den MD5 Hash des Passworts. JWT.io MD5 Decrypt MD5 sollte nicht zum hashen von Passwörtern genutzt werden. Lässt sich einfach berechnen und es gibt Kollisionen. Mehr Infos - Emails werden nur bedingt maskiert. Die unmaskierten sind leicht zu raten
Broken Access Control
Es ist Weihnachtszeit. Meine Frau hat für mich im Juice Shop bestellt. Aber ich bin ungeduldig und will wissen was Sie mir schenkt. Wenn ich mir nur die Bestellungen der anderen ansehen könnte...
Lösung
- Basket anlegen
- Dev Tools -> Application -> Session Storage ->
bid
verändern - Wo wir dabei sind -> API Calls in INSOMNIA ausprobieren
Security Misconfiguration
Aber es geht noch viel einfacher... Was wäre wenn ich einfach alle Bestellungen sehen könnte...
Lösung
BONUS: Mehr Infos können mit %2500.md
heruntergeladen werden. Siehe http://localhost:3000/ftp/package.json.bak%2500.md
XSS
DOM XSS
Reflected XSS
Insecure Deserialization
Schaut es euch selber an. Sprengt den Rahmen für heute Abend.
Known Vulnerabilities
Die verwendete JWT Lib ist verwundbar (siehe package.json)
Tools
Präsentation
Tools und Resourcen während der Präsentation:
Pipeline Tools
Folgende Tools können in euer Build/Deployment Pipeline eingebaut werden und helfen die gängigsten Fehler zu finden:
Tool | Beschreibung |
---|---|
Dependabot | Dependabot schickt euch automatisch PRs für neue Versionen eurer Dependencies |
TestSSL.sh | CLI zum scannen von TLS Settings eines Hosts. Quasi Qualys SSL als CLI. |
GitLeak | Erkennt commited secrets und haut euch auf die Finger |
npm Audit | Dependency Check für NPM |
yarn Audit | Dependency Check für yarn |
OWASP Dependency Check | Dependency Check von OWASP |
Vulnerability Scanning und Pentesting
Folgende Tools können euch helfen Schwachstellen in eurer App zu entdecken. Auch ohne fortgeschrittene Hacking-Tricks:
Tool | Beschreibung |
---|---|
NMap | CLI für NetzwerkScans, inkl. Port & OS Erkennung |
OpenVAS | OpenSource Vulnerability Scanner. Gibts auch als CLI afaik. |
OWASP Zed Attack Proxy | Proxy für den lokalen Test |
Shodan.io | Suchmaschine für kaputte Hosts im Internet (Webcams, Raspi, etc.) |
Andere Tools/Links
- Threagile Agile Thread Modeling
- Evil User Stories Als ein Angreifer kann ich böse Sachen in die URL schreiben und somit auf Dinge zugreifen oder deine User angreifen.
- Cyber Security Evaluation Tool der CISA