Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rules/windows/lateral_movement_scheduled_task_target.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ query = '''
sequence by host.id, process.entity_id with maxspan = 1m
[network where host.os.type == "windows" and process.name : "svchost.exe" and
network.direction : ("incoming", "ingress") and source.port >= 49152 and destination.port >= 49152 and
source.ip != "127.0.0.1" and source.ip != "::1"
source.ip != "127.0.0.1" and source.ip != "::1" and source.ip != null
]
[registry where host.os.type == "windows" and event.type == "change" and registry.value : "Actions" and
registry.path : "*\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tasks\\*\\Actions"]
Expand Down
Loading