Skip to content

Commit 961042f

Browse files
committed
Merge remote-tracking branch 'origin/release/v11.2.2' into release/v11.2.2
2 parents 4a0fbfd + 0443163 commit 961042f

File tree

12 files changed

+8
-598
lines changed

12 files changed

+8
-598
lines changed

etc/scripts/Pipfile

Lines changed: 0 additions & 18 deletions
This file was deleted.

etc/scripts/Pipfile.lock

Lines changed: 0 additions & 456 deletions
This file was deleted.

etc/scripts/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

etc/scripts/brute_force_office365.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

etc/scripts/brute_force_ssh.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

etc/scripts/brute_force_windows.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

filters/sophos/sophos_xg_firewall.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sophos_XG filter, version 3.0.2
1+
# Sophos_XG filter, version 3.0.4
22
# Supports SF 20.0 version log types
33
# See manual: https://docs.sophos.com/nsg/sophos-firewall/20.0/pdf/sf-syslog-guide-20.0.pdf
44
# and documentation https://docs.sophos.com/nsg/sophos-firewall/20.0/Help/en-us/webhelp/onlinehelp/AdministratorHelp/Logs/TroubleshootingLogs/LogFileDetails/index.html#https-ftp-waf
@@ -11,7 +11,7 @@ pipeline:
1111
- grok:
1212
patterns:
1313
- fieldName: log.syslogPriority
14-
pattern: '\<{{.data}}\>'
14+
pattern: '\<{{.integer}}\>'
1515
- fieldName: log.syslogVersion
1616
pattern: '{{.integer}}'
1717
- fieldName: log.syslogDeviceTime
@@ -29,7 +29,7 @@ pipeline:
2929
- grok:
3030
patterns:
3131
- fieldName: log.syslogPriority
32-
pattern: '\<{{.data}}\>'
32+
pattern: '\<{{.integer}}\>'
3333
- fieldName: log.restData
3434
pattern: '{{.greedy}}'
3535
source: raw

frontend/src/app/app-module/guides/guide-syslog/guide-syslog.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {Component, Input, OnInit} from '@angular/core';
22
import {UtmModulesEnum} from '../../shared/enum/utm-module.enum';
3+
import {PLATFORMS} from "../shared/constant";
34
import {Step} from '../shared/step';
45
import {SYSLOGSTEPS} from './syslog.steps';
5-
import {PLATFORMS} from "../shared/constant";
66

77
@Component({
88
selector: 'app-guide-syslog',
@@ -45,7 +45,6 @@ export class GuideSyslogComponent implements OnInit {
4545
{module: UtmModulesEnum.DECEPTIVE_BYTES, port: '7010 TCP'},
4646
{module: UtmModulesEnum.DECEPTIVE_BYTES, port: '7010 UDP'},
4747

48-
{module: UtmModulesEnum.SOPHOS_XG, port: '7008 TCP'},
4948
{module: UtmModulesEnum.SOPHOS_XG, port: '7008 UDP'},
5049

5150
{module: UtmModulesEnum.SYSLOG, port: '7014 TCP'},

frontend/src/app/rule-management/app-rule/components/import-rules/import-rule.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ export class ImportRuleComponent implements OnInit, OnDestroy {
124124
dataTypes: file.dataTypes && file.dataTypes.length > 0 ? file.dataTypes : []
125125
};
126126
});
127-
console.log('filesWithDataTypes', filesWithDataTypes);
128127

129128
// Fetch and filter data types for each file
130129
forkJoin(
@@ -147,7 +146,7 @@ export class ImportRuleComponent implements OnInit, OnDestroy {
147146
integrity: file.impact.integrity || 0,
148147
availability: file.impact.availability || 0,
149148
definition: file.where || '',
150-
afterEvents: file.afterEvents || [],
149+
afterEvents: file.afterEvents || file.correlation || [],
151150
dataTypes: filteredDataTypes.filter(dt => !!dt)
152151
}))
153152
),

frontend/src/app/rule-management/app-rule/components/import-rules/import-rule.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export class ImportRuleService {
157157
'impact',
158158
'where',
159159
'afterEvents',
160+
'correlation',
160161
'name',
161162
'adversary',
162163
'confidentiality',

0 commit comments

Comments
 (0)