Cloud Application Security in Python for AWS


Course Number: SEC-142
Duration: 5 days (32.5 hours)
Format: Live, hands-on

Cloud Application Security Training Overview

This in-person or online Cloud Application Security in Python for AWS training course teaches developers how to ensure the security of their Python applications on the AWS platform. Participants learn how to avoid the security pitfalls of the Python programming language and the AWS cloud platform.

Location and Pricing

Accelebrate offers instructor-led enterprise training for groups of 3 or more online or at your site. Most Accelebrate classes can be flexibly scheduled for your group, including delivery in half-day segments across a week or set of weeks. To receive a customized proposal and price quote for private corporate training on-site or online, please contact us.

In addition, some courses are available as live, instructor-led training from one of our partners.

Objectives

  • Understand cloud security specialties
  • Get familiar with essential cyber security concepts
  • Understand how cryptography supports security
  • Use cryptographic APIs correctly in Python
  • Understand Web application security issues
  • Master the OWASP Top Ten elements
  • Put Web application security in the context of Python
  • Go beyond the low hanging fruits
  • Manage vulnerabilities in third-party components
  • Deal with cloud infrastructure security
  • Incorporate input validation approaches and principles
  • Identify vulnerabilities and their consequences
  • Apply security best practices in Python

Prerequisites

All attendees must have general Python and web development experience.

Outline

Expand All | Collapse All

Introduction
Cyber Security Basics
  • What is security?
  • Threat and risk
  • Cyber security threat types – the CIA triad
  • Cyber security threat types – the STRIDE model
  • Consequences of insecure software
  • Cloud security basics
    • Cloud infrastructure basics
    • The Cloud Cube Model and Zero Trust Architecture
Introducing the OWASP Top 10
A01 – Broken Access Control
  • Access control basics
  • Failure to restrict URL access
  • Confused deputy
    • Insecure direct object reference (IDOR)
    • Lab – Insecure Direct Object Reference
    • Authorization bypass through user-controlled keys
    • Case study – Authorization bypass on Facebook
    • Horizontal authorization
  • File upload
    • Unrestricted file upload
    • Good practices
    • Unrestricted file upload
  • Open redirects and forwards
    • Case study – Unvalidated redirect at Epic Games
    • Open redirects and forwards – best practices
  • Cross-site Request Forgery (CSRF)
    • Cross-site Request Forgery
    • CSRF best practices
    • CSRF defense in depth
    • CSRF protection with tokens
A02 – Cryptographic Failures
  • Cryptography for developers
    • Confidentiality protection
  • Certificates
    • Certificates and PKI
    • X.509 certificates
    • Chain of trust
    • PKI actors and procedures
    • PGP – Web of Trust
    • Certificate revocation
  • Transport security
    • Transport security weaknesses
    • The TLS protocol
A03 – Injection
  • Injection principles
  • Injection attacks
  • SQL injection
  • SQL injection basics
    • SQL injection
    • Attack techniques
    • Content-based blind SQL injection
    • Time-based blind SQL injection
  • NoSQL injection
    • NoSQL injection basics
    • NoSQL injection in MongoDB
    • NoSQL injection in DynamoDB
  • SQL injection best practices
    • Input validation
    • Parameterized queries
    • Using prepared statements
    • Additional considerations
    • Case study – Hacking Fortnite accounts
  • Code injection
    • Code injection via input()
    • OS command injection
  • HTML injection – Cross-site scripting (XSS)
    • Cross-site scripting basics
    • Cross-site scripting types
    • Stored XSS
    • Reflected XSS
    • Case study – XSS in Fortnite accounts
  • XSS protection best practices
A04 – Insecure Design
  • The STRIDE model of threats
    • Secure design principles of Saltzer and Schroeder
    • Economy of mechanism
    • Fail-safe defaults
    • Complete mediation
    • Open design
    • Separation of privilege
    • Least privilege
    • Least common mechanism
    • Psychological acceptability
  • Client-side security
    • Frame sandboxing
A05 – Security Misconfiguration
  • Cookie security
    • Cookie attributes
  • XML entities
    • DTD and the entities
    • Entity expansion
    • Billion laughs attack
    • External Entity Attack (XXE)
A06 – Vulnerable and Outdated Components
  • Using vulnerable components
  • Untrusted functionality import
  • Malicious packages in Python
  • Vulnerability management
    • Patch management
    • Vulnerability databases
A07 – Identification and Authentication Failures
  • Authentication
    • Authentication basics
    • Multi-factor authentication
    • Case study – PayPal 2FA bypass
  • Session management
    • Session management essentials
    • Why do we protect session IDs – Session hijacking
    • Session fixation
    • Session handling in Flask
  • Single sign-on (SSO)
    • Single sign-on concept
    • OAuth 2.0
    • SAML
  • Identity and access management in AWS
    • Groups, roles, and credentials
    • Access tokensIdentity and access management (IAM)
  • Password management
    • Inbound password management
    • Outbound password management
A08 – Software and Data Integrity Failures
  • Integrity protection
    • Message Authentication Code (MAC)
    • Digital signature
  • Subresource integrity
    • Importing JavaScript
    • Lab – Importing JavaScript
    • Case study – The British Airways data breach
  • Insecure deserialization
    • Serialization and deserialization challenges
    • Integrity – deserializing untrusted streams
    • Deserialization with pickle
    • PyYAML deserialization challenges
    • Integrity – deserialization best practicesA09 – Security Logging and Monitoring Failures
A09 – Security Logging and Monitoring Failures
  • Logging and monitoring principles
  • Insufficient logging
  • Case study – Plaintext passwords at Facebook
  • Logging best practices
  • Monitoring best practices
  • Detection and monitoring
    • Utilizing AWS monitoring for security
    • Protecting logs
    • The AWS Security Hub
A10 – Server-Side Request Forgery (SSRF)
  • Server-side Request Forgery (SSRF)
  • Case study – SSRF and the Capital One breach
Cloud  Security
  • AWS security
    • Security considerations
  • Container security
    • Container security concerns
    • Containerization, virtualization and security
    • The attack surface
    • Docker security
    • Kubernetes security
  • Data security in the cloud
    • Data confidentiality and integrity in the cloud
    • Data privacy in the cloud
    • Compliance considerations
    • Data security in AWS
    • Policies
    • Storing cryptographic keys
    • Protecting data at rest
    • Protecting data in transit
    • JSON security
Web Application Security Beyond the Top Ten
  • Code quality
    • Language elements
    • Object-oriented programming pitfalls
  • Denial of service
    • Flooding
    • Resource exhaustion
    • Sustained client engagement
    • Infinite loop
    • Economic Denial of Sustainability (EDoS)
    • Algorithm complexity issues
Input validation
  • Input validation principles
  • Denylists and allowlists
  • What to validate – the attack surface
  • Where to validate – defense in depth
  • When to validate – validation vs transformations
  • Output sanitization
  • Encoding challenges
  • Unicode challenges
  • Validation with regex
  • Integer handling problems
    • Representing signed numbers
    • Integer visualization
    • Integers in Python
    • Integer overflow
    • Integer overflows in ctypes and NumPy
  • Files and streams
    • Path traversal
    • Path traversal-related examples
    • Additional challenges in Windows
    • Virtual resources
    • Path traversal best practices
    • Path canonicalization
  • Format string issues
  • Unsafe native code
    • Native code dependence
    • Best practices for dealing with native code
Conclusion
  • Secure coding principles
    • Principles of robust programming by Matt Bishop
  • And now what?
    • Software security sources and further reading
    • Python resources

Training Materials

All Application Security training attendees receive comprehensive courseware.

Software Requirements

Attendees will not need to install any software on their computer for this class. The class will be conducted in a remote environment that Accelebrate will provide; students will only need a local computer with a web browser and a stable Internet connection. Any recent version of Microsoft Edge, Mozilla Firefox, or Google Chrome will be fine.



Learn faster

Our live, instructor-led lectures are far more effective than pre-recorded classes

Satisfaction guarantee

If your team is not 100% satisfied with your training, we do what's necessary to make it right

Learn online from anywhere

Whether you are at home or in the office, we make learning interactive and engaging

Multiple Payment Options

We accept check, ACH/EFT, major credit cards, and most purchase orders



Recent Training Locations

Alabama

Birmingham

Huntsville

Montgomery

Alaska

Anchorage

Arizona

Phoenix

Tucson

Arkansas

Fayetteville

Little Rock

California

Los Angeles

Oakland

Orange County

Sacramento

San Diego

San Francisco

San Jose

Colorado

Boulder

Colorado Springs

Denver

Connecticut

Hartford

DC

Washington

Florida

Fort Lauderdale

Jacksonville

Miami

Orlando

Tampa

Georgia

Atlanta

Augusta

Savannah

Hawaii

Honolulu

Idaho

Boise

Illinois

Chicago

Indiana

Indianapolis

Iowa

Cedar Rapids

Des Moines

Kansas

Wichita

Kentucky

Lexington

Louisville

Louisiana

New Orleans

Maine

Portland

Maryland

Annapolis

Baltimore

Frederick

Hagerstown

Massachusetts

Boston

Cambridge

Springfield

Michigan

Ann Arbor

Detroit

Grand Rapids

Minnesota

Minneapolis

Saint Paul

Mississippi

Jackson

Missouri

Kansas City

St. Louis

Nebraska

Lincoln

Omaha

Nevada

Las Vegas

Reno

New Jersey

Princeton

New Mexico

Albuquerque

New York

Albany

Buffalo

New York City

White Plains

North Carolina

Charlotte

Durham

Raleigh

Ohio

Akron

Canton

Cincinnati

Cleveland

Columbus

Dayton

Oklahoma

Oklahoma City

Tulsa

Oregon

Portland

Pennsylvania

Philadelphia

Pittsburgh

Rhode Island

Providence

South Carolina

Charleston

Columbia

Greenville

Tennessee

Knoxville

Memphis

Nashville

Texas

Austin

Dallas

El Paso

Houston

San Antonio

Utah

Salt Lake City

Virginia

Alexandria

Arlington

Norfolk

Richmond

Washington

Seattle

Tacoma

West Virginia

Charleston

Wisconsin

Madison

Milwaukee

Alberta

Calgary

Edmonton

British Columbia

Vancouver

Manitoba

Winnipeg

Nova Scotia

Halifax

Ontario

Ottawa

Toronto

Quebec

Montreal

Puerto Rico

San Juan