This commit is contained in:
parent
1d55be1853
commit
7371f454a9
2 changed files with 102 additions and 93 deletions
|
@ -141,17 +141,21 @@ We run the tools on the #APK before and after patching, and compared the finishi
|
|||
let nb_col = 3
|
||||
table(
|
||||
columns: (2fr, 2fr, 1fr),
|
||||
align: center+horizon,
|
||||
stroke: none,
|
||||
table.header(
|
||||
//[SHA 256], [Original CG edges], [New CG edges], [Edges added], [Reflection edges added],
|
||||
[SHA 256], [CG Edges added], [Reflection edges added],
|
||||
),
|
||||
table.hline(),
|
||||
..compared_callgraph.map(
|
||||
//(e) => ([#lower(e.sha256).slice(0, 10)...], num(e.edges_before), num(e.edges_after), num(e.added), num(e.added_ref_only))
|
||||
(e) => ([#lower(e.sha256).slice(0, 10)...], [#num(e.added) #h(.5em) #text(fill: luma(75))[(#num(e.edges_after) - #num(e.edges_before))]], num(e.added_ref_only))
|
||||
).flatten(),
|
||||
[#lower("5D2CD1D10ABE9B1E8D93C4C339A6B4E3D75895DE1FC49E248248B5F0B05EF1CE").slice(0, 10)...], table.cell(colspan: nb_col - 1)[Instrumentation Crached]
|
||||
[#lower("5D2CD1D10ABE9B1E8D93C4C339A6B4E3D75895DE1FC49E248248B5F0B05EF1CE").slice(0, 10)...], table.cell(colspan: nb_col - 1)[_Instrumentation Crached_],
|
||||
table.hline(),
|
||||
)},
|
||||
caption: []
|
||||
caption: [Edges added to the call graphes computed by Androguard by instrumenting the applications]
|
||||
) <tab:th-compare-cg>
|
||||
|
||||
=== Example
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue