邻接表

模板代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 int idx; int h[N], e[N], ne[N], w[N;] // 注意这里要初始化 head 为 -1 memset(h, 0xff, sizeof(h)); // 加入有向边 (x, y),权值为 z void add(int x, int y, int z) { // 真实数...

June 22, 2023 · 1 min · 222 words · JUHUA 创建: June 22, 2023 | 更新: June 22, 2023 | 时长: 1分钟 | JUHUA

闫氏DP分析法

题干:N 个物品,每个物品有对应的价值和体积,背包容量为 V,如何选择物品使得在不超过背包容量的前提下,价值之和最大。 每个物品都可以选和不选,两...

June 22, 2023 · 1 min · 501 words · JUHUA 创建: June 22, 2023 | 更新: June 22, 2023 | 时长: 1分钟 | JUHUA

静态链接栈溢出

利用int 80h系统调用 设置系统调用参数即可执行 execve("\bin\sh",0,0),获取shell ,四个参数分别...

June 22, 2023 · 1 min · 295 words · JUHUA 创建: June 22, 2023 | 更新: June 22, 2023 | 时长: 1分钟 | JUHUA

Automatic Recovery of Fine-grained Compiler Artifacts at the Binary Level

中文译名:二进制级细粒度编译器工件的自动恢复 作者:Yufei Du 单位:北卡罗来纳大学教堂山分校 国家: #美国 年份: #2022年 来源: #USENI...

June 11, 2023 · 10 min · 4992 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 10分钟 | JUHUA

Automatic Recovery of Fine-grained Compiler Artifacts at the Binary Level复现

[[Automatic Recovery of Fine-grained Compiler Artifacts at the Binary Level]] GitHub 地址:zeropointdynamics/passtell (github.com) 数据集结构 passtell_dataset. tar. xz :PassTell 实验中使用的数据集的存档...

June 11, 2023 · 5 min · 2095 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 5分钟 | JUHUA

Fine-Grained Compiler Identification With Sequence-Oriented Neural Modeling

中文译名:基于面向序列的神经模型的细粒度编译器识别 作者:ZHENZHOU TIAN 单位: 西安邮电大学 国家: #中国 年份: #2021年 来源: #IEEE_ACCESS 关键字: #...

June 11, 2023 · 10 min · 4988 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 10分钟 | JUHUA

Identifying Compiler and Optimization Level in Binary Code From Multiple Architectures

中文译名:多体系结构二进制代码中编译器和优化级别的识别 作者:DAVIDE PIZZOLOTTO 单位:大阪大学 国家: #日本 年份: #2021年 来源: #IEEE_ACCESS 关键字: #编译...

June 11, 2023 · 12 min · 5595 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 12分钟 | JUHUA

Identifying Compiler and Optimization Level in Binary Code From Multiple Architectures复现

代码地址:GitHub - inoueke-n/optimization-detector: Optimization detection over compiled binaries [[Identifying Compiler and Optimization Level in Binary Code From Multiple Architectures]] 准备 实验用到的数据集 following link. 也可以自己按照 readme. md 文件中的 generation 节中的步骤来自己生成数据集。(...

June 11, 2023 · 2 min · 650 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 2分钟 | JUHUA

NeuralCI 复现

[[Fine-Grained Compiler Identification With Sequence-Oriented Neural Modeling]] 实验评估中用 NeuralBS CNN,NeuralSD CNN 和 NeuralAD CNN 来表示基础 CNN,带有缩放点积注意力的增强 CNN 和带有附加注意力的增强 CNN 在以下实验评...

June 11, 2023 · 1 min · 237 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 1分钟 | JUHUA

VulHawk Cross-architecture Vulnerability Detection with Entropy-based Binary Code Search

中文译名:VulHawk:基于熵的二进制代码搜索的跨架构漏洞检测 作者:Zhenhao Luo 单位:国防科大 国家: #中国 年份: #2023年 来源: #N...

June 11, 2023 · 15 min · 7247 words · JUHUA 创建: June 11, 2023 | 更新: June 11, 2023 | 时长: 15分钟 | JUHUA