-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathantidbg.h
41 lines (34 loc) · 1.04 KB
/
antidbg.h
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
#pragma once
#define DETECT (200)
#define NOT_DETECT (201)
#define STAT_PID (0)
#define STAT_NAME (1)
#define STAT_PPID (3)
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <signal.h>
#include <dirent.h>
#include <algorithm>
#include <unistd.h>
#include <memory>
#include <unordered_set>
#include <openssl/sha.h>
#include <iomanip>
#include "error_codes.h"
class CAntiDebugger {
public:
CAntiDebugger();
~CAntiDebugger();
void Detect();
private:
std::string GetStatInfo(const std::string& strPath); // /proc/[pid]/stat 파일 읽기
std::vector<std::string> ParseStat(const std::string& strStat); // /proc/[pid]/stat 데이터 파싱
int CheckProcess(); // 실행 중인 프로세스를 확인하여 디버거 감지
std::string GetName(); //현재 실행되는 내 프로그램의 이름 가져오기 ex: (UdkdAgent)
std::string GetHash(const std::string& filePath); //sha256으로 해시하는 함수
std::string mProcessName;
std::string mGdbHash;
};