Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ NDroid
=========
NDroid is a dynamic taint analysis system on Android, which focus on tracing information flow through JNI with low performance overhead. More details about NDroid can be found in our published paper [here]( http://www4.comp.polyu.edu.hk/~csxluo/NDroid.pdf).

####NDroid uses following open source projects:
### NDroid uses following open source projects:
* [TaintDroid](http://appanalysis.org)
* [DroidScope](https://code.google.com/p/decaf-platform/wiki/DroidScope)
* [darm](http://darm.re)

####Please note that:
### Please note that:
* The old NDroid prototype's code is kind of messy and not extensible. Therefore, I am rebuilding NDroid with goals: making it faster, more effective and extensible.
* Currently, this version is still under developing, so that it cannot be used to analyze apps. Once the core functions are completed, I will create a patch.
* The TaintDroid source code I use is [4.1.1_r6](http://appanalysis.org/download_4.1.html).

####How to build?
## How to build?
* Build TaintDroid 4.1.1_r6 following the instruction [here](http://appanalysis.org/download_4.1.html).
* Clone NDroid source code: cd TaintDroid/external/ & git clone https://github.com/0-14N/NDroid.git ndroid
* Setup building environment: cd TaintDroid/ & . build/envsetup.sh & lunch full-eng
Expand All @@ -22,11 +22,11 @@ NDroid is a dynamic taint analysis system on Android, which focus on tracing inf
* Start tracing process with command "nd_trace_pid pid" or "nd_trace_uid uid"; stop tracing by typing "nd_stop_trace_pid pid" or "nd_stop_trace_uid uid".
* The log of NDroid "NDroid.log" is under directory "objs".

####Issues:
## Issues:
* If commands provided by DroidScope ("ps", "pt") output nothing, try modifying files "objs/kernelinfo.conf" and "ndroid/DECAF_shared/DroidScope/DS_Common.h", making the offesets correclty.
* As reported by my friends, there are bugs for decoding Thumb-2 instructions and handling taint propagations of certain ARM instructions. (Not fixed yet.)

####Others:
## Others:
* There is little possibility that I will continue working on NDroid for following reasons:
1. Android Lollipop totally abandoned DVM! (So do I ... )
2. I have to admit that the performance overhead produced by NDroid makes it impractical for analyzing real apps with large amounts of native code.
Expand Down