入口点函数分析

问题描述

我想问一下dependency walker的入口点是什么>

它们是 dll 函数加载到内存的位置吗?

什么是序数和提示

在dependcy walker的底部,它说my_DF <- read.table(header=TRUE,text= "a b c x 1 1 x 1 NA y NA 1 y 1 1") my_DF[rowSums(is.na(my_DF)) == 0 | my_DF$a == 'x',] #> a b c #> 1 x 1 1 #> 2 x 1 NA #> 4 y 1 1

这是否意味着该进程与 NCRYPT.DLL 分离?第一个和第二个内存地址是什么?

感谢您的帮助! :)

更新:您需要至少 10 个声望才能发布图片。 只能发链接抱歉

[image]1

解决方法

Does this mean that the process detached from NCRYPT.DLL? - 是的。

What are the first and second memory addresses? - 只有第一个是地址,这个 dll 的模块基础,第二个是一个标志,表明进程正在终止。

herelpvReserved在评论部分)。