Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/huoji120/CobaltStrikeDetected

40行代码检测到大部分CobaltStrike的shellcode
https://github.com/huoji120/CobaltStrikeDetected

Last synced: 21 days ago
JSON representation

40行代码检测到大部分CobaltStrike的shellcode

Awesome Lists containing this project

README

        

# 介绍

无文件落地的木马主要是一段可以自定位的shellcode组成,特点是没有文件,可以附加到任何进程里面执行。一旦特征码被捕获甚至是只需要xor一次就能改变特征码.由于传统安全软件是基于文件检测的,对目前越来越多的无文件落地木马检查效果差.

**基于内存行为特征的检测方式,可以通过检测执行代码是否在正常文件镜像区段内去识别是否是无文件木马.由于cobaltstrike等无文件木马区段所在的是private内存,所以在执行loadimage回调的时候可以通过堆栈回溯快速确认是否是无文件木马**

检测只需要40行代码:

1. 在loadimagecallback上做堆栈回溯
2. 发现是private区域的内存并且是excute权限的code在加载dll,极有可能,非常有可能是无文件木马或者是shellcode在运行

核心代码如下:

```cpp
void LoadImageNotify(PUNICODE_STRING pFullImageName, HANDLE pProcessId, PIMAGE_INFO pImageInfo)
{
UNREFERENCED_PARAMETER(pFullImageName);
UNREFERENCED_PARAMETER(pProcessId);
UNREFERENCED_PARAMETER(pImageInfo);
if (KeGetCurrentIrql() != PASSIVE_LEVEL)
return;
if (PsGetCurrentProcessId() != (HANDLE)4 && PsGetCurrentProcessId() != (HANDLE)0) {
if (WalkStack(10) == false) {

DebugPrint("[!!!] CobaltStrike Shellcode Detected Process Name: %s\n", PsGetProcessImageFileName(PsGetCurrentProcess()));
ZwTerminateProcess(NtCurrentProcess(), 0);
return;
}
}
return;
}
```

堆栈回溯:

```cpp

bool WalkStack(int pHeight)
{
bool bResult = true;
PVOID dwStackWalkAddress[STACK_WALK_WEIGHT] = { 0 };
unsigned __int64 iWalkChainCount = RtlWalkFrameChain(dwStackWalkAddress, STACK_WALK_WEIGHT, 1);
int iWalkLimit = 0;
for (unsigned __int64 i = iWalkChainCount; i > 0; i--)
{
if (iWalkLimit > pHeight)
break;
iWalkLimit++;
if (CheckStackVAD((PVOID)dwStackWalkAddress[i])) {
DebugPrint("height: %d address %p \n", i, dwStackWalkAddress[i]);
bResult = false;
break;
}
}
return bResult;
}
```

使用:

编译好驱动,加载驱动,之后运行测试看看:

1. 普通生成(x32与x64)测试:
![1.png](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/1.png)

2. 基于VirtualAlloc的C代码测试:
![](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/2.png)

测试结果:
![3.png](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/3.png)

3. 基于powershell的测试:
![4.png](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/4.png)

4. 基于python的测试
![5.png](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/5.png)
测试结果:
![6.png](https://raw.githubusercontent.com/huoji120/CobaltStrikeDetected/master/images/6.png)

弊端:
目前已知的ngentask.exe、sdiagnhost.exe服务会触发这个检测规则(看样子是为了执行一些更新服务从微软服务端下载了一些shellcode之类的去运行).如果后续优化则需要做一个数字签名校验等给这些特殊的进程进行加白操作.这是工程问题,不是这个demo的问题

详细帖子链接:

相似但是不相同的项目: