Skip to content

Commit fe62ed4

Browse files
authored
Merge pull request #1 from grepstrength/grepstrength-patch-1
Add files via upload
2 parents b4c6fac + b86d2ac commit fe62ed4

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
title: Suspicious Shellcode Injection into RegSvcs.exe
2+
id: 42833cf3-dd1d-4530-8c87-90c55393ad42
3+
status: experimental
4+
description: Detects potential shellcode injection into RegSvcs.exe based on suspicious Windows API calls.
5+
references:
6+
- https://osintteam.blog/opened-a-can-of-xworms-33fde9d2aee6
7+
author: Kelvin "grepStrength" Winborne
8+
date: 2025/10/15
9+
tags:
10+
- attack.execution
11+
- attack.t1055
12+
logsource:
13+
category: process_creation
14+
product: windows
15+
detection:
16+
selection:
17+
Image|endswith: '\RegSvcs.exe'
18+
OriginalFileName: 'RegSvcs.exe'
19+
suspicious_behavior:
20+
- CallTrace|contains: 'VirtualAlloc'
21+
- CallTrace|contains: 'WriteProcessMemory'
22+
- CallTrace|contains: 'CreateRemoteThread'
23+
- CallTrace|contains: 'NtProtectVirtualMemory'
24+
condition: selection and 1 of suspicious_behavior
25+
fields:
26+
- Image
27+
- ParentImage
28+
- CommandLine
29+
- CallTrace
30+
falsepositives:
31+
- Known .NET assembly registration
32+
level: high

0 commit comments

Comments
 (0)