Merge branch 'filter-set-unsplit-continue-action'

This commit is contained in:
David Lönnhager
2022-04-19 11:08:38 +02:00
2 changed files with 7 additions and 16 deletions

View File

@@ -20,6 +20,9 @@ Line wrap the file at 100 chars. Th
* **Security**: in case of vulnerabilities.
## [Unreleased]
### Security
- For non-excluded DNS traffic, evaluate all appropriate filters within the DNS sublayer when a soft
permit has been applied in a higher-priority sublayer.
## [1.2.0.0] - 2022-01-10
### Changed

View File

@@ -380,10 +380,7 @@ CalloutClassifyBind
return;
}
if (ClassifyOut->actionType == FWP_ACTION_NONE)
{
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
}
ClassificationReset(ClassifyOut);
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
{
@@ -727,10 +724,7 @@ CalloutClassifyConnect
return;
}
if (ClassifyOut->actionType == FWP_ACTION_NONE)
{
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
}
ClassificationReset(ClassifyOut);
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
{
@@ -940,10 +934,7 @@ CalloutPermitSplitApps
return;
}
if (ClassifyOut->actionType == FWP_ACTION_NONE)
{
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
}
ClassificationReset(ClassifyOut);
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
{
@@ -1093,10 +1084,7 @@ CalloutBlockSplitApps
return;
}
if (ClassifyOut->actionType == FWP_ACTION_NONE)
{
ClassifyOut->actionType = FWP_ACTION_CONTINUE;
}
ClassificationReset(ClassifyOut);
if (!FWPS_IS_METADATA_FIELD_PRESENT(MetaValues, FWPS_METADATA_FIELD_PROCESS_ID))
{