├── .gitattributes ├── 9781484260166.jpg ├── Advanced.Security.V3.csproj ├── Advanced.Security.V3.csproj.user ├── Advanced.Security.V3.sln ├── AntiCSRF ├── CSRFExpirationCheck.cs ├── CSRFNonceCheck.cs └── CSRFTokenCheck.cs ├── Areas └── Identity │ ├── IdentityHostingStartup.cs │ └── Pages │ ├── Account │ ├── AccessDenied.cshtml │ ├── AccessDenied.cshtml.cs │ ├── ConfirmEmail.cshtml │ ├── ConfirmEmail.cshtml.cs │ ├── ConfirmEmailChange.cshtml │ ├── ConfirmEmailChange.cshtml.cs │ ├── ExternalLogin.cshtml │ ├── ExternalLogin.cshtml.cs │ ├── ForgotPassword.cshtml │ ├── ForgotPassword.cshtml.cs │ ├── ForgotPasswordConfirmation.cshtml │ ├── ForgotPasswordConfirmation.cshtml.cs │ ├── Lockout.cshtml │ ├── Lockout.cshtml.cs │ ├── Login.cshtml │ ├── Login.cshtml.cs │ ├── LoginWith2fa.cshtml │ ├── LoginWith2fa.cshtml.cs │ ├── LoginWithRecoveryCode.cshtml │ ├── LoginWithRecoveryCode.cshtml.cs │ ├── Logout.cshtml │ ├── Logout.cshtml.cs │ ├── Manage │ │ ├── ChangePassword.cshtml │ │ ├── ChangePassword.cshtml.cs │ │ ├── DeletePersonalData.cshtml │ │ ├── DeletePersonalData.cshtml.cs │ │ ├── Disable2fa.cshtml │ │ ├── Disable2fa.cshtml.cs │ │ ├── DownloadPersonalData.cshtml │ │ ├── DownloadPersonalData.cshtml.cs │ │ ├── Email.cshtml │ │ ├── Email.cshtml.cs │ │ ├── EnableAuthenticator.cshtml │ │ ├── EnableAuthenticator.cshtml.cs │ │ ├── ExternalLogins.cshtml │ │ ├── ExternalLogins.cshtml.cs │ │ ├── GenerateRecoveryCodes.cshtml │ │ ├── GenerateRecoveryCodes.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── ManageNavPages.cs │ │ ├── PersonalData.cshtml │ │ ├── PersonalData.cshtml.cs │ │ ├── ResetAuthenticator.cshtml │ │ ├── ResetAuthenticator.cshtml.cs │ │ ├── SetPassword.cshtml │ │ ├── SetPassword.cshtml.cs │ │ ├── ShowRecoveryCodes.cshtml │ │ ├── ShowRecoveryCodes.cshtml.cs │ │ ├── TwoFactorAuthentication.cshtml │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ ├── _Layout.cshtml │ │ ├── _ManageNav.cshtml │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ ├── Register.cshtml │ ├── Register.cshtml.cs │ ├── RegisterConfirmation.cshtml │ ├── RegisterConfirmation.cshtml.cs │ ├── ResendEmailConfirmation.cshtml │ ├── ResendEmailConfirmation.cshtml.cs │ ├── ResetPassword.cshtml │ ├── ResetPassword.cshtml.cs │ ├── ResetPasswordConfirmation.cshtml │ ├── ResetPasswordConfirmation.cshtml.cs │ ├── _StatusMessage.cshtml │ └── _ViewImports.cshtml │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Authentication ├── CustomSignInManager.cs ├── CustomUserManager.cs ├── CustomUserStore.cs ├── SessionTokenCookieEvents.cs └── SessionTokenCookieOptions.cs ├── Authorization ├── MinimumAccessLevelHandler.cs └── MinimumAccessLevelRequirement.cs ├── Contributing.md ├── Controllers ├── CryptographyController.cs ├── HomeController.cs └── MvcController.cs ├── Cryptography ├── Asymmetric │ └── Signature.cs ├── BaseCryptographyItem.cs ├── CryptoStoreSimulator.cs ├── Hashing │ ├── Hasher.cs │ ├── IHasher.cs │ ├── SHA2_512.cs │ └── SHA3.cs ├── ICryptoStoreSimulator.cs ├── ISecretStore.cs ├── SecretStore.cs └── Symmetric │ ├── AES128_CBC.cs │ ├── AES_CTR.cs │ ├── ISymmetricEncryptor.cs │ └── SymmetricEncryptor.cs ├── Data ├── Filters │ ├── ExtensionMethods.cs │ ├── ItemNotInUserContextException.cs │ └── UserFilterableAttribute.cs ├── PIIStorage │ ├── AspNetUsers.cs │ └── PiiDbContext.cs ├── Primary │ ├── ApplicationDbContext.cs │ ├── CsrfToken.cs │ ├── Food.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── PasswordHistory.cs │ ├── SecurityEventLog.cs │ └── UserSession.cs └── Validation │ ├── ImageFile.cs │ └── IsValidAge.cs ├── Headers └── CustomHeaderAttribute.cs ├── LICENSE.txt ├── Logging ├── ISecurityLogger.cs ├── SecurityEvent.cs ├── SecurityEventType.cs └── SecurityLogger.cs ├── Models ├── ErrorViewModel.cs ├── FileUploadModel.cs └── SampleModel.cs ├── Pages ├── CSPNonceTest.cshtml ├── CSPNonceTest.cshtml.cs ├── Razor │ ├── SampleForm.cshtml │ └── SampleForm.cshtml.cs ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Properties ├── launchSettings.json ├── serviceDependencies.json ├── serviceDependencies.local.json └── serviceDependencies.local.json.user ├── README.md ├── ResourceFilters └── HoneypotAttribute.cs ├── ScaffoldingReadMe.txt ├── Startup.cs ├── Views ├── Cryptography │ ├── Encrypt.cshtml │ └── Hash.cshtml ├── Home │ ├── Administrator.cshtml │ ├── Auth.cshtml │ ├── CustomErrorPage.cshtml │ ├── Error.cshtml │ ├── FalseLogin.cshtml │ ├── Forms.cshtml │ ├── Index.cshtml │ ├── Manager.cshtml │ ├── MinimumAccessLevelManager.cshtml │ ├── Privacy.cshtml │ ├── Query.cshtml │ ├── RequireAuthorship.cshtml │ ├── Sql.cshtml │ └── ViewOrder.cshtml ├── Mvc │ ├── FileUpload.cshtml │ └── SampleForm.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp3.1 │ ├── Advanced.Security.V3.StaticWebAssets.xml │ ├── Advanced.Security.V3.Views.dll │ ├── Advanced.Security.V3.Views.pdb │ ├── Advanced.Security.V3.deps.json │ ├── Advanced.Security.V3.dll │ ├── Advanced.Security.V3.exe │ ├── Advanced.Security.V3.pdb │ ├── Advanced.Security.V3.runtimeconfig.dev.json │ ├── Advanced.Security.V3.runtimeconfig.json │ ├── BouncyCastle.Crypto.dll │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ ├── Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ ├── Microsoft.AspNetCore.Identity.UI.Views.V3.dll │ ├── Microsoft.AspNetCore.Identity.UI.Views.V4.dll │ ├── Microsoft.AspNetCore.Identity.UI.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ ├── Microsoft.Extensions.Identity.Core.dll │ ├── Microsoft.Extensions.Identity.Stores.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json │ ├── System.Collections.Immutable.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ └── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x86 │ │ └── native │ │ │ └── sni.dll │ └── win │ │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ ├── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll ├── obj ├── Advanced.Security.V3.csproj.nuget.dgspec.json ├── Advanced.Security.V3.csproj.nuget.g.props ├── Advanced.Security.V3.csproj.nuget.g.targets ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Advanced.Security.V3.AssemblyInfo.cs │ │ ├── Advanced.Security.V3.AssemblyInfoInputs.cache │ │ ├── Advanced.Security.V3.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Advanced.Security.V3.MvcApplicationPartsAssemblyInfo.cs │ │ ├── Advanced.Security.V3.RazorAssemblyInfo.cache │ │ ├── Advanced.Security.V3.RazorAssemblyInfo.cs │ │ ├── Advanced.Security.V3.RazorCoreGenerate.cache │ │ ├── Advanced.Security.V3.RazorTargetAssemblyInfo.cache │ │ ├── Advanced.Security.V3.RazorTargetAssemblyInfo.cs │ │ ├── Advanced.Security.V3.TagHelpers.input.cache │ │ ├── Advanced.Security.V3.TagHelpers.output.cache │ │ ├── Advanced.Security.V3.Views.dll │ │ ├── Advanced.Security.V3.Views.pdb │ │ ├── Advanced.Security.V3.assets.cache │ │ ├── Advanced.Security.V3.csproj.CopyComplete │ │ ├── Advanced.Security.V3.csproj.CoreCompileInputs.cache │ │ ├── Advanced.Security.V3.csproj.FileListAbsolute.txt │ │ ├── Advanced.Security.V3.csprojAssemblyReference.cache │ │ ├── Advanced.Security.V3.dll │ │ ├── Advanced.Security.V3.exe │ │ ├── Advanced.Security.V3.genruntimeconfig.cache │ │ ├── Advanced.Security.V3.pdb │ │ ├── Razor │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml.g.cs │ │ │ │ ├── ConfirmEmail.cshtml.g.cs │ │ │ │ ├── ConfirmEmailChange.cshtml.g.cs │ │ │ │ ├── ExternalLogin.cshtml.g.cs │ │ │ │ ├── ForgotPassword.cshtml.g.cs │ │ │ │ ├── ForgotPasswordConfirmation.cshtml.g.cs │ │ │ │ ├── Lockout.cshtml.g.cs │ │ │ │ ├── Login.cshtml.g.cs │ │ │ │ ├── LoginWith2fa.cshtml.g.cs │ │ │ │ ├── LoginWithRecoveryCode.cshtml.g.cs │ │ │ │ ├── Logout.cshtml.g.cs │ │ │ │ ├── Manage │ │ │ │ │ ├── ChangePassword.cshtml.g.cs │ │ │ │ │ ├── DeletePersonalData.cshtml.g.cs │ │ │ │ │ ├── Disable2fa.cshtml.g.cs │ │ │ │ │ ├── DownloadPersonalData.cshtml.g.cs │ │ │ │ │ ├── Email.cshtml.g.cs │ │ │ │ │ ├── EnableAuthenticator.cshtml.g.cs │ │ │ │ │ ├── ExternalLogins.cshtml.g.cs │ │ │ │ │ ├── GenerateRecoveryCodes.cshtml.g.cs │ │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ │ ├── PersonalData.cshtml.g.cs │ │ │ │ │ ├── ResetAuthenticator.cshtml.g.cs │ │ │ │ │ ├── SetPassword.cshtml.g.cs │ │ │ │ │ ├── ShowRecoveryCodes.cshtml.g.cs │ │ │ │ │ ├── TwoFactorAuthentication.cshtml.g.cs │ │ │ │ │ ├── _Layout.cshtml.g.cs │ │ │ │ │ ├── _ManageNav.cshtml.g.cs │ │ │ │ │ ├── _StatusMessage.cshtml.g.cs │ │ │ │ │ └── _ViewImports.cshtml.g.cs │ │ │ │ ├── Register.cshtml.g.cs │ │ │ │ ├── RegisterConfirmation.cshtml.g.cs │ │ │ │ ├── ResendEmailConfirmation.cshtml.g.cs │ │ │ │ ├── ResetPassword.cshtml.g.cs │ │ │ │ ├── ResetPasswordConfirmation.cshtml.g.cs │ │ │ │ ├── _StatusMessage.cshtml.g.cs │ │ │ │ └── _ViewImports.cshtml.g.cs │ │ │ │ ├── Error.cshtml.g.cs │ │ │ │ ├── _ValidationScriptsPartial.cshtml.g.cs │ │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ │ └── _ViewStart.cshtml.g.cs │ │ ├── Pages │ │ │ ├── CSPNonceTest.cshtml.g.cs │ │ │ ├── Razor │ │ │ │ └── SampleForm.cshtml.g.cs │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ └── _ViewStart.cshtml.g.cs │ │ └── Views │ │ │ ├── Cryptography │ │ │ ├── Encrypt.cshtml.g.cs │ │ │ └── Hash.cshtml.g.cs │ │ │ ├── Home │ │ │ ├── Administrator.cshtml.g.cs │ │ │ ├── Auth.cshtml.g.cs │ │ │ ├── CustomErrorPage.cshtml.g.cs │ │ │ ├── Error.cshtml.g.cs │ │ │ ├── FalseLogin.cshtml.g.cs │ │ │ ├── Forms.cshtml.g.cs │ │ │ ├── Index.cshtml.g.cs │ │ │ ├── Manager.cshtml.g.cs │ │ │ ├── MinimumAccessLevelManager.cshtml.g.cs │ │ │ ├── Privacy.cshtml.g.cs │ │ │ ├── Query.cshtml.g.cs │ │ │ ├── RequireAuthorship.cshtml.g.cs │ │ │ ├── Sql.cshtml.g.cs │ │ │ └── ViewOrder.cshtml.g.cs │ │ │ ├── Mvc │ │ │ ├── FileUpload.cshtml.g.cs │ │ │ └── SampleForm.cshtml.g.cs │ │ │ ├── Shared │ │ │ ├── Error.cshtml.g.cs │ │ │ ├── _Layout.cshtml.g.cs │ │ │ ├── _LoginPartial.cshtml.g.cs │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ └── _ViewStart.cshtml.g.cs │ │ └── staticwebassets │ │ ├── Advanced.Security.V3.StaticWebAssets.Manifest.cache │ │ └── Advanced.Security.V3.StaticWebAssets.xml ├── project.assets.json └── project.nuget.cache └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484260166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/9781484260166.jpg -------------------------------------------------------------------------------- /Advanced.Security.V3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Advanced.Security.V3.csproj -------------------------------------------------------------------------------- /Advanced.Security.V3.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Advanced.Security.V3.csproj.user -------------------------------------------------------------------------------- /Advanced.Security.V3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Advanced.Security.V3.sln -------------------------------------------------------------------------------- /AntiCSRF/CSRFExpirationCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/AntiCSRF/CSRFExpirationCheck.cs -------------------------------------------------------------------------------- /AntiCSRF/CSRFNonceCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/AntiCSRF/CSRFNonceCheck.cs -------------------------------------------------------------------------------- /AntiCSRF/CSRFTokenCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/AntiCSRF/CSRFTokenCheck.cs -------------------------------------------------------------------------------- /Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Lockout.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Lockout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Lockout.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Logout.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Email.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Email.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Email.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Index.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/RegisterConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Account/_StatusMessage.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Advanced.Security.V3.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /Areas/Identity/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Error.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Authentication/CustomSignInManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authentication/CustomSignInManager.cs -------------------------------------------------------------------------------- /Authentication/CustomUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authentication/CustomUserManager.cs -------------------------------------------------------------------------------- /Authentication/CustomUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authentication/CustomUserStore.cs -------------------------------------------------------------------------------- /Authentication/SessionTokenCookieEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authentication/SessionTokenCookieEvents.cs -------------------------------------------------------------------------------- /Authentication/SessionTokenCookieOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authentication/SessionTokenCookieOptions.cs -------------------------------------------------------------------------------- /Authorization/MinimumAccessLevelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authorization/MinimumAccessLevelHandler.cs -------------------------------------------------------------------------------- /Authorization/MinimumAccessLevelRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Authorization/MinimumAccessLevelRequirement.cs -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Contributing.md -------------------------------------------------------------------------------- /Controllers/CryptographyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Controllers/CryptographyController.cs -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Controllers/MvcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Controllers/MvcController.cs -------------------------------------------------------------------------------- /Cryptography/Asymmetric/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Asymmetric/Signature.cs -------------------------------------------------------------------------------- /Cryptography/BaseCryptographyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/BaseCryptographyItem.cs -------------------------------------------------------------------------------- /Cryptography/CryptoStoreSimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/CryptoStoreSimulator.cs -------------------------------------------------------------------------------- /Cryptography/Hashing/Hasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Hashing/Hasher.cs -------------------------------------------------------------------------------- /Cryptography/Hashing/IHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Hashing/IHasher.cs -------------------------------------------------------------------------------- /Cryptography/Hashing/SHA2_512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Hashing/SHA2_512.cs -------------------------------------------------------------------------------- /Cryptography/Hashing/SHA3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Hashing/SHA3.cs -------------------------------------------------------------------------------- /Cryptography/ICryptoStoreSimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/ICryptoStoreSimulator.cs -------------------------------------------------------------------------------- /Cryptography/ISecretStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/ISecretStore.cs -------------------------------------------------------------------------------- /Cryptography/SecretStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/SecretStore.cs -------------------------------------------------------------------------------- /Cryptography/Symmetric/AES128_CBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Symmetric/AES128_CBC.cs -------------------------------------------------------------------------------- /Cryptography/Symmetric/AES_CTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Symmetric/AES_CTR.cs -------------------------------------------------------------------------------- /Cryptography/Symmetric/ISymmetricEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Symmetric/ISymmetricEncryptor.cs -------------------------------------------------------------------------------- /Cryptography/Symmetric/SymmetricEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Cryptography/Symmetric/SymmetricEncryptor.cs -------------------------------------------------------------------------------- /Data/Filters/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Filters/ExtensionMethods.cs -------------------------------------------------------------------------------- /Data/Filters/ItemNotInUserContextException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Filters/ItemNotInUserContextException.cs -------------------------------------------------------------------------------- /Data/Filters/UserFilterableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Filters/UserFilterableAttribute.cs -------------------------------------------------------------------------------- /Data/PIIStorage/AspNetUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/PIIStorage/AspNetUsers.cs -------------------------------------------------------------------------------- /Data/PIIStorage/PiiDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/PIIStorage/PiiDbContext.cs -------------------------------------------------------------------------------- /Data/Primary/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Data/Primary/CsrfToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/CsrfToken.cs -------------------------------------------------------------------------------- /Data/Primary/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/Food.cs -------------------------------------------------------------------------------- /Data/Primary/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/Order.cs -------------------------------------------------------------------------------- /Data/Primary/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/OrderDetail.cs -------------------------------------------------------------------------------- /Data/Primary/PasswordHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/PasswordHistory.cs -------------------------------------------------------------------------------- /Data/Primary/SecurityEventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/SecurityEventLog.cs -------------------------------------------------------------------------------- /Data/Primary/UserSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Primary/UserSession.cs -------------------------------------------------------------------------------- /Data/Validation/ImageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Validation/ImageFile.cs -------------------------------------------------------------------------------- /Data/Validation/IsValidAge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Data/Validation/IsValidAge.cs -------------------------------------------------------------------------------- /Headers/CustomHeaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Headers/CustomHeaderAttribute.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Logging/ISecurityLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Logging/ISecurityLogger.cs -------------------------------------------------------------------------------- /Logging/SecurityEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Logging/SecurityEvent.cs -------------------------------------------------------------------------------- /Logging/SecurityEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Logging/SecurityEventType.cs -------------------------------------------------------------------------------- /Logging/SecurityLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Logging/SecurityLogger.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Models/FileUploadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Models/FileUploadModel.cs -------------------------------------------------------------------------------- /Models/SampleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Models/SampleModel.cs -------------------------------------------------------------------------------- /Pages/CSPNonceTest.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/CSPNonceTest.cshtml -------------------------------------------------------------------------------- /Pages/CSPNonceTest.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/CSPNonceTest.cshtml.cs -------------------------------------------------------------------------------- /Pages/Razor/SampleForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/Razor/SampleForm.cshtml -------------------------------------------------------------------------------- /Pages/Razor/SampleForm.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/Razor/SampleForm.cshtml.cs -------------------------------------------------------------------------------- /Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Properties/serviceDependencies.local.json.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Properties/serviceDependencies.local.json.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/README.md -------------------------------------------------------------------------------- /ResourceFilters/HoneypotAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/ResourceFilters/HoneypotAttribute.cs -------------------------------------------------------------------------------- /ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/ScaffoldingReadMe.txt -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Startup.cs -------------------------------------------------------------------------------- /Views/Cryptography/Encrypt.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Cryptography/Encrypt.cshtml -------------------------------------------------------------------------------- /Views/Cryptography/Hash.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Cryptography/Hash.cshtml -------------------------------------------------------------------------------- /Views/Home/Administrator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Administrator.cshtml -------------------------------------------------------------------------------- /Views/Home/Auth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Auth.cshtml -------------------------------------------------------------------------------- /Views/Home/CustomErrorPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/CustomErrorPage.cshtml -------------------------------------------------------------------------------- /Views/Home/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Error.cshtml -------------------------------------------------------------------------------- /Views/Home/FalseLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/FalseLogin.cshtml -------------------------------------------------------------------------------- /Views/Home/Forms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Forms.cshtml -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Views/Home/Manager.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Manager.cshtml -------------------------------------------------------------------------------- /Views/Home/MinimumAccessLevelManager.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/MinimumAccessLevelManager.cshtml -------------------------------------------------------------------------------- /Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Views/Home/Query.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Query.cshtml -------------------------------------------------------------------------------- /Views/Home/RequireAuthorship.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/RequireAuthorship.cshtml -------------------------------------------------------------------------------- /Views/Home/Sql.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/Sql.cshtml -------------------------------------------------------------------------------- /Views/Home/ViewOrder.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Home/ViewOrder.cshtml -------------------------------------------------------------------------------- /Views/Mvc/FileUpload.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Mvc/FileUpload.cshtml -------------------------------------------------------------------------------- /Views/Mvc/SampleForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Mvc/SampleForm.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.StaticWebAssets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.StaticWebAssets.xml -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.Views.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.Views.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.deps.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.exe -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Advanced.Security.V3.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Advanced.Security.V3.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.Views.V3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.Views.V3.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.Views.V4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.Views.V4.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Identity.UI.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Embedded.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Embedded.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /obj/Advanced.Security.V3.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Advanced.Security.V3.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/Advanced.Security.V3.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Advanced.Security.V3.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/Advanced.Security.V3.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Advanced.Security.V3.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 61d1e5839d50ed8c00c7ea98f7830b9be5f48aac 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 0426ec8aab769217a2975ca774de22af68ba6af2 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | d6ca56ac2376cffb11d285177d49e17314ff02b4 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | c7cee5f340d4d45fc4beab26355152a989efff1d 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.TagHelpers.output.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.Views.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.Views.pdb -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.assets.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e3e8a50e5f9a6466cc03f7143040511558a67c85 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.exe -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | b91a402b515d7e2657ba282992f347d498f73c47 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Advanced.Security.V3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Advanced.Security.V3.pdb -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/AccessDenied.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/AccessDenied.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ExternalLogin.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ExternalLogin.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ForgotPassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ForgotPassword.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Lockout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Lockout.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Login.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Login.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Logout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Logout.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Email.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Email.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Index.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/Index.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_Layout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_Layout.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Register.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/Register.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResetPassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResetPassword.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/_StatusMessage.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/_StatusMessage.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Account/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Error.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/Error.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Pages/CSPNonceTest.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Pages/CSPNonceTest.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Pages/Razor/SampleForm.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Pages/Razor/SampleForm.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Pages/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Pages/_ViewStart.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewStart.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Cryptography/Encrypt.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Cryptography/Encrypt.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Cryptography/Hash.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Cryptography/Hash.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Administrator.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Administrator.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Auth.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Auth.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/CustomErrorPage.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/CustomErrorPage.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Error.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Error.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/FalseLogin.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/FalseLogin.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Forms.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Forms.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Manager.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Manager.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/MinimumAccessLevelManager.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/MinimumAccessLevelManager.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Privacy.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Privacy.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Query.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Query.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/RequireAuthorship.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/RequireAuthorship.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/Sql.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/Sql.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Home/ViewOrder.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Home/ViewOrder.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Mvc/FileUpload.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Mvc/FileUpload.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Mvc/SampleForm.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Mvc/SampleForm.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Shared/Error.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Shared/Error.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Shared/_LoginPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_LoginPartial.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Razor/Views/_ViewStart.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/Razor/Views/_ViewStart.cshtml.g.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/staticwebassets/Advanced.Security.V3.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | c0708eb153fa05f7eb56e20e819bf64494b78ade 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/staticwebassets/Advanced.Security.V3.StaticWebAssets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/Debug/netcoreapp3.1/staticwebassets/Advanced.Security.V3.StaticWebAssets.xml -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/obj/project.nuget.cache -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/js/site.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/adv-asp.net-core-3-security/HEAD/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------