8340  Reviews star_rate star_rate star_rate star_rate star_half

Cloud Application Security in C# for Azure

This in-person or online Cloud Application Security in C# for Azure training course teaches developers how to ensure the security of their C# applications on the Azure platform. Participants learn...

Read More
Duration 5 days
Course Code SEC-146
Available Formats Classroom

Overview

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

Note: To ensure ample one-on-one engagement with the instructor, this class is capped at 12 people, overriding Ascendient Learning’s default cap of 15.

Skills Gained

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

Prerequisites

All students must have general knowledge of C# and web development.

Course Details

Training Materials

All Application Security training attendees receive comprehensive courseware.

Software Requirements

Attendees will not need to install any software on their computers for this class. The class will be conducted in a remote environment that Ascendient Learning 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 work well.

Outline

  • 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
      • Case study – ChaosDB vulnerability in Azure Cosmos DB
  • 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
      • Lab – Billion laughs attack
      • External Entity Attack (XXE)
  • A06 – Vulnerable and Outdated Components
    • Using vulnerable components
    • Untrusted functionality import
    • Malicious packages in Java
    • 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 Azure
      • 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
      • 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 practices
  • 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 Azure monitoring for security
      • Protecting logs
      • The Azure Security Hub
  • A10 – Server-Side Request Forgery (SSRF)
    • Server-side Request Forgery (SSRF)
    • Case study – SSRF and the Capital One breach
  • Cloud  Security
    • Azure security
      • Security considerations for Azure
    • Container security
      • Container security concerns
      • Containerization, virtualization and security
      • The attack surface
      • Docker security
    • Kubernetes security
      • The Kubernetes architecture and security
      • Securing Kubernetes hosts
      • Best practices for Kubernetes access control
      • Building secure Kubernetes images
      • Secure deployment of Kubernetes containers
      • Protecting Kubernetes deployments at runtime
      • Case study – Azurescape
    • Data security in the cloud
      • Data confidentiality and integrity in the cloud
      • Data privacy in the cloud
      • Compliance considerations
      • Data security in Azure
      • Storing cryptographic keys
      • Protecting data at rest
      • Protecting data in transit
      • JSON security
  • Web application security beyond the Top Ten
    • Code quality
      • Data handling
      • Initialization and cleanup
      • Object-oriented programming pitfalls
  • Denial of service
    • Flooding
    • Resource exhaustion
    • Sustained client engagement
    • 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
    • Validation with regex
    • Integer handling problems
      • Representing signed numbers
      • Integer visualization
      • Integer overflow
      • Signed / unsigned confusion
      • Case study – The Stockholm Stock Exchange
      • Integer truncation
      • Best practices
    • Files and streams
      • Path traversal
      • Lab – Path traversal
      • Path traversal-related examples
      • Additional challenges in Windows
      • Virtual resources
      • Path traversal best practices
      • Lab – Path canonicalization
    • Unsafe reflection
      • Reflection without validation
      • Lab – Unsafe reflection
    • 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
      • .NET and C# resources
  • Conclusion

Schedule

FAQ

Does the course schedule include a Lunchbreak?

Classes typically include a 1-hour lunch break around midday. However, the exact break times and duration can vary depending on the specific class. Your instructor will provide detailed information at the start of the course.

What languages are used to deliver training?

Most courses are conducted in English, unless otherwise specified. Some courses will have the word "FRENCH" marked in red beside the scheduled date(s) indicating the language of instruction.

What does GTR stand for?

GTR stands for Guaranteed to Run; if you see a course with this status, it means this event is confirmed to run. View our GTR page to see our full list of Guaranteed to Run courses.

Does Ascendient Learning deliver group training?

Yes, we provide training for groups, individuals and private on sites. View our group training page for more information.

What does vendor-authorized training mean?

As a vendor-authorized training partner, we offer a curriculum that our partners have vetted. We use the same course materials and facilitate the same labs as our vendor-delivered training. These courses are considered the gold standard and, as such, are priced accordingly.

Is the training too basic, or will you go deep into technology?

It depends on your requirements, your role in your company, and your depth of knowledge. The good news about many of our learning paths, you can start from the fundamentals to highly specialized training.

How up-to-date are your courses and support materials?

We continuously work with our vendors to evaluate and refresh course material to reflect the latest training courses and best practices.

Are your instructors seasoned trainers who have deep knowledge of the training topic?

Ascendient Learning instructors have an average of 27 years of practical IT experience and have also served as consultants for an average of 15 years. To stay current, instructors spend at least 25 percent of their time learning new, emerging technologies and courses.

Do you provide hands-on training and exercises in an actual lab environment?

Lab access is dependent on the vendor and the type of training you sign up for. However, many of our top vendors will provide lab access to students to test and practice. The course description will specify lab access.

Will you customize the training for our company’s specific needs and goals?

We will work with you to identify training needs and areas of growth.  We offer a variety of training methods, such as private group training, on-site of your choice, and virtually. We provide courses and certifications that are aligned with your business goals.

How do I get started with certification?

Getting started on a certification pathway depends on your goals and the vendor you choose to get certified in. Many vendors offer entry-level IT certification to advanced IT certification that can boost your career. To get access to certification vouchers and discounts, please contact info@ascendientlearning.com.

Will I get access to content after I complete a course?

You will get access to the PDF of course books and guides, but access to the recording and slides will depend on the vendor and type of training you receive.

How do I request a W9 for Ascendient Learning?

View our filing status and how to request a W9.

Reviews

ExitCertified provided a very organized way to learn and provided materials to follow along.

my experince was great from the day i regetered to the actuall day of the class.

Class was very informative, although one lab didnt but will try again later

Quick to sign-up to course, and was able to garner some information from the course.

Overall experiance is very nice. the online training plateform is very advance.