Third-Year Project ...
 
Notifications
Clear all

Third-Year Project - Android Forensics

5 Posts
5 Users
0 Reactions
1,129 Views
(@glasgowmegasnake)
New Member
Joined: 17 years ago
Posts: 3
Topic starter   [#4773]

Hi all,

I've chosen to do my third-year Computer Forensics project on Android Forensics. This will involve writing a program that is intended to pull files of interest off an Android device using the Android Debug Bridge (ADB), an Android sdk tool, and open them using sqlite etc.

Are there any issues you recommend I take particular care with? What would you do?

Also I intend to use C to write my program in. Is this a good choice for this sort of program? I'm not a great programmer and I'm only familiar with Java.

Any advice would be greatly appreciated.



   
Quote
(@alexc)
Reputable Member
Joined: 17 years ago
Posts: 301
 

you should look into the application level security of Android - you might find that it's an infuriatingly secure OS UNLESS the handset has been "rooted".

Don't let that put you off though - it's a facinating area to research - just be aware that it might weight more heavily on the research side of things!



   
ReplyQuote
(@angrybadger)
Estimable Member
Joined: 18 years ago
Posts: 164
 

Interesting thing to do but wouldnt this rely on the suspect phone having debug mode enabled? i.e. adb wont connect to the phone without it.

I had a quick google though and found this which looks like a lot of fun.
http//davanum.wordpress.com/2007/12/11/android-how-to-poke-around-the-sqlite3-databases/



   
ReplyQuote
ahoog
(@ahoog)
Eminent Member
Joined: 17 years ago
Posts: 47
 

As others have mentioned, you will not be able to pull any files under /data/data using ADB unless the daemon is running as root on the phone (this only happens on developer phones, rooted phones or in the emulator).

Also, the sqlite databases are a good start be a great deal of information lies outside the databases. In traditional computer forensics, I'd refer to the space as unallocated but the data partitions use YAFFS2 and this term does not seem to apply very well. The YAFFS2 file system is a log-structured file system and among other very interesting characteristics, it has the potential of producing versioning on files.

You can find some details on my blog at

http//viaforensics.com/category/android-forensics/

but much of our R&D is put into training and the book we hope to one day publish. Feel free to contact me if you wish to discuss further…I am working with several students on Android projects.



   
ReplyQuote
(@funkygeek)
Active Member
Joined: 17 years ago
Posts: 6
 

hi, I did something simular with my final year project.

Insead of using C or C++, try using C#(C sharp). You do not have to bother with pointers as it will sort out the memory management.



   
ReplyQuote
Share: