This commit is contained in:
parent
d1dba30426
commit
471a176683
16 changed files with 181 additions and 149 deletions
|
@ -129,7 +129,11 @@ Hovewer, static analysis tools must overcom many challenges when analysing Andro
|
|||
/ the potential dynamic code loading: An application can run code that was not originally in the application.
|
||||
/ the use of reflection: Methods can be called from their name as a string object, which is difficult to identify statically.
|
||||
/ the continual evolution of Android: each new version of Android brings new features that an analysis tools must be aware of.
|
||||
For instance, the multi-dex feature presented in @sec:bg-android-code-format was introduced in Android #SDK 21.
|
||||
For instance, the multi-dex feature presented in @sec:bg-android-apk was introduced in Android #SDK 21.
|
||||
Tools unaware of this feature only analyse the `classes.dex` file an will ignore all other `classes<n>.dex` files.
|
||||
|
||||
#todo[Ca serait bien de souligner Dyn Code Load et Reflection]
|
||||
|
||||
#v(2em)
|
||||
|
||||
With the bases of Android application analysis in mind, we can now examine our problem statements further.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue