-
Notifications
You must be signed in to change notification settings - Fork 3
/
BypassSbieProcIsolate.cpp
65 lines (53 loc) · 1.32 KB
/
BypassSbieProcIsolate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// BypassSbieProcIsolate.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include "Enum.h"
#include "IpcInSide.h"
#include "IpcOutSide.h"
#include "spdlog/spdlog.h"
#include <Windows.h>
#include <stdio.h>
/* 思路:
* 1.借助 APIMonitor ,或 msdn 把所有的 API 都看一遍,找到可能利用的 API,写代码测试。
* 2.重看 Windows 核心编程,找突破口
*/
void Test_Enum()
{
spdlog::info("============== [{}] ==============", __FUNCTION__);
// 进程名遍历
Enum_CreateToolhelp32Snapshot();
Enum_EnumProcesses();
Enum_WTSEnumerateProcess();
Enum_ZwQuerySystemInformation();
Enum_DirectSystemCalls();
Enum_OpenProcess();
Enum_PerformanceData();
Enum_PerformanceDataHelper();
// 进程特征遍历
Enum_EnumWindows();
Enum_EnumChildWindows();
Enum_EnumDesktopWindows();
Enum_EnumThreadWindows();
Enum_GetNextWindow();
Enum_IsWindow();
Enum_FindWindowEx();
Enum_HotKey();
Enum_NtQueryDirectoryObject();
Enum_WindowFromPoint();
Enum_Test();
}
void Test_IpcInSide()
{
IpcInSide_CreateNamedPipe();
IpcInSide_BroadcastSystemMessage();
IpcInSide_SendMessage();
}
void Test_IpcOutSide()
{
}
int main()
{
Test_Enum();
Test_IpcInSide();
Test_IpcOutSide();
getchar();
}