gpt4 book ai didi

c - C 中 Linux 上的内存模式扫描

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:38 24 4
gpt4 key购买 nike

我正在寻找一种方法来扫描程序内存中的特定模式。该程序正在加载我们的代码作为库 (.so)。

这是我的尝试:

unsigned long FindPattern(char *pattern, char *mask)
{
void *address;
unsigned long size, i;

// NULL = We want the base address of the process we are loaded in
address = dlopen(NULL, 0); // Would be GetModuleHandle(NULL) on Windows

// The size of the program, would be GetModuleInformation.SizeOfImage on Windows
size = 0x128000; // Didn't find a way for Linux

for(i = 0; i < size; i++)
{
if(_compare((unsigned char *)(address + i), (unsigned char *)pattern, mask))
return (unsigned long)(address + i);
}
return 0;
}

int _compare(unsigned char *data, unsigned char *pattern, char *mask)
{
for(; *mask; ++mask, ++data, ++pattern)
{
if(*mask == 'x' && *data != *pattern) // Crashes here according to gdb
return 0;
}
return (*mask) == 0;
}

但这一切都行不通。从 dlopen 开始,它不会返回我们加载的程序的正确基址。我也尝试过 link_map,如 here 所解释的那样。 .我确实知道来自 IDA 和 gdb 的地址,这就是为什么我知道 dlopen 返回错误值的原因。

在 CentOS 6.5 64 位上使用 gcc-4.4.7。该程序是一个 32 位可执行二进制文件。

最佳答案

dlopen 返回库的 HANDLE,而不是指向包含库的内存的指针。

您需要使用dlsym 来获取函数的地址。

handle = dlopen(NULL, RTLD_LAZY);

address = dlsym(handle, "main");

现在您将有一个可以查看的地址。

“main”可能不是最好的起点,但它在这里可以作为示范。请务必找到位于程序早期的符号,以便进行全面搜索。

作为奖励,加快您的搜索/比较循环:

// The size of the program, would be GetModuleInformation.SizeOfImage on Windows
size = 0x128000; // Didn't find a way for Linux

unsigned char* ptr = address;

while (1)
{

/* hmmm, gets complicated if we need to mask src char then compare pattern, I punted
* and just compared for first char of pattern. It's just an idea... */

ptr = memcmp(ptr, pattern[0], (size - ptr + address));

if (ptr==NULL)
break;

if (_compare(ptr, (unsigned char *)pattern, mask))
return ptr;
}

关于c - C 中 Linux 上的内存模式扫描,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24336791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com