├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codeql-analysis.yml │ └── dotnet-format.yml ├── .gitignore ├── .gitmodules ├── BuildAndTest.cmd ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ReleaseHistory.md ├── SECURITY.md ├── azure-pipelines.yml ├── docs ├── CreatingPlugins.md ├── DebugBuild.png ├── DebuggingGuide.md ├── Rules.md ├── UsingClientTool.md └── UsingLibrary.md ├── refs └── runtimes │ ├── win-x64 │ └── native │ │ ├── RE2.Native.x64.dll │ │ └── RE2.Native.x64.pdb │ └── win-x86 │ └── native │ ├── RE2.Native.x86.dll │ └── RE2.Native.x86.pdb ├── scripts ├── BuildAndTest.ps1 ├── BuildPackages.ps1 └── ProcessCodeCoverage.ps1 ├── src ├── .editorconfig ├── .ruleset ├── .sarif │ └── README.txt ├── Plugins │ ├── AzureDevOpsConfiguration │ │ ├── AZC101.BuildDefinitionSecurity.json │ │ ├── AZC102.ServiceConnectionSecurity.json │ │ ├── AdoPat.txt │ │ ├── AzureDevOpsConfiguration.SharedStrings.txt │ │ ├── AzureDevOpsConfiguration.csproj │ │ ├── ServiceConnectionSecurityValidators │ │ │ └── AZC102_190.DoNotGrantAllPipelinesAccessValidator.cs │ │ └── build │ │ │ └── Sarif.PatternMatcher.AzureDevOpsConfiguration.targets │ ├── SalModernization │ │ ├── SEC105.UpdateSalToCurrentVersion.json │ │ ├── SalModernization.SharedStrings.txt │ │ ├── SalModernization.csproj │ │ └── build │ │ │ └── Sarif.PatternMatcher.SalModernization.targets │ ├── Security │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReviewPotentiallySensitiveDataValidators │ │ │ └── SEC102_001.EmailAddressValidator.cs │ │ ├── ReviewPotentiallySensitiveFilesValidators │ │ │ ├── SEC103_017.PfxCryptographicKeyfileValidator.cs │ │ │ └── SEC103_024.MicrosoftSerializedCertificateStoreFileValidator.cs │ │ ├── SEC101.SecurePlaintextSecrets.json │ │ ├── SEC102.ReviewPotentiallySensitiveData.json │ │ ├── SEC102_003.UrlValidator.cs │ │ ├── SEC103.ReviewPotentiallySensitiveFiles.json │ │ ├── SEC104.UseSecureApi.json │ │ ├── SecurePlaintextSecretsValidators │ │ │ ├── AwsHttpRequestSigner.cs │ │ │ ├── GitHubTokenValidationHelper.cs │ │ │ ├── NpmAuthorTokenHelper.cs │ │ │ ├── SEC101_001.HttpAuthorizationRequestHeaderValidator.cs │ │ │ ├── SEC101_002.GoogleOAuthCredentialsValidator.cs │ │ │ ├── SEC101_003.GoogleApiKeyValidator.cs │ │ │ ├── SEC101_004.FacebookAppCredentialsValidator.cs │ │ │ ├── SEC101_005.SlackApiKeyValidator.cs │ │ │ ├── SEC101_006.GitHubLegacyPatValidator.cs │ │ │ ├── SEC101_007.GitHubAppCredentialsValidator.cs │ │ │ ├── SEC101_008.AwsCredentialsValidator.cs │ │ │ ├── SEC101_009.LinkedInCredentialsValidator.cs │ │ │ ├── SEC101_010.SquarePatValidator.cs │ │ │ ├── SEC101_011.SquareCredentialsValidator.cs │ │ │ ├── SEC101_012.SlackWebhookValidator.cs │ │ │ ├── SEC101_013.CryptographicPrivateKeyValidator.cs │ │ │ ├── SEC101_014.FacebookAccessTokenValidator.cs │ │ │ ├── SEC101_015.AkamaiCredentialsValidator.cs │ │ │ ├── SEC101_016.StripeApiKeyValidator.cs │ │ │ ├── SEC101_017.NpmLegacyAuthorTokenValidator.cs │ │ │ ├── SEC101_018.TwilioCredentialsValidator.cs │ │ │ ├── SEC101_019.PicaticApiKeyValidator.cs │ │ │ ├── SEC101_020.DropboxAccessTokenValidator.cs │ │ │ ├── SEC101_021.DropboxAppCredentialsValidator.cs │ │ │ ├── SEC101_022.PayPalBraintreeAccessTokenValidator.cs │ │ │ ├── SEC101_023.AmazonMwsAuthTokenValidator.cs │ │ │ ├── SEC101_024.TwilioApiKeyValidator.cs │ │ │ ├── SEC101_025.SendGridApiKeyValidator.cs │ │ │ ├── SEC101_026.MailgunApiCredentialsValidator.cs │ │ │ ├── SEC101_027.MailChimpApiKeyValidator.cs │ │ │ ├── SEC101_028.PlaintextPasswordValidator.cs │ │ │ ├── SEC101_029.AlibabaCloudCredentialsValidator.cs │ │ │ ├── SEC101_030.GoogleServiceAccountKeyValidator.cs │ │ │ ├── SEC101_031.NuGetApiKeyValidator.cs │ │ │ ├── SEC101_032.GpgCredentialsValidator.cs │ │ │ ├── SEC101_033.MongoDbCredentialsValidator.cs │ │ │ ├── SEC101_034.CredentialObjectValidator.cs │ │ │ ├── SEC101_035.CloudantCredentialsValidator.cs │ │ │ ├── SEC101_036.MySqlCredentialsValidator.cs │ │ │ ├── SEC101_037.SqlCredentialsValidator.cs │ │ │ ├── SEC101_038.PostgreSqlCredentialsValidator.cs │ │ │ ├── SEC101_039.ShopifyAccessTokenValidator.cs │ │ │ ├── SEC101_040.ShopifySharedSecretValidator.cs │ │ │ ├── SEC101_041.RabbitMqCredentialsValidator.cs │ │ │ ├── SEC101_042.DynatraceTokenValidator.cs │ │ │ ├── SEC101_043.NuGetCredentialsValidator.cs │ │ │ ├── SEC101_044.NpmCredentialsValidator.cs │ │ │ ├── SEC101_045.PostmanApiKeyValidator.cs │ │ │ ├── SEC101_046.DiscordApiCredentialsValidator.cs │ │ │ ├── SEC101_047.CratesApiKeyValidator.cs │ │ │ ├── SEC101_048.SlackWorkflowKeyValidator.cs │ │ │ ├── SEC101_049.TelegramBotTokenValidator.cs │ │ │ ├── SEC101_050.NpmIdentifiableAuthorTokenValidator.cs │ │ │ ├── SEC101_051.StripeTestApiKeyValidator.cs │ │ │ ├── SEC101_052.StripeLiveRestrictedKeyValidator.cs │ │ │ ├── SEC101_053.StripeTestRestrictedApiKeyValidator.cs │ │ │ ├── SEC101_102.AdoPatValidator.cs │ │ │ └── StripeApiKeyValidatorBase.cs │ │ ├── Security.SharedStrings.txt │ │ ├── Security.csproj │ │ ├── Utilities │ │ │ ├── AlibabaEcsRequestSigner.cs │ │ │ ├── CertificateHelper.cs │ │ │ ├── DictionaryExtensions.cs │ │ │ └── FilteringHelpers.cs │ │ └── build │ │ │ └── Sarif.PatternMatcher.Security.targets │ ├── Tests.AzureDevOpsConfiguration │ │ ├── AZC101.BuildDefinitionSecurityTests.cs │ │ ├── AZC102.ServiceConnectionSecurityTests.cs │ │ ├── EndToEndTestsAzureDevOpsConfiguration.cs │ │ ├── TestData │ │ │ ├── BuildDefinitionSecurity │ │ │ │ ├── ExpectedOutputs │ │ │ │ │ ├── AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.sarif │ │ │ │ │ └── AZC101.builddefinition.NoIssue.sarif │ │ │ │ └── Inputs │ │ │ │ │ ├── AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.json │ │ │ │ │ └── AZC101.builddefinition.NoIssue.json │ │ │ └── ServiceConnectionSecurity │ │ │ │ ├── ExpectedOutputs │ │ │ │ ├── AZC102_150.serviceconnection.DoNotUseClassicConnections.sarif │ │ │ │ └── AZC102_190.serviceconnection.DoNotShareWithAllPipelines.sarif │ │ │ │ └── Inputs │ │ │ │ ├── AZC102_150.serviceconnection.DoNotUseClassicConnections.json │ │ │ │ └── AZC102_190.serviceconnection.DoNotShareWithAllPipelines.json │ │ ├── Tests.AzureDevOpsConfiguration.csproj │ │ └── Validators │ │ │ └── AZC102_190.DoNotShareWithAllPipelines.cs │ ├── Tests.SalModernization │ │ ├── EndToEndTestsSalModernization.cs │ │ ├── SEC105.UpdateSalToCurrentVersion.cs │ │ ├── TestData │ │ │ └── UpdateSalToCurrentVersion │ │ │ │ ├── ExpectedOutputs │ │ │ │ └── SEC105_001.AnalysisAssume.sarif │ │ │ │ └── Inputs │ │ │ │ └── SEC105_001.AnalysisAssume.cpp │ │ └── Tests.SalModernization.csproj │ ├── Tests.Security │ │ ├── EndToEndTests.cs │ │ ├── Helpers │ │ │ └── HttpMockHelper.cs │ │ ├── SEC101.SecurePlaintextSecretsTests.cs │ │ ├── SEC102.ReviewPotentiallySensitiveDataTests.cs │ │ ├── SEC103.ReviewPotentiallySensitiveFilesTests.cs │ │ ├── SEC104.UseSecureApiTests.cs │ │ ├── SecurePlaintextSecretsValidators │ │ │ ├── AwsHttpRequestSignerTests.cs │ │ │ ├── NpmAuthorTokenTestCases.cs │ │ │ ├── SEC101_001.HttpAuthorizationRequestHeaderValidatorTests.cs │ │ │ ├── SEC101_003.GoogleApiKeyValidatorTests.cs │ │ │ ├── SEC101_004.FacebookAppCredentialsValidatorTests.cs │ │ │ ├── SEC101_005.SlackApiKeyValidatorTests.cs │ │ │ ├── SEC101_006.GitHubLegacyPatValidatorTests.cs │ │ │ ├── SEC101_007.GitHubAppCredentialsValidatorTests.cs │ │ │ ├── SEC101_008.AwsCredentialsValidatorTests.cs │ │ │ ├── SEC101_010.SquarePatValidatorTests.cs │ │ │ ├── SEC101_011.SquareCredentialsValidatorTests.cs │ │ │ ├── SEC101_012.SlackWebhookValidatorTests.cs │ │ │ ├── SEC101_013.CryptographicPrivateKeyValidatorTests.cs │ │ │ ├── SEC101_015.AkamaiCredentialsValidatorTests.cs │ │ │ ├── SEC101_016.StripeApiKeyValidatorTests.cs │ │ │ ├── SEC101_017.NpmLegacyAuthorTokenValidatorTests.cs │ │ │ ├── SEC101_018.TwilioCredentialsValidatorTests.cs │ │ │ ├── SEC101_020.DropboxAccessTokenValidatorTests.cs │ │ │ ├── SEC101_021.DropboxAppCredentialsValidatorTests.cs │ │ │ ├── SEC101_025.SendGridApiKeyValidatorTests.cs │ │ │ ├── SEC101_026.MailgunApiKeyValidatorTests.cs │ │ │ ├── SEC101_027.MailChimpApiKeyValidatorTests.cs │ │ │ ├── SEC101_029.AlibabaCloudCredentialsValidatorTests.cs │ │ │ ├── SEC101_036.MySqlCredentialsValidatorTests.cs │ │ │ ├── SEC101_037.SqlCredentialsValidatorTests.cs │ │ │ ├── SEC101_038.PostgreSqlCredentialsValidatorTests.cs │ │ │ ├── SEC101_043.NuGetCredentialsValidatorTests.cs │ │ │ ├── SEC101_044.NpmCredentialsValidatorTests.cs │ │ │ ├── SEC101_045.PostmanApiKeyValidatorTests.cs │ │ │ ├── SEC101_046.DiscordApiCredentialsValidatorTests.cs │ │ │ ├── SEC101_048.SlackWorkflowKeyValidatorTests.cs │ │ │ ├── SEC101_049.TelegramBotTokenValidatorTests.cs │ │ │ ├── SEC101_050.NpmIdentifiableAuthorTokenValidatorTests.cs │ │ │ └── SEC101_102.AdoPatValidatorTests.cs │ │ ├── TestData │ │ │ ├── EmptyResults.sarif │ │ │ ├── ReviewPotentiallySensitiveData │ │ │ │ ├── ExpectedOutputs │ │ │ │ │ ├── SEC102_001.EmailAddress.sarif │ │ │ │ │ ├── SEC102_002.SocialSecurityNumber.sarif │ │ │ │ │ └── SEC102_003.Url.sarif │ │ │ │ └── Inputs │ │ │ │ │ ├── SEC102_001.EmailAddress.txt │ │ │ │ │ ├── SEC102_002.SocialSecurityNumber.txt │ │ │ │ │ └── SEC102_003.Url.ps1 │ │ │ ├── ReviewPotentiallySensitiveFiles │ │ │ │ ├── ExpectedOutputs │ │ │ │ │ ├── SEC103_002.ASCIIArmoredFile_fake.sarif │ │ │ │ │ ├── SEC103_004.CertificateFile_der_encoded.sarif │ │ │ │ │ └── SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sarif │ │ │ │ └── Inputs │ │ │ │ │ ├── SEC103_002.ASCIIArmoredFile_fake.asc │ │ │ │ │ ├── SEC103_004.CertificateFile_der_encoded.cer │ │ │ │ │ └── SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sst │ │ │ ├── SecurePlaintextSecrets │ │ │ │ ├── ExpectedOutputs │ │ │ │ │ ├── SEC101_001.HttpAuthorizationRequestHeader.sarif │ │ │ │ │ ├── SEC101_002.GoogleOAuthCredentials.sarif │ │ │ │ │ ├── SEC101_003.GoogleApiKey.sarif │ │ │ │ │ ├── SEC101_004.FacebookAppCredentials.sarif │ │ │ │ │ ├── SEC101_005.SlackApiKey.sarif │ │ │ │ │ ├── SEC101_005.SlackTokens.sarif │ │ │ │ │ ├── SEC101_006.GitHubLegacyPat.sarif │ │ │ │ │ ├── SEC101_007.GitHubAppCredentials.sarif │ │ │ │ │ ├── SEC101_008.AwsCredentials.sarif │ │ │ │ │ ├── SEC101_009.LinkedInCredentials.sarif │ │ │ │ │ ├── SEC101_010.SquarePat.sarif │ │ │ │ │ ├── SEC101_011.SquareCredentials.sarif │ │ │ │ │ ├── SEC101_012.SlackWebhook.sarif │ │ │ │ │ ├── SEC101_013.CryptographicPrivateKey.sarif │ │ │ │ │ ├── SEC101_014.FacebookAccessToken.sarif │ │ │ │ │ ├── SEC101_015.AkamaiCredentials.sarif │ │ │ │ │ ├── SEC101_016.StripeApiKey.sarif │ │ │ │ │ ├── SEC101_017.NpmLegacyAuthorToken.sarif │ │ │ │ │ ├── SEC101_018.TwilioCredentials.sarif │ │ │ │ │ ├── SEC101_019.PicaticApiKey.sarif │ │ │ │ │ ├── SEC101_020.DropboxAccessToken.sarif │ │ │ │ │ ├── SEC101_021.DropboxAppCredentials.sarif │ │ │ │ │ ├── SEC101_022.PayPalBraintreeAccessToken.sarif │ │ │ │ │ ├── SEC101_024.TwilioApiKey.sarif │ │ │ │ │ ├── SEC101_025.SendGridApiKey.sarif │ │ │ │ │ ├── SEC101_026.MailgunApiCredentials.sarif │ │ │ │ │ ├── SEC101_027.MailChimpApiKey.sarif │ │ │ │ │ ├── SEC101_028.PlaintextPassword.sarif │ │ │ │ │ ├── SEC101_029.AlibabaCloudCredentials.sarif │ │ │ │ │ ├── SEC101_030.GoogleServiceAccountKey.sarif │ │ │ │ │ ├── SEC101_031.NuGetApiKey.sarif │ │ │ │ │ ├── SEC101_032.GpgCredentials.sarif │ │ │ │ │ ├── SEC101_033.MongoDbCredentials.sarif │ │ │ │ │ ├── SEC101_034.CredentialObject.sarif │ │ │ │ │ ├── SEC101_035.CloudantCredentials.sarif │ │ │ │ │ ├── SEC101_036.MySqlCredentials.sarif │ │ │ │ │ ├── SEC101_037.SqlCredentials.sarif │ │ │ │ │ ├── SEC101_038.PostgreSqlCredentials.sarif │ │ │ │ │ ├── SEC101_039.ShopifyAccessToken.sarif │ │ │ │ │ ├── SEC101_040.ShopifySharedSecret.sarif │ │ │ │ │ ├── SEC101_041.RabbitMqCredentials.sarif │ │ │ │ │ ├── SEC101_042.DynatraceToken.sarif │ │ │ │ │ ├── SEC101_043.NuGetCredentials.sarif │ │ │ │ │ ├── SEC101_044.NpmCredentials.sarif │ │ │ │ │ ├── SEC101_045.PostmanApiKey.sarif │ │ │ │ │ ├── SEC101_046.DiscordApiCredentials.sarif │ │ │ │ │ ├── SEC101_047.CratesApiKey.sarif │ │ │ │ │ ├── SEC101_048.SlackWorkflowKey.sarif │ │ │ │ │ ├── SEC101_049.TelegramBotToken.sarif │ │ │ │ │ ├── SEC101_050.NpmIdentifiableAuthorToken.sarif │ │ │ │ │ ├── SEC101_051.StripeTestApiKey.sarif │ │ │ │ │ ├── SEC101_052.StripeLiveRestrictedApiKey.sarif │ │ │ │ │ ├── SEC101_053.StripeTestRestrictedApiKey.sarif │ │ │ │ │ └── SEC101_102.AdoPat.sarif │ │ │ │ └── Inputs │ │ │ │ │ ├── SEC101_001.HttpAuthorizationRequestHeader.ps1 │ │ │ │ │ ├── SEC101_002.GoogleOAuthCredentials.ps1 │ │ │ │ │ ├── SEC101_003.GoogleApiKey.txt │ │ │ │ │ ├── SEC101_004.FacebookAppCredentials.ps1 │ │ │ │ │ ├── SEC101_005.SlackApiKey.py │ │ │ │ │ ├── SEC101_006.GitHubLegacyPat.ps1 │ │ │ │ │ ├── SEC101_007.GitHubAppCredentials.ps1 │ │ │ │ │ ├── SEC101_008.AwsCredentials.ps1 │ │ │ │ │ ├── SEC101_009.LinkedInCredentials.ps1 │ │ │ │ │ ├── SEC101_010.SquarePat.ps1 │ │ │ │ │ ├── SEC101_011.SquareCredentials.ps1 │ │ │ │ │ ├── SEC101_012.SlackWebhook.txt │ │ │ │ │ ├── SEC101_013.CryptographicPrivateKey.txt │ │ │ │ │ ├── SEC101_014.FacebookAccessToken.ps1 │ │ │ │ │ ├── SEC101_015.AkamaiCredentials.ps1 │ │ │ │ │ ├── SEC101_016.StripeApiKey.txt │ │ │ │ │ ├── SEC101_017.NpmLegacyAuthorToken.ps1 │ │ │ │ │ ├── SEC101_018.TwilioCredentials.ps1 │ │ │ │ │ ├── SEC101_019.PicaticApiKey.ps1 │ │ │ │ │ ├── SEC101_020.DropboxAccessToken.ps1 │ │ │ │ │ ├── SEC101_021.DropboxAppCredentials.ps1 │ │ │ │ │ ├── SEC101_022.PayPalBraintreeAccessToken.ps1 │ │ │ │ │ ├── SEC101_024.TwilioApiKey.ps1 │ │ │ │ │ ├── SEC101_025.SendGridApiKey.txt │ │ │ │ │ ├── SEC101_026.MailgunApiCredentials.ps1 │ │ │ │ │ ├── SEC101_027.MailChimpApiKey.ps1 │ │ │ │ │ ├── SEC101_028.PlaintextPassword.ps1 │ │ │ │ │ ├── SEC101_029.AlibabaCloudCredentials.ps1 │ │ │ │ │ ├── SEC101_030.GoogleServiceAccountKey.ps1 │ │ │ │ │ ├── SEC101_031.NuGetApiKey.txt │ │ │ │ │ ├── SEC101_032.GpgCredentials.ps1 │ │ │ │ │ ├── SEC101_033.MongoDbCredentials.ps1 │ │ │ │ │ ├── SEC101_034.CredentialObject.ps1 │ │ │ │ │ ├── SEC101_035.CloudantCredentials.ps1 │ │ │ │ │ ├── SEC101_036.MySqlCredentials.ps1 │ │ │ │ │ ├── SEC101_037.SqlCredentials.ps1 │ │ │ │ │ ├── SEC101_038.PostgreSqlCredentials.ps1 │ │ │ │ │ ├── SEC101_039.ShopifyAccessToken.ps1 │ │ │ │ │ ├── SEC101_040.ShopifySharedSecret.ps1 │ │ │ │ │ ├── SEC101_041.RabbitMqCredentials.ps1 │ │ │ │ │ ├── SEC101_042.DynatraceToken.ps1 │ │ │ │ │ ├── SEC101_043.NuGetCredentials.ps1 │ │ │ │ │ ├── SEC101_044.NpmCredentials.ps1 │ │ │ │ │ ├── SEC101_045.PostmanApiKey.ps1 │ │ │ │ │ ├── SEC101_046.DiscordApiCredentials.ps1 │ │ │ │ │ ├── SEC101_047.CratesApiKey.ps1 │ │ │ │ │ ├── SEC101_048.SlackWorkflowKey.ps1 │ │ │ │ │ ├── SEC101_049.TelegramBotToken.ps1 │ │ │ │ │ ├── SEC101_050.NpmIdentifiableAuthorToken.ps1 │ │ │ │ │ ├── SEC101_051.StripeTestApiKey.txt │ │ │ │ │ ├── SEC101_052.StripeLiveRestrictedApiKey.txt │ │ │ │ │ ├── SEC101_053.StripeTestRestrictedApiKey.txt │ │ │ │ │ └── SEC101_102.AdoPat.txt │ │ │ └── UseSecureApi │ │ │ │ ├── ExpectedOutputs │ │ │ │ ├── SEC104.Memory.Allocation_alloca.sarif │ │ │ │ └── SEC104.Memory.Allocation_malloca.sarif │ │ │ │ └── Inputs │ │ │ │ ├── SEC104.Memory.Allocation_alloca.c │ │ │ │ └── SEC104.Memory.Allocation_malloca.c │ │ ├── Tests.Security.csproj │ │ ├── ValidatorBaseTests.cs │ │ └── xunit.runner.json │ └── Utilities.cs ├── RE2.Managed │ ├── FlexMatch.cs │ ├── FlexMatchValueComparer.cs │ ├── GroupNameHeader.cs │ ├── IRegex.cs │ ├── IronRE2Regex.cs │ ├── Match2.cs │ ├── MatchesCaptureGroupsOutput.cs │ ├── NativeMethods.cs │ ├── RE2.LICENSE.txt │ ├── RE2.Managed.csproj │ ├── RE2.Managed.targets │ ├── RE2Regex.cs │ ├── Regex2.cs │ ├── RegexDefaults.cs │ ├── String8Interop.cs │ ├── Submatch.cs │ └── Timeout.cs ├── RE2.Native.sln ├── RE2.Native │ ├── CMake.Original │ │ ├── README.txt │ │ ├── re2.vcxproj │ │ └── re2.vcxproj.filters │ ├── GroupNameHeader.h │ ├── Match2.h │ ├── MatchesCaptureGroupsOutput.h │ ├── RE2.Native.props │ ├── RE2.Native.vcxproj.filters │ ├── RE2.Native.x64.vcxproj │ ├── RE2.Native.x86.vcxproj │ ├── RE2Native.cpp │ ├── ReadMe.txt │ ├── String8.h │ ├── Submatch.h │ ├── re2.props │ ├── re2.vcxproj.filters │ ├── re2.x64.vcxproj │ ├── re2.x86.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Sarif.PatternMatcher.Benchmark │ ├── Benchmarks │ │ └── AnalyzeCommandBenchmarks.cs │ ├── Program.cs │ └── Sarif.PatternMatcher.Benchmark.csproj ├── Sarif.PatternMatcher.Cli │ ├── AnalyzeDatabaseCommand.cs │ ├── AnalyzeDatabaseOptions.cs │ ├── App.config │ ├── DatabaseReaders │ │ ├── BaseReader.cs │ │ ├── IDatabaseReader.cs │ │ ├── KustoDatabaseReader.cs │ │ └── SqlLiteDatabaseReader.cs │ ├── Enums │ │ └── ConnectionType.cs │ ├── ExportConfigurationCommand.cs │ ├── ExportRulesMetatadaCommand.cs │ ├── ExportRulesMetatadaOptions.cs │ ├── ExportSearchDefinitionsCommand.cs │ ├── ExportSearchDefinitionsOptions.cs │ ├── ImportAndAnalyzeCommand.cs │ ├── ImportAndAnalyzeOptions.cs │ ├── Models │ │ ├── ArrayOfContentSearcher.cs │ │ ├── ContentSearchPatterns.cs │ │ └── ContentSearcher.cs │ ├── Program.cs │ └── Sarif.PatternMatcher.Cli.csproj ├── Sarif.PatternMatcher.Function │ ├── FunctionConstants.cs │ ├── HttpAnalyzeFunction.cs │ ├── Properties │ │ ├── ServiceDependencies │ │ │ └── SecToolFuncCore20210105011210 - Zip Deploy │ │ │ │ └── profile.arm.json │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Sarif.PatternMatcher.Function.csproj │ ├── SpamAnalyzer.cs │ ├── host.json │ └── local.settings.json ├── Sarif.PatternMatcher.Sdk │ ├── AssetPlatform.cs │ ├── Crc32.cs │ ├── DynamicValidatorBase.cs │ ├── ExtensionMethods.cs │ ├── Fingerprint.cs │ ├── FingerprintElements.cs │ ├── Sarif.PatternMatcher.Sdk.csproj │ ├── SharedUtilities.cs │ ├── StaticValidatorBase.cs │ ├── ValidationResult.cs │ ├── ValidationState.cs │ ├── ValidatorBase.cs │ └── ValidatorDescriptorAttribute.cs ├── Sarif.PatternMatcher │ ├── AnalyzeCommand.cs │ ├── AnalyzeContext.cs │ ├── AnalyzeOptions.cs │ ├── Base64EncodingMatch.cs │ ├── CachedDotNetRegex.cs │ ├── DotNetRegex.cs │ ├── JsonLogicalLocationProcessor.cs │ ├── MatchExpression.cs │ ├── RegexEngine.cs │ ├── RegexMetadata.cs │ ├── Sarif.PatternMatcher.csproj │ ├── SearchDefinition.cs │ ├── SearchDefinitions.cs │ ├── SearchSkimmer.cs │ ├── SimpleFix.cs │ ├── SpamEventNames.cs │ ├── SpamExtensionMethods.cs │ ├── SpamResources.Designer.cs │ ├── SpamResources.resx │ ├── ValidateCommand.cs │ ├── ValidateOptions.cs │ ├── ValidatingVisitor.cs │ ├── ValidationMethods.cs │ └── ValidatorsCache.cs ├── SarifPatternMatcher.runsettings ├── SarifPatternMatcher.sln ├── Shared │ └── CommonAssemblyInfo.cs ├── Strings.Interop │ ├── FlexString.cs │ ├── String8.cs │ └── Strings.Interop.csproj ├── Test.UnitTests.RE2.Managed │ ├── FlexMatchTests.cs │ ├── FlexMatchValueComparerTests.cs │ ├── Regex2Tests.cs │ └── Test.UnitTests.RE2.Managed.csproj ├── Test.UnitTests.Sarif.PatternMatcher.Cli │ ├── AnalyzeCommandTests.cs │ ├── ExportRulesMetatadaCommandTests.cs │ ├── ExportSearchDefinitionsCommandTests.cs │ ├── ProgramTests.cs │ ├── SharedStrings.txt │ ├── SimplePatterns.json │ ├── Test.UnitTests.Sarif.PatternMatcher.Cli.csproj │ └── TestValidators │ │ ├── StaticAndDynamicValidatorsExistForMatchExpressionValidator.cs │ │ └── StaticValidatorExistsForMatchExpressionValidator.cs ├── Test.UnitTests.Sarif.PatternMatcher.Function │ ├── HttpAnalyzeFunctionTests.cs │ ├── Test.UnitTests.Sarif.PatternMatcher.Function.csproj │ ├── TestHelper.cs │ └── TestLogger.cs ├── Test.UnitTests.Sarif.PatternMatcher.Sdk │ ├── Crc32Tests.cs │ ├── ExtensionMethodTests.cs │ ├── FingerprintTests.cs │ ├── StaticValidatorBaseTests.cs │ └── Test.UnitTests.Sarif.PatternMatcher.Sdk.csproj ├── Test.UnitTests.Sarif.PatternMatcher │ ├── AnalyzeCommandTests.cs │ ├── BadlyBehavedRule.cs │ ├── ExtensionMethodsTests.cs │ ├── JsonLogicalLocationProcessorTests.cs │ ├── PatternInvariantTests.cs │ ├── SearchSkimmerTests.cs │ ├── SharedUtilitiesTests.cs │ ├── SpamTestRule.cs │ ├── Test.UnitTests.Sarif.PatternMatcher.csproj │ ├── TestAnalyzeCommand.cs │ ├── TestLogger.cs │ ├── TestRuleValidator.cs │ ├── ValidatingVisitorTests.cs │ ├── ValidationResultTests.cs │ └── ValidatorsCacheTests.cs ├── Test.UnitTests.Strings.Interop │ ├── FlexStringTests.cs │ ├── String8Tests.cs │ └── Test.UnitTests.Strings.Interop.csproj └── stylecop.json ├── targets ├── Key.snk ├── build.app.props ├── build.common.props ├── build.lib.props ├── build.plugins.props ├── build.product.props └── build.test.props └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.github/workflows/dotnet-format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /BuildAndTest.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -ExecutionPolicy RemoteSigned -File %~dp0\scripts\BuildAndTest.ps1 %* 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/ReleaseHistory.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/CreatingPlugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/CreatingPlugins.md -------------------------------------------------------------------------------- /docs/DebugBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/DebugBuild.png -------------------------------------------------------------------------------- /docs/DebuggingGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/DebuggingGuide.md -------------------------------------------------------------------------------- /docs/Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/Rules.md -------------------------------------------------------------------------------- /docs/UsingClientTool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/UsingClientTool.md -------------------------------------------------------------------------------- /docs/UsingLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/docs/UsingLibrary.md -------------------------------------------------------------------------------- /refs/runtimes/win-x64/native/RE2.Native.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/refs/runtimes/win-x64/native/RE2.Native.x64.dll -------------------------------------------------------------------------------- /refs/runtimes/win-x64/native/RE2.Native.x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/refs/runtimes/win-x64/native/RE2.Native.x64.pdb -------------------------------------------------------------------------------- /refs/runtimes/win-x86/native/RE2.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/refs/runtimes/win-x86/native/RE2.Native.x86.dll -------------------------------------------------------------------------------- /refs/runtimes/win-x86/native/RE2.Native.x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/refs/runtimes/win-x86/native/RE2.Native.x86.pdb -------------------------------------------------------------------------------- /scripts/BuildAndTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/scripts/BuildAndTest.ps1 -------------------------------------------------------------------------------- /scripts/BuildPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/scripts/BuildPackages.ps1 -------------------------------------------------------------------------------- /scripts/ProcessCodeCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/scripts/ProcessCodeCoverage.ps1 -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/.ruleset -------------------------------------------------------------------------------- /src/.sarif/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/.sarif/README.txt -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/AZC101.BuildDefinitionSecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/AZC101.BuildDefinitionSecurity.json -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/AZC102.ServiceConnectionSecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/AZC102.ServiceConnectionSecurity.json -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/AdoPat.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/AzureDevOpsConfiguration.SharedStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/AzureDevOpsConfiguration.SharedStrings.txt -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/AzureDevOpsConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/AzureDevOpsConfiguration.csproj -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/ServiceConnectionSecurityValidators/AZC102_190.DoNotGrantAllPipelinesAccessValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/ServiceConnectionSecurityValidators/AZC102_190.DoNotGrantAllPipelinesAccessValidator.cs -------------------------------------------------------------------------------- /src/Plugins/AzureDevOpsConfiguration/build/Sarif.PatternMatcher.AzureDevOpsConfiguration.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/AzureDevOpsConfiguration/build/Sarif.PatternMatcher.AzureDevOpsConfiguration.targets -------------------------------------------------------------------------------- /src/Plugins/SalModernization/SEC105.UpdateSalToCurrentVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/SalModernization/SEC105.UpdateSalToCurrentVersion.json -------------------------------------------------------------------------------- /src/Plugins/SalModernization/SalModernization.SharedStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/SalModernization/SalModernization.SharedStrings.txt -------------------------------------------------------------------------------- /src/Plugins/SalModernization/SalModernization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/SalModernization/SalModernization.csproj -------------------------------------------------------------------------------- /src/Plugins/SalModernization/build/Sarif.PatternMatcher.SalModernization.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/SalModernization/build/Sarif.PatternMatcher.SalModernization.targets -------------------------------------------------------------------------------- /src/Plugins/Security/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Plugins/Security/ReviewPotentiallySensitiveDataValidators/SEC102_001.EmailAddressValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/ReviewPotentiallySensitiveDataValidators/SEC102_001.EmailAddressValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/ReviewPotentiallySensitiveFilesValidators/SEC103_017.PfxCryptographicKeyfileValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/ReviewPotentiallySensitiveFilesValidators/SEC103_017.PfxCryptographicKeyfileValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/ReviewPotentiallySensitiveFilesValidators/SEC103_024.MicrosoftSerializedCertificateStoreFileValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/ReviewPotentiallySensitiveFilesValidators/SEC103_024.MicrosoftSerializedCertificateStoreFileValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SEC101.SecurePlaintextSecrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SEC101.SecurePlaintextSecrets.json -------------------------------------------------------------------------------- /src/Plugins/Security/SEC102.ReviewPotentiallySensitiveData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SEC102.ReviewPotentiallySensitiveData.json -------------------------------------------------------------------------------- /src/Plugins/Security/SEC102_003.UrlValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SEC102_003.UrlValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SEC103.ReviewPotentiallySensitiveFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SEC103.ReviewPotentiallySensitiveFiles.json -------------------------------------------------------------------------------- /src/Plugins/Security/SEC104.UseSecureApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SEC104.UseSecureApi.json -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/AwsHttpRequestSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/AwsHttpRequestSigner.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/GitHubTokenValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/GitHubTokenValidationHelper.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/NpmAuthorTokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/NpmAuthorTokenHelper.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_001.HttpAuthorizationRequestHeaderValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_001.HttpAuthorizationRequestHeaderValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_002.GoogleOAuthCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_002.GoogleOAuthCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_003.GoogleApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_003.GoogleApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_004.FacebookAppCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_004.FacebookAppCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_005.SlackApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_005.SlackApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_006.GitHubLegacyPatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_006.GitHubLegacyPatValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_007.GitHubAppCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_007.GitHubAppCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_008.AwsCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_008.AwsCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_009.LinkedInCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_009.LinkedInCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_010.SquarePatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_010.SquarePatValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_011.SquareCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_011.SquareCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_012.SlackWebhookValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_012.SlackWebhookValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_013.CryptographicPrivateKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_013.CryptographicPrivateKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_014.FacebookAccessTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_014.FacebookAccessTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_015.AkamaiCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_015.AkamaiCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_016.StripeApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_016.StripeApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_017.NpmLegacyAuthorTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_017.NpmLegacyAuthorTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_018.TwilioCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_018.TwilioCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_019.PicaticApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_019.PicaticApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_020.DropboxAccessTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_020.DropboxAccessTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_021.DropboxAppCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_021.DropboxAppCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_022.PayPalBraintreeAccessTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_022.PayPalBraintreeAccessTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_023.AmazonMwsAuthTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_023.AmazonMwsAuthTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_024.TwilioApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_024.TwilioApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_025.SendGridApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_025.SendGridApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_026.MailgunApiCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_026.MailgunApiCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_027.MailChimpApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_027.MailChimpApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_028.PlaintextPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_028.PlaintextPasswordValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_029.AlibabaCloudCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_029.AlibabaCloudCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_030.GoogleServiceAccountKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_030.GoogleServiceAccountKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_031.NuGetApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_031.NuGetApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_032.GpgCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_032.GpgCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_033.MongoDbCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_033.MongoDbCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_034.CredentialObjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_034.CredentialObjectValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_035.CloudantCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_035.CloudantCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_036.MySqlCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_036.MySqlCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_037.SqlCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_037.SqlCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_038.PostgreSqlCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_038.PostgreSqlCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_039.ShopifyAccessTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_039.ShopifyAccessTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_040.ShopifySharedSecretValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_040.ShopifySharedSecretValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_041.RabbitMqCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_041.RabbitMqCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_042.DynatraceTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_042.DynatraceTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_043.NuGetCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_043.NuGetCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_044.NpmCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_044.NpmCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_045.PostmanApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_045.PostmanApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_046.DiscordApiCredentialsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_046.DiscordApiCredentialsValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_047.CratesApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_047.CratesApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_048.SlackWorkflowKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_048.SlackWorkflowKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_049.TelegramBotTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_049.TelegramBotTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_050.NpmIdentifiableAuthorTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_050.NpmIdentifiableAuthorTokenValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_051.StripeTestApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_051.StripeTestApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_052.StripeLiveRestrictedKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_052.StripeLiveRestrictedKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_053.StripeTestRestrictedApiKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_053.StripeTestRestrictedApiKeyValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_102.AdoPatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/SEC101_102.AdoPatValidator.cs -------------------------------------------------------------------------------- /src/Plugins/Security/SecurePlaintextSecretsValidators/StripeApiKeyValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/SecurePlaintextSecretsValidators/StripeApiKeyValidatorBase.cs -------------------------------------------------------------------------------- /src/Plugins/Security/Security.SharedStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Security.SharedStrings.txt -------------------------------------------------------------------------------- /src/Plugins/Security/Security.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Security.csproj -------------------------------------------------------------------------------- /src/Plugins/Security/Utilities/AlibabaEcsRequestSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Utilities/AlibabaEcsRequestSigner.cs -------------------------------------------------------------------------------- /src/Plugins/Security/Utilities/CertificateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Utilities/CertificateHelper.cs -------------------------------------------------------------------------------- /src/Plugins/Security/Utilities/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Utilities/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Plugins/Security/Utilities/FilteringHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/Utilities/FilteringHelpers.cs -------------------------------------------------------------------------------- /src/Plugins/Security/build/Sarif.PatternMatcher.Security.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Security/build/Sarif.PatternMatcher.Security.targets -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/AZC101.BuildDefinitionSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/AZC101.BuildDefinitionSecurityTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/AZC102.ServiceConnectionSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/AZC102.ServiceConnectionSecurityTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/EndToEndTestsAzureDevOpsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/EndToEndTestsAzureDevOpsConfiguration.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/ExpectedOutputs/AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/ExpectedOutputs/AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/ExpectedOutputs/AZC101.builddefinition.NoIssue.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/ExpectedOutputs/AZC101.builddefinition.NoIssue.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/Inputs/AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/Inputs/AZC101.builddefinition.DontMakeSecretsAvailableToForkedBuilds.json -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/Inputs/AZC101.builddefinition.NoIssue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/BuildDefinitionSecurity/Inputs/AZC101.builddefinition.NoIssue.json -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/ExpectedOutputs/AZC102_150.serviceconnection.DoNotUseClassicConnections.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/ExpectedOutputs/AZC102_150.serviceconnection.DoNotUseClassicConnections.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/ExpectedOutputs/AZC102_190.serviceconnection.DoNotShareWithAllPipelines.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/ExpectedOutputs/AZC102_190.serviceconnection.DoNotShareWithAllPipelines.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/Inputs/AZC102_150.serviceconnection.DoNotUseClassicConnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/Inputs/AZC102_150.serviceconnection.DoNotUseClassicConnections.json -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/Inputs/AZC102_190.serviceconnection.DoNotShareWithAllPipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/TestData/ServiceConnectionSecurity/Inputs/AZC102_190.serviceconnection.DoNotShareWithAllPipelines.json -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/Tests.AzureDevOpsConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/Tests.AzureDevOpsConfiguration.csproj -------------------------------------------------------------------------------- /src/Plugins/Tests.AzureDevOpsConfiguration/Validators/AZC102_190.DoNotShareWithAllPipelines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.AzureDevOpsConfiguration/Validators/AZC102_190.DoNotShareWithAllPipelines.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.SalModernization/EndToEndTestsSalModernization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.SalModernization/EndToEndTestsSalModernization.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.SalModernization/SEC105.UpdateSalToCurrentVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.SalModernization/SEC105.UpdateSalToCurrentVersion.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.SalModernization/TestData/UpdateSalToCurrentVersion/ExpectedOutputs/SEC105_001.AnalysisAssume.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.SalModernization/TestData/UpdateSalToCurrentVersion/ExpectedOutputs/SEC105_001.AnalysisAssume.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.SalModernization/TestData/UpdateSalToCurrentVersion/Inputs/SEC105_001.AnalysisAssume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.SalModernization/TestData/UpdateSalToCurrentVersion/Inputs/SEC105_001.AnalysisAssume.cpp -------------------------------------------------------------------------------- /src/Plugins/Tests.SalModernization/Tests.SalModernization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.SalModernization/Tests.SalModernization.csproj -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/EndToEndTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/Helpers/HttpMockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/Helpers/HttpMockHelper.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SEC101.SecurePlaintextSecretsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SEC101.SecurePlaintextSecretsTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SEC102.ReviewPotentiallySensitiveDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SEC102.ReviewPotentiallySensitiveDataTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SEC103.ReviewPotentiallySensitiveFilesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SEC103.ReviewPotentiallySensitiveFilesTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SEC104.UseSecureApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SEC104.UseSecureApiTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/AwsHttpRequestSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/AwsHttpRequestSignerTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/NpmAuthorTokenTestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/NpmAuthorTokenTestCases.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_001.HttpAuthorizationRequestHeaderValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_001.HttpAuthorizationRequestHeaderValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_003.GoogleApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_003.GoogleApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_004.FacebookAppCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_004.FacebookAppCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_005.SlackApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_005.SlackApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_006.GitHubLegacyPatValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_006.GitHubLegacyPatValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_007.GitHubAppCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_007.GitHubAppCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_008.AwsCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_008.AwsCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_010.SquarePatValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_010.SquarePatValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_011.SquareCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_011.SquareCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_012.SlackWebhookValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_012.SlackWebhookValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_013.CryptographicPrivateKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_013.CryptographicPrivateKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_015.AkamaiCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_015.AkamaiCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_016.StripeApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_016.StripeApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_017.NpmLegacyAuthorTokenValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_017.NpmLegacyAuthorTokenValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_018.TwilioCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_018.TwilioCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_020.DropboxAccessTokenValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_020.DropboxAccessTokenValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_021.DropboxAppCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_021.DropboxAppCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_025.SendGridApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_025.SendGridApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_026.MailgunApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_026.MailgunApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_027.MailChimpApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_027.MailChimpApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_029.AlibabaCloudCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_029.AlibabaCloudCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_036.MySqlCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_036.MySqlCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_037.SqlCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_037.SqlCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_038.PostgreSqlCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_038.PostgreSqlCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_043.NuGetCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_043.NuGetCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_044.NpmCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_044.NpmCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_045.PostmanApiKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_045.PostmanApiKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_046.DiscordApiCredentialsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_046.DiscordApiCredentialsValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_048.SlackWorkflowKeyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_048.SlackWorkflowKeyValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_049.TelegramBotTokenValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_049.TelegramBotTokenValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_050.NpmIdentifiableAuthorTokenValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_050.NpmIdentifiableAuthorTokenValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_102.AdoPatValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/SecurePlaintextSecretsValidators/SEC101_102.AdoPatValidatorTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/EmptyResults.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/EmptyResults.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_001.EmailAddress.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_001.EmailAddress.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_002.SocialSecurityNumber.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_002.SocialSecurityNumber.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_003.Url.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/ExpectedOutputs/SEC102_003.Url.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_001.EmailAddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_001.EmailAddress.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_002.SocialSecurityNumber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_002.SocialSecurityNumber.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_003.Url.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveData/Inputs/SEC102_003.Url.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_002.ASCIIArmoredFile_fake.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_002.ASCIIArmoredFile_fake.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_004.CertificateFile_der_encoded.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_004.CertificateFile_der_encoded.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/ExpectedOutputs/SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_002.ASCIIArmoredFile_fake.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_002.ASCIIArmoredFile_fake.asc -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_004.CertificateFile_der_encoded.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_004.CertificateFile_der_encoded.cer -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/ReviewPotentiallySensitiveFiles/Inputs/SEC103_024.MicrosoftSerializedCertificateStoreFile_default.sst -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_001.HttpAuthorizationRequestHeader.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_001.HttpAuthorizationRequestHeader.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_002.GoogleOAuthCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_002.GoogleOAuthCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_003.GoogleApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_003.GoogleApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_004.FacebookAppCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_004.FacebookAppCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_005.SlackApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_005.SlackApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_005.SlackTokens.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_005.SlackTokens.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_006.GitHubLegacyPat.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_006.GitHubLegacyPat.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_007.GitHubAppCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_007.GitHubAppCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_008.AwsCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_008.AwsCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_009.LinkedInCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_009.LinkedInCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_010.SquarePat.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_010.SquarePat.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_011.SquareCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_011.SquareCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_012.SlackWebhook.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_012.SlackWebhook.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_013.CryptographicPrivateKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_013.CryptographicPrivateKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_014.FacebookAccessToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_014.FacebookAccessToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_015.AkamaiCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_015.AkamaiCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_016.StripeApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_016.StripeApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_017.NpmLegacyAuthorToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_017.NpmLegacyAuthorToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_018.TwilioCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_018.TwilioCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_019.PicaticApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_019.PicaticApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_020.DropboxAccessToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_020.DropboxAccessToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_021.DropboxAppCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_021.DropboxAppCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_022.PayPalBraintreeAccessToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_022.PayPalBraintreeAccessToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_024.TwilioApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_024.TwilioApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_025.SendGridApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_025.SendGridApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_026.MailgunApiCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_026.MailgunApiCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_027.MailChimpApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_027.MailChimpApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_028.PlaintextPassword.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_028.PlaintextPassword.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_029.AlibabaCloudCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_029.AlibabaCloudCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_030.GoogleServiceAccountKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_030.GoogleServiceAccountKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_031.NuGetApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_031.NuGetApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_032.GpgCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_032.GpgCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_033.MongoDbCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_033.MongoDbCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_034.CredentialObject.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_034.CredentialObject.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_035.CloudantCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_035.CloudantCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_036.MySqlCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_036.MySqlCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_037.SqlCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_037.SqlCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_038.PostgreSqlCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_038.PostgreSqlCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_039.ShopifyAccessToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_039.ShopifyAccessToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_040.ShopifySharedSecret.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_040.ShopifySharedSecret.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_041.RabbitMqCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_041.RabbitMqCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_042.DynatraceToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_042.DynatraceToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_043.NuGetCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_043.NuGetCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_044.NpmCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_044.NpmCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_045.PostmanApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_045.PostmanApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_046.DiscordApiCredentials.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_046.DiscordApiCredentials.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_047.CratesApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_047.CratesApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_048.SlackWorkflowKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_048.SlackWorkflowKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_049.TelegramBotToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_049.TelegramBotToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_050.NpmIdentifiableAuthorToken.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_050.NpmIdentifiableAuthorToken.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_051.StripeTestApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_051.StripeTestApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_052.StripeLiveRestrictedApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_052.StripeLiveRestrictedApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_053.StripeTestRestrictedApiKey.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_053.StripeTestRestrictedApiKey.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_102.AdoPat.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/ExpectedOutputs/SEC101_102.AdoPat.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_001.HttpAuthorizationRequestHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_001.HttpAuthorizationRequestHeader.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_002.GoogleOAuthCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_002.GoogleOAuthCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_003.GoogleApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_003.GoogleApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_004.FacebookAppCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_004.FacebookAppCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_005.SlackApiKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_005.SlackApiKey.py -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_006.GitHubLegacyPat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_006.GitHubLegacyPat.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_007.GitHubAppCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_007.GitHubAppCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_008.AwsCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_008.AwsCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_009.LinkedInCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_009.LinkedInCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_010.SquarePat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_010.SquarePat.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_011.SquareCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_011.SquareCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_012.SlackWebhook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_012.SlackWebhook.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_013.CryptographicPrivateKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_013.CryptographicPrivateKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_014.FacebookAccessToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_014.FacebookAccessToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_015.AkamaiCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_015.AkamaiCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_016.StripeApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_016.StripeApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_017.NpmLegacyAuthorToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_017.NpmLegacyAuthorToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_018.TwilioCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_018.TwilioCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_019.PicaticApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_019.PicaticApiKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_020.DropboxAccessToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_020.DropboxAccessToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_021.DropboxAppCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_021.DropboxAppCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_022.PayPalBraintreeAccessToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_022.PayPalBraintreeAccessToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_024.TwilioApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_024.TwilioApiKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_025.SendGridApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_025.SendGridApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_026.MailgunApiCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_026.MailgunApiCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_027.MailChimpApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_027.MailChimpApiKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_028.PlaintextPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_028.PlaintextPassword.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_029.AlibabaCloudCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_029.AlibabaCloudCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_030.GoogleServiceAccountKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_030.GoogleServiceAccountKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_031.NuGetApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_031.NuGetApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_032.GpgCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_032.GpgCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_033.MongoDbCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_033.MongoDbCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_034.CredentialObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_034.CredentialObject.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_035.CloudantCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_035.CloudantCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_036.MySqlCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_036.MySqlCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_037.SqlCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_037.SqlCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_038.PostgreSqlCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_038.PostgreSqlCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_039.ShopifyAccessToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_039.ShopifyAccessToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_040.ShopifySharedSecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_040.ShopifySharedSecret.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_041.RabbitMqCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_041.RabbitMqCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_042.DynatraceToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_042.DynatraceToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_043.NuGetCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_043.NuGetCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_044.NpmCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_044.NpmCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_045.PostmanApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_045.PostmanApiKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_046.DiscordApiCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_046.DiscordApiCredentials.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_047.CratesApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_047.CratesApiKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_048.SlackWorkflowKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_048.SlackWorkflowKey.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_049.TelegramBotToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_049.TelegramBotToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_050.NpmIdentifiableAuthorToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_050.NpmIdentifiableAuthorToken.ps1 -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_051.StripeTestApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_051.StripeTestApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_052.StripeLiveRestrictedApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_052.StripeLiveRestrictedApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_053.StripeTestRestrictedApiKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_053.StripeTestRestrictedApiKey.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_102.AdoPat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/SecurePlaintextSecrets/Inputs/SEC101_102.AdoPat.txt -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/UseSecureApi/ExpectedOutputs/SEC104.Memory.Allocation_alloca.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/UseSecureApi/ExpectedOutputs/SEC104.Memory.Allocation_alloca.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/UseSecureApi/ExpectedOutputs/SEC104.Memory.Allocation_malloca.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/UseSecureApi/ExpectedOutputs/SEC104.Memory.Allocation_malloca.sarif -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/UseSecureApi/Inputs/SEC104.Memory.Allocation_alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/UseSecureApi/Inputs/SEC104.Memory.Allocation_alloca.c -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/TestData/UseSecureApi/Inputs/SEC104.Memory.Allocation_malloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/TestData/UseSecureApi/Inputs/SEC104.Memory.Allocation_malloca.c -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/Tests.Security.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/Tests.Security.csproj -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/ValidatorBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/ValidatorBaseTests.cs -------------------------------------------------------------------------------- /src/Plugins/Tests.Security/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Tests.Security/xunit.runner.json -------------------------------------------------------------------------------- /src/Plugins/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Plugins/Utilities.cs -------------------------------------------------------------------------------- /src/RE2.Managed/FlexMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/FlexMatch.cs -------------------------------------------------------------------------------- /src/RE2.Managed/FlexMatchValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/FlexMatchValueComparer.cs -------------------------------------------------------------------------------- /src/RE2.Managed/GroupNameHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/GroupNameHeader.cs -------------------------------------------------------------------------------- /src/RE2.Managed/IRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/IRegex.cs -------------------------------------------------------------------------------- /src/RE2.Managed/IronRE2Regex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/IronRE2Regex.cs -------------------------------------------------------------------------------- /src/RE2.Managed/Match2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/Match2.cs -------------------------------------------------------------------------------- /src/RE2.Managed/MatchesCaptureGroupsOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/MatchesCaptureGroupsOutput.cs -------------------------------------------------------------------------------- /src/RE2.Managed/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/NativeMethods.cs -------------------------------------------------------------------------------- /src/RE2.Managed/RE2.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/RE2.LICENSE.txt -------------------------------------------------------------------------------- /src/RE2.Managed/RE2.Managed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/RE2.Managed.csproj -------------------------------------------------------------------------------- /src/RE2.Managed/RE2.Managed.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/RE2.Managed.targets -------------------------------------------------------------------------------- /src/RE2.Managed/RE2Regex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/RE2Regex.cs -------------------------------------------------------------------------------- /src/RE2.Managed/Regex2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/Regex2.cs -------------------------------------------------------------------------------- /src/RE2.Managed/RegexDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/RegexDefaults.cs -------------------------------------------------------------------------------- /src/RE2.Managed/String8Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/String8Interop.cs -------------------------------------------------------------------------------- /src/RE2.Managed/Submatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/Submatch.cs -------------------------------------------------------------------------------- /src/RE2.Managed/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Managed/Timeout.cs -------------------------------------------------------------------------------- /src/RE2.Native.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native.sln -------------------------------------------------------------------------------- /src/RE2.Native/CMake.Original/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/CMake.Original/README.txt -------------------------------------------------------------------------------- /src/RE2.Native/CMake.Original/re2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/CMake.Original/re2.vcxproj -------------------------------------------------------------------------------- /src/RE2.Native/CMake.Original/re2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/CMake.Original/re2.vcxproj.filters -------------------------------------------------------------------------------- /src/RE2.Native/GroupNameHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/GroupNameHeader.h -------------------------------------------------------------------------------- /src/RE2.Native/Match2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/Match2.h -------------------------------------------------------------------------------- /src/RE2.Native/MatchesCaptureGroupsOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/MatchesCaptureGroupsOutput.h -------------------------------------------------------------------------------- /src/RE2.Native/RE2.Native.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/RE2.Native.props -------------------------------------------------------------------------------- /src/RE2.Native/RE2.Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/RE2.Native.vcxproj.filters -------------------------------------------------------------------------------- /src/RE2.Native/RE2.Native.x64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/RE2.Native.x64.vcxproj -------------------------------------------------------------------------------- /src/RE2.Native/RE2.Native.x86.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/RE2.Native.x86.vcxproj -------------------------------------------------------------------------------- /src/RE2.Native/RE2Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/RE2Native.cpp -------------------------------------------------------------------------------- /src/RE2.Native/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/ReadMe.txt -------------------------------------------------------------------------------- /src/RE2.Native/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/String8.h -------------------------------------------------------------------------------- /src/RE2.Native/Submatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/Submatch.h -------------------------------------------------------------------------------- /src/RE2.Native/re2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/re2.props -------------------------------------------------------------------------------- /src/RE2.Native/re2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/re2.vcxproj.filters -------------------------------------------------------------------------------- /src/RE2.Native/re2.x64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/re2.x64.vcxproj -------------------------------------------------------------------------------- /src/RE2.Native/re2.x86.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/re2.x86.vcxproj -------------------------------------------------------------------------------- /src/RE2.Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/stdafx.cpp -------------------------------------------------------------------------------- /src/RE2.Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/stdafx.h -------------------------------------------------------------------------------- /src/RE2.Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/RE2.Native/targetver.h -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Benchmark/Benchmarks/AnalyzeCommandBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Benchmark/Benchmarks/AnalyzeCommandBenchmarks.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Benchmark/Program.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Benchmark/Sarif.PatternMatcher.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Benchmark/Sarif.PatternMatcher.Benchmark.csproj -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/AnalyzeDatabaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/AnalyzeDatabaseCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/AnalyzeDatabaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/AnalyzeDatabaseOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/App.config -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/DatabaseReaders/BaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/DatabaseReaders/BaseReader.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/DatabaseReaders/IDatabaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/DatabaseReaders/IDatabaseReader.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/DatabaseReaders/KustoDatabaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/DatabaseReaders/KustoDatabaseReader.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/DatabaseReaders/SqlLiteDatabaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/DatabaseReaders/SqlLiteDatabaseReader.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Enums/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Enums/ConnectionType.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ExportConfigurationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ExportConfigurationCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ExportRulesMetatadaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ExportRulesMetatadaCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ExportRulesMetatadaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ExportRulesMetatadaOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ExportSearchDefinitionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ExportSearchDefinitionsCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ExportSearchDefinitionsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ExportSearchDefinitionsOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ImportAndAnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ImportAndAnalyzeCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/ImportAndAnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/ImportAndAnalyzeOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Models/ArrayOfContentSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Models/ArrayOfContentSearcher.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Models/ContentSearchPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Models/ContentSearchPatterns.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Models/ContentSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Models/ContentSearcher.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Program.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Cli/Sarif.PatternMatcher.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Cli/Sarif.PatternMatcher.Cli.csproj -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/FunctionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/FunctionConstants.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/HttpAnalyzeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/HttpAnalyzeFunction.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/Properties/ServiceDependencies/SecToolFuncCore20210105011210 - Zip Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/Properties/ServiceDependencies/SecToolFuncCore20210105011210 - Zip Deploy/profile.arm.json -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/Sarif.PatternMatcher.Function.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/Sarif.PatternMatcher.Function.csproj -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/SpamAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/SpamAnalyzer.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/host.json -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Function/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Function/local.settings.json -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/AssetPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/AssetPlatform.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/Crc32.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/DynamicValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/DynamicValidatorBase.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/Fingerprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/Fingerprint.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/FingerprintElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/FingerprintElements.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/Sarif.PatternMatcher.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/Sarif.PatternMatcher.Sdk.csproj -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/SharedUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/SharedUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/StaticValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/StaticValidatorBase.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/ValidationResult.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/ValidationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/ValidationState.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/ValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/ValidatorBase.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher.Sdk/ValidatorDescriptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher.Sdk/ValidatorDescriptorAttribute.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/AnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/AnalyzeCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/AnalyzeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/AnalyzeContext.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/AnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/AnalyzeOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/Base64EncodingMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/Base64EncodingMatch.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/CachedDotNetRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/CachedDotNetRegex.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/DotNetRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/DotNetRegex.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/JsonLogicalLocationProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/JsonLogicalLocationProcessor.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/MatchExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/MatchExpression.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/RegexEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/RegexEngine.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/RegexMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/RegexMetadata.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/Sarif.PatternMatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/Sarif.PatternMatcher.csproj -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SearchDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SearchDefinition.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SearchDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SearchDefinitions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SearchSkimmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SearchSkimmer.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SimpleFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SimpleFix.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SpamEventNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SpamEventNames.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SpamExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SpamExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SpamResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SpamResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/SpamResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/SpamResources.resx -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/ValidateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/ValidateCommand.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/ValidateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/ValidateOptions.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/ValidatingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/ValidatingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/ValidationMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/ValidationMethods.cs -------------------------------------------------------------------------------- /src/Sarif.PatternMatcher/ValidatorsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Sarif.PatternMatcher/ValidatorsCache.cs -------------------------------------------------------------------------------- /src/SarifPatternMatcher.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/SarifPatternMatcher.runsettings -------------------------------------------------------------------------------- /src/SarifPatternMatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/SarifPatternMatcher.sln -------------------------------------------------------------------------------- /src/Shared/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Shared/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Strings.Interop/FlexString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Strings.Interop/FlexString.cs -------------------------------------------------------------------------------- /src/Strings.Interop/String8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Strings.Interop/String8.cs -------------------------------------------------------------------------------- /src/Strings.Interop/Strings.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Strings.Interop/Strings.Interop.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.RE2.Managed/FlexMatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.RE2.Managed/FlexMatchTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.RE2.Managed/FlexMatchValueComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.RE2.Managed/FlexMatchValueComparerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.RE2.Managed/Regex2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.RE2.Managed/Regex2Tests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.RE2.Managed/Test.UnitTests.RE2.Managed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.RE2.Managed/Test.UnitTests.RE2.Managed.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/AnalyzeCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/AnalyzeCommandTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/ExportRulesMetatadaCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/ExportRulesMetatadaCommandTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/ExportSearchDefinitionsCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/ExportSearchDefinitionsCommandTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/ProgramTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/ProgramTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/SharedStrings.txt: -------------------------------------------------------------------------------- 1 | $MultipartRegexesId=(x|y)?(?Pid[0-9]) -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/SimplePatterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/SimplePatterns.json -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/Test.UnitTests.Sarif.PatternMatcher.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/Test.UnitTests.Sarif.PatternMatcher.Cli.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/TestValidators/StaticAndDynamicValidatorsExistForMatchExpressionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/TestValidators/StaticAndDynamicValidatorsExistForMatchExpressionValidator.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Cli/TestValidators/StaticValidatorExistsForMatchExpressionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Cli/TestValidators/StaticValidatorExistsForMatchExpressionValidator.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Function/HttpAnalyzeFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Function/HttpAnalyzeFunctionTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Function/Test.UnitTests.Sarif.PatternMatcher.Function.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Function/Test.UnitTests.Sarif.PatternMatcher.Function.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Function/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Function/TestHelper.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Function/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Function/TestLogger.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Sdk/Crc32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Sdk/Crc32Tests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Sdk/ExtensionMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Sdk/ExtensionMethodTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Sdk/FingerprintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Sdk/FingerprintTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Sdk/StaticValidatorBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Sdk/StaticValidatorBaseTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher.Sdk/Test.UnitTests.Sarif.PatternMatcher.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher.Sdk/Test.UnitTests.Sarif.PatternMatcher.Sdk.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/AnalyzeCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/AnalyzeCommandTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/BadlyBehavedRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/BadlyBehavedRule.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/ExtensionMethodsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/ExtensionMethodsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/JsonLogicalLocationProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/JsonLogicalLocationProcessorTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/PatternInvariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/PatternInvariantTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/SearchSkimmerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/SearchSkimmerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/SharedUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/SharedUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/SpamTestRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/SpamTestRule.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/Test.UnitTests.Sarif.PatternMatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/Test.UnitTests.Sarif.PatternMatcher.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/TestAnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/TestAnalyzeCommand.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/TestLogger.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/TestRuleValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/TestRuleValidator.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/ValidatingVisitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/ValidatingVisitorTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/ValidationResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/ValidationResultTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.PatternMatcher/ValidatorsCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Sarif.PatternMatcher/ValidatorsCacheTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Strings.Interop/FlexStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Strings.Interop/FlexStringTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Strings.Interop/String8Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Strings.Interop/String8Tests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Strings.Interop/Test.UnitTests.Strings.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/Test.UnitTests.Strings.Interop/Test.UnitTests.Strings.Interop.csproj -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/src/stylecop.json -------------------------------------------------------------------------------- /targets/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/Key.snk -------------------------------------------------------------------------------- /targets/build.app.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.app.props -------------------------------------------------------------------------------- /targets/build.common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.common.props -------------------------------------------------------------------------------- /targets/build.lib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.lib.props -------------------------------------------------------------------------------- /targets/build.plugins.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.plugins.props -------------------------------------------------------------------------------- /targets/build.product.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.product.props -------------------------------------------------------------------------------- /targets/build.test.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/targets/build.test.props -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-pattern-matcher/HEAD/version.json --------------------------------------------------------------------------------