Injection
Everything on SkillVeris tagged Injection — collected across the glossary, study notes, blog, and cheat sheets.
17 resources across 2 libraries
Study Notes(16)
Dependency Injection in MVVM
How MVVM ViewModels receive their collaborators — data services, navigation, dialogs — via constructor injection instead of creating them directly, and why tha…
Dependency Injection in .NET
How .NET Core's built-in DI container registers, resolves, and manages the lifetime of application services.
Dependency Injection in Blazor
Learn how Blazor's built-in DI container registers and resolves services, and how lifetimes affect component behavior.
Dependency Injection Basics
How ASP.NET Core's built-in dependency injection container registers and supplies services throughout your application.
Dependency Injection
Understand how .NET MAUI's built-in dependency injection container wires up services, view models, and pages via MauiProgram.cs.
Command Injection
Understand how command injection lets attackers execute arbitrary operating system commands through vulnerable application inputs, and why it's often more dang…
Preventing SQL Injection
A practical guide to the defenses that actually stop SQL Injection: parameterized queries, safe ORM usage, input validation, least privilege, and WAFs.
SQL Injection Explained
Learn how attackers manipulate SQL queries by injecting malicious input, and why this remains one of the most dangerous web application vulnerabilities.
Dependency Injection Explained
Learn how Spring's IoC container supplies objects with the collaborators they need, instead of letting objects build those collaborators themselves.
SQL Injection
How unsanitized input can hijack a database query, and why parameterized queries are the essential defense.
Dependency Injection with Hilt
Hilt is Android's recommended dependency injection library built on Dagger, providing standard components and annotations that wire dependencies into Activitie…
Dependency Injection in SwiftUI
Learn how to supply view models and services to SwiftUI views through initializers and the environment, keeping views testable and decoupled from concrete impl…
PHP Security Basics
Core security practices every PHP developer must apply — input validation, output escaping, safe database access, and secure session handling.
Prepared Statements and SQL Injection
Understand how SQL injection attacks work and how parameterized prepared statements in PDO eliminate them by separating SQL structure from user data.
Dependency Injection Basics
Understand how dependency injection decouples classes from their collaborators, and how the built-in .NET DI container manages object lifetimes.
Hierarchical Dependency Injection
Understand how Angular's injectors form a tree mirroring the component hierarchy, how token resolution walks up that tree, and how to scope service instances d…