Skip to content

Commit 1e416b6

Browse files
authored
[Hunt] Remove Default Namespace from indexes (#4866)
* [Hunt] Remove Default Namespace from indexes * markdown
1 parent 715e3f4 commit 1e416b6

4 files changed

+4
-4
lines changed

hunting/windows/docs/persistence_via_startup_with_low_occurrence_frequency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
## Query
1515

1616
```sql
17-
from logs-endpoint.events.file-*, logs-windows.sysmon_operational-default-*
17+
from logs-endpoint.events.file-*, logs-windows.sysmon_operational-*
1818
| where @timestamp > now() - 7 day
1919
| where host.os.family == "windows" and event.category == "file" and event.action in ("creation", "FileCreate") and
2020
file.path rlike """(C:\\Users\\.+\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\.+*|C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp\\.+)"""

hunting/windows/docs/scheduled_tasks_creation_for_unique_hosts_by_task_command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## Query
1616

1717
```sql
18-
from logs-system.security-default-*
18+
from logs-system.security-*
1919
| where @timestamp > now() - 7 day
2020
| where host.os.family == "windows" and event.code == "4698" and event.action == "scheduled-task-created"
2121
/* parsing unstructured data from winlog message to extract a scheduled task Exec command */

hunting/windows/queries/persistence_via_startup_with_low_occurrence_frequency.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ notes = [
1414
mitre = [ "T1547", "T1547.001"]
1515
query = [
1616
'''
17-
from logs-endpoint.events.file-*, logs-windows.sysmon_operational-default-*
17+
from logs-endpoint.events.file-*, logs-windows.sysmon_operational-*
1818
| where @timestamp > now() - 7 day
1919
| where host.os.family == "windows" and event.category == "file" and event.action in ("creation", "FileCreate") and
2020
file.path rlike """(C:\\Users\\.+\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\.+*|C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp\\.+)"""

hunting/windows/queries/scheduled_tasks_creation_for_unique_hosts_by_task_command.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ notes = [
1515
mitre = [ "T1053", "T1053.005"]
1616
query = [
1717
'''
18-
from logs-system.security-default-*
18+
from logs-system.security-*
1919
| where @timestamp > now() - 7 day
2020
| where host.os.family == "windows" and event.code == "4698" and event.action == "scheduled-task-created"
2121
/* parsing unstructured data from winlog message to extract a scheduled task Exec command */

0 commit comments

Comments
 (0)