AWS Lambda and Serverless
Lectures 69 • 40 slides
Narration
Session 69 Slide 1: Security Basics: Secure Web Applications
mindmap
root((Security Basics))
XSS対策
CSRF対策
SQLインジェクション対策
JWT認証
Review of the previous session
Session 28: Introduction to Docker
- Basic Concepts of Container Technology: Differences from virtualization, advantages of containers
- Basic Docker Operations: Creating and managing images and containers
- Dockerfile: How to create custom images
- Docker Compose: Collaborative management of multiple containers
# Example of commands learned last time
docker build -t myapp .
docker-compose up -dWhat you will learn this time
In this lecture, you will systematically learn about Web application security.
Learning Topics
- XSS (Cross-Site Scripting) Countermeasures
- CSRF (Cross-Site Request Forgery) Countermeasures
- SQL Injection Countermeasures
- Implementation of JWT Authentication (Newly Added)
1/40