程序分析

网络研究院1 个月前
网络安全·软件分析·程序分析·动态分析·逆向工程·调试器·反汇编程序
x64dbg: 用于Windows的开源二进制调试器x64dbg是Windows的开源二进制调试器,专为恶意软件分析和可执行文件的逆向工程而设计,无需访问源代码。
I still …10 个月前
大模型·程序分析·漏洞检测
LLM 4 Vulnerability Detectionpaper地址Issues:Resource Acquisition/Release APIs的完全性以及漏报问题:现有resource leak的检测方式依赖于与定义API pair的完全性, 但FindBugs, Infer, CodeInspection只支持resource leak api的一个子集合。 因此,特定api相关 (AndroidHttpClient) 会被漏报。
boss-dog10 个月前
程序分析·内存泄漏·valgrind
Valgrind——程序分析工具Valgrind是运行在linux上的程序分析工具,它包含很多小工具: memcheck(内存泄露检查工具)等。
青衫客361 年前
软件分析·程序分析
Some optimizations based on analyzing program dynamic behaviorAnalyzing the dynamic behavior of a program provides valuable insights, as evidenced by the mentioned observations: the frequency of function calls, identification of unused functions, and the sequence of function calls. Here’s how you can optimize based
青衫客361 年前
软件分析·程序分析
Memory Access TracingMemory Access Tracing refers to the monitoring and recording of all memory read and write operations during the execution of a program. It provides insight into how a program interacts with its memory, which is invaluable for various applications like per