Stats: 3,241,240 members, 8,116,946 topics. Date: Wednesday, 26 March 2025 at 08:01 PM |
Nairaland Forum / Science/Technology / Phones / How To Convert Java Phone To Android (70258 Views)
How To Convert .jar,.jad,.sis Etc Files To Apk File For Android / Java Phone Can Minimize Trust Me / How To Transfer Pictures From LG Phone to PC (2) (3) (4)
How To Convert Java Phone To Android by Nobody: 7:23pm On Jul 29, 2013 |
setting up the Ground Well, it seems people are getting crazy about Android platform(everyone is trying to buy an Android phone!). I don?t have an Android cell phone but, lets see if I can get my hands dirty with this Linux+java clean room engineered platform. To begin our journey we need Android SDK, a target to test with and the necessary tools. You can download the necessary file from these locations: Android SDK: http:// developer.Android.com/sdk/ index.html Deurus Android crackme 03: http:// crackmes.de/users/deurus/ android_crackme03/ Smali and baksmali: http:// code.google.com/p/smali/ Dex2jar: http://code.google.com/p/ dex2jar/ Java decompiler: http:// java.decompiler.free.fr/ Download and install Android SDK, SDK platform(latest is 2.2 at the time of writing), necessary Java packages and rest of the tools. Create a virtual device from SDK menu and start emulation. Within few minutes you can see the emulator booting up and showing the phone screen. Well, thats it! we have our emulator up and running. Getting Started with the Game Now we need to install the software (crackme, its legal!) to the emulator. For that you may have to get acquainted with Android debug bridge(adb). Installing a apk file is pretty simple, all you have to do is to run two commands from Android SDK directory/tools. Now we will play with it, pressing check button with no inputs pops a message 'Min 4 chars', and with a proper name it pops up 'Bad boy'. We have to remember these strings because we will be using them as our search keys when we disassemble the apk(actually dex) files. Also note that we have two hardware ids and we need to find out what those exactly means. Real Android Reversing As our crackme is up and running in emulator, we now move onto reversing it. If you have read apk file format, you can visualize it as a extended JAR file which essentially is a zip file. Now you can change the crackme file name from Crackme03.apk to Crackme03.zip and decompress it to any folder. Now the interesting file for us is classes.dex, which contains the compiled vm codes. We are going to disassemble the dex file with baksmali. Commands are pretty simple as you can see from screen shots. If everything worked fine, we will have a folder structure similar to Java packages. Interesting .smali files are located at '\com\example \helloandroid'. Open all the .smali files into your favorite text editor(I use Notepad++). If you have never done anything related to reverse engineering/esoteric programming/ assembly(IL) programming, you will probably think: WTF!. Relax. We have just opened a disassembled dex file. Now, if you are thinking how on earth someone can find the correct location of checking function, I hope you remember those pop up strings I told earlier. Yeah, 'Min 4 chars' and 'Bad boy'. Now we will use those strings as our search keys. Searching ?Min 4 chars? in all the opened .smali files, we will find a hit in HelloAndroid$2.smali line 130. Our aim is to understand the serial checking function and write a k*ygen for it. For that we have to know all the dalvik opcodes that are used here. You can visit this page to understand the opcodes and after that you can convert disassembled code to much higher language constructs. I will provide a brief code snippet which actually implements the algorithm. Two hardware ids used are IMEI and sim serial number. 01 //Read name from text box 02 const v23, 0x7f050004 03 invoke-virtual/range {v22 .. v23}, Lcom/example/helloandroid/ HelloAndroid;->findViewById (I)Landroid/view/View; 04 move-result-object v9 05 06 //Read serial from text box 07 const v23, 0x7f050006 08 invoke-virtual/range {v22 .. v23}, Lcom/example/helloandroid/ HelloAndroid;->findViewById (I)Landroid/view/View; 09 move-result-object v21 10 11 //Checking whether the name is of length greate than 4 12 const/16 v22, 0x4 13 move v0, v11 14 move/from16 v1, v22 15 if-ge v0, v1, :cond_51 16 17 //Popup showing Min 4 chars 18 const-string v23, "Min 4 chars" 19 const/16 v24, 0x1 20 .line 86 21 invoke-static/range {v22 .. v24}, Landroid/widget/Toast;->makeText (Landroid/content/Context;Ljava/ lang/CharSequence;I)Landroid/ widget/Toast; 22 move-result-object v13 23 .line 88 24 .local v13, notificacionToast:Landroid/widget/ Toast; 25 invoke-virtual {v13}, Landroid/ widget/Toast;->show()V 26 27 //There is a little exception trick to make integer string from username 28 //It converts aaaa to 97979797 which is ascii equivalent 29 invoke-virtual {v10, v5}, Ljava/ lang/String;->charAt(I)C 30 move-result v3 31 32 //Getting first 5 chars from ascii converted name 33 const/16 v22, 0x0 34 const/16 v23, 0x5 35 move-object v0, v12 36 move/from16 v1, v22 37 move/from16 v2, v23 38 invoke-virtual {v0, v1, v2}, Ljava/ lang/String;->substring(II)Ljava/lang/ String; 39 40 //Converting it into integer abd xoring with 0x6B016 - Serial part 1 41 invoke-static {v12}, Ljava/lang/ Integer;->parseInt(Ljava/lang/ String ![]() 42 move-result v22 43 const v23, 0x6b016 44 xor-int v22, v22, v23 45 46 //Getting IMEI from TelephonyManager 47 //http://developer.Android.com/ reference/Android/telephony/ TelephonyManager.html 48 invoke-virtual {v8}, Landroid/ telephony/TelephonyManager;- >getDeviceId()Ljava/lang/String; 49 move-result-object v6 50 .line 102 51 .local v6, imei2:Ljava/lang/String; 52 53 //Getting sim serial 54 invoke-virtual {v8}, Landroid/ telephony/TelephonyManager;- >getSimSerialNumber()Ljava/lang/ String; 55 move-result-object v16 56 .line 103 57 .local v16, simsn:Ljava/lang/String; 58 59 //Getting first 6 chars from IMEI, and similarly from sim serial (IMEI.Substring(0,6) will be used as Serial part 3) 60 const/16 v22, 0x0 61 const/16 v23, 0x6 62 move-object v0, v6 63 move/from16 v1, v22 64 move/from16 v2, v23 65 invoke-virtual {v0, v1, v2}, Ljava/ lang/String;->substring(II)Ljava/lang/ String; 66 67 //Converting them to integer and xoring - Serial part2 68 invoke-static/range {v19 .. v19}, Ljava/lang/Integer;->parseInt(Ljava/ lang/String ![]() 69 move-result v22 70 invoke-static/range {v20 .. v20}, Ljava/lang/Integer;->parseInt(Ljava/ lang/String ![]() 71 move-result v23 72 xor-int v22, v22, v23 73 74 //Making a new StringBuilder object and formatting the string to part1-part2-part3 75 new-instance v22, Ljava/lang/ StringBuilder; 76 invoke-static {v12}, Ljava/lang/ String;->valueOf(Ljava/lang/ Object ![]() 77 move-result-object v23 78 invoke-direct/range {v22 .. v23}, Ljava/lang/StringBuilder;->(Ljava/ lang/String ![]() 80 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append (Ljava/lang/String ![]() StringBuilder; 81 move-result-object v22 82 invoke-static/range {v17 .. v18}, Ljava/lang/String;->valueOf(J)Ljava/ lang/String; 83 move-result-object v23 84 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append (Ljava/lang/String ![]() StringBuilder; 85 move-result-object v22 86 const-string v23, "-" 87 invoke-virtual/range {v22 .. v23}, Ljava/lang/StringBuilder;->append (Ljava/lang/String ![]() StringBuilder; 88 move-result-object v22 89 move-object/from16 v0, v22 90 move-object/from16 v1, v19 91 invoke-virtual {v0, v1}, Ljava/lang/ StringBuilder;->append(Ljava/lang/ String ![]() 92 move-result-object v22 93 94 //Checking whether user entered serial and program made serials are equal. 95 invoke-virtual {v14, v15}, Ljava/ lang/String;->equals(Ljava/lang/ Object ![]() straight forward. It is using name and two hardware ids as input and doing some operations on them to make a serial. We can easily recode it in any programming language we prefer to make it as a k*ygen. Anyway, I am not posting any k*ygen sources as it will spoil the whole phun! Decoding the Algorithm A demonstrative serial calculation routine is given below: Name: aaaaa HW ID1: 0000000000000000 HW ID2: 89014103211118510720 Here are stepwise instructions on generating final serial number At first 'aaaaa' will be converted to '9797979797', from which we will take first 5 letters and convert it into integer 97979 This will be xored with 0x6B016 resulting 511661 and this will be first part of serial. For second part, we will take first 6 letters from HW ID1 and HW ID2, convert them to integer and xor, resulting 000000^890141 = 890141. For third part we will use first 6 characters from HW ID1. Formatting with the specified delimiter the serial will become '511661-890141-000000'. Final Verification of Reversing Now we will put the same magic number into our Crackme application. Bingo! everything worked as expected. Now, for all those who thinks it is pretty hard to read all those disassembled instructions and manually converting them to higher language constructs, there are other options. As dalvik is based on design of Java, it is also susceptible to decompilation. There is no decompiler available at this moment, but there is hope. For now we can use another utility which converts dex files to jar files so that we can use Java decompilers to see much more abstracted code. From starting of this blog post you may have noticed the tool dex2jar. Use dex2jar to convert classes.dex to classes.dex.dex2jar.jar. Open it in a Java decompiler and you can see much better output than dalvik disassembly. Please note that dex2jar is still in development phase and the output is meaningless at many places. This should be used only to get a quick understanding of all the functions. Conclusion In this introductory article, Dhanesh explains reversing Andriod using the emulator and all available tools in sequence with pictorial elaborative steps. It is mainly based to set up your ground for further reversing work on Andriod Platform. Well, thats it! We have analyzed an Android program and defeated its protection. Cheerio! 1 Like |
Re: How To Convert Java Phone To Android by OCTAVO: 7:37pm On Jul 29, 2013 |
Wetin be dis? ![]() I'm out ![]() 9 Likes |
Re: How To Convert Java Phone To Android by Adrenaline123(m): 7:42pm On Jul 29, 2013 |
this is super story, a life of ...... |
Re: How To Convert Java Phone To Android by weazley(m): 7:43pm On Jul 29, 2013 |
OCTAVO: Wetin be dis?As in eh, dis one na high level language, beta just buy n3, than stress yasef, *takes okada back to frontpage* |
Re: How To Convert Java Phone To Android by physise(m): 7:54pm On Jul 29, 2013 |
nawa o |
Re: How To Convert Java Phone To Android by busar(m): 8:18pm On Jul 29, 2013 |
D wahala wey dey dis one sef pass 13k o ![]() 1 Like |
Re: How To Convert Java Phone To Android by Francheezy(m): 10:02pm On Jul 29, 2013 |
Lmaooo Whu gonna try Diz ish ?? |
Re: How To Convert Java Phone To Android by Nobody: 10:23pm On Jul 29, 2013 |
![]() ![]() |
Re: How To Convert Java Phone To Android by daylae(m): 10:34pm On Jul 29, 2013 |
thought i was reading upside down(*;*) 2 Likes |
Re: How To Convert Java Phone To Android by wheesin(m): 10:38pm On Jul 29, 2013 |
chai dis one na burial o...but it makes sense...(looks left and right and hids under a womans wrapper) |
Re: How To Convert Java Phone To Android by Nobody: 11:07pm On Jul 29, 2013 |
I dnt blame the guy sha.... Na operaMini copy and paste i blame 2 Likes |
Re: How To Convert Java Phone To Android by Nobody: 11:20pm On Jul 29, 2013 |
lol |
Re: How To Convert Java Phone To Android by lexrichy(m): 11:32pm On Jul 29, 2013 |
Naija youths are just too lazy. |
Re: How To Convert Java Phone To Android by drizzypat: 11:42pm On Jul 29, 2013 |
Ohboy see gibberish! |
Re: How To Convert Java Phone To Android by OCTAVO: 11:54pm On Jul 29, 2013 |
lexrichy: Naija youths are just too lazy.Mr hard working naija youth, I have a nokia 2700 java phone, do you mind helping me to convert it to android phone? Also, you must increase the screen size ![]() 6 Likes |
Re: How To Convert Java Phone To Android by tosnat: 12:19am On Jul 30, 2013 |
We gazz appreciate dis guy..honestly.. Weldone bro Pls,how can i convert my nokia 3310 to android jellybean or keylime pie.....abeg... |
Re: How To Convert Java Phone To Android by physise(m): 12:28am On Jul 30, 2013 |
its nt possible to convert java to android..hw can android run on java phone with 32mb ram nawa o |
Re: How To Convert Java Phone To Android by Pimples(m): 1:26am On Jul 30, 2013 |
As far as i'm concerned, this is funniest thread I've read this month lwkmd |
Re: How To Convert Java Phone To Android by vitusike(m): 1:47am On Jul 30, 2013 |
@Godvilla, no be lie you talk. |
Re: How To Convert Java Phone To Android by Olamyyde(m): 4:11am On Jul 30, 2013 |
Some pple funny ooo...nokia java fone wey get ram less than 100mb wan run Android os...abeg be resonable. I only heard of one nokia symbian that could be changed to gb, i think N9 or so |
Re: How To Convert Java Phone To Android by busar(m): 5:25am On Jul 30, 2013 |
Also, you must increase the screen size ![]() ![]() ![]() |
Re: How To Convert Java Phone To Android by Nobody: 6:21am On Jul 30, 2013 |
chineke wetin be Dis? if I hold 10k I go buy beta n3 na! ![]() ![]() anyways rocking my HTC wildfire s JB 4.2.2 (8 OKADA!!! FRONT PAGE ABEG ![]() 1 Like |
Re: How To Convert Java Phone To Android by majalisa(m): 9:24am On Jul 30, 2013 |
@poster that is very creative but do u think is lógical and feasible? |
Re: How To Convert Java Phone To Android by FKO1(m): 9:36am On Jul 30, 2013 |
*WALKS INTO THREAD,SEES D TITLE,SUDDENLY FALLS DOWN LAFFIN* |
Re: How To Convert Java Phone To Android by viruz007(m): 9:57am On Jul 30, 2013 |
rolls to china and back... TF!!!! ![]() ![]() ![]() ![]() |
Re: How To Convert Java Phone To Android by Youngpo413: 10:08am On Jul 30, 2013 |
Hnnnn |
Re: How To Convert Java Phone To Android by biomedixexcel(m): 10:15am On Jul 30, 2013 |
Great minds!! I know many people will be making fun of this welcome idea as far as am concerned. The problem Nigeria scientists have is that we fail to ask questions of 'WHY AND HOW' we saw a guy that wrote this thing out and we started saying we should rather buy 13k phone! I will try to lay my hand on this. @op I think you will do the same |
Re: How To Convert Java Phone To Android by Emmysteve(m): 10:32am On Jul 30, 2013 |
I rather go borrow money buy android than stress myself with this isssh. @ op you get time o. Chai! |
Re: How To Convert Java Phone To Android by Nobody: 10:53am On Jul 30, 2013 |
biomedixexcel: Great minds!!Not bad..... Start with Nokia 3310c |
Re: How To Convert Java Phone To Android by Nobody: 12:30pm On Jul 30, 2013 |
THREAD OF THE YEAR!!!! ![]() ![]() ![]() |
Re: How To Convert Java Phone To Android by lifehacker: 1:29pm On Jul 30, 2013 |
ha!!!!!!!! Oga sir! We need needle for your thread! 1 Like |
Re: How To Convert Java Phone To Android by opestein: 2:40pm On Jul 30, 2013 |
SHAKING MY HEAD SHOUTING WAT IS THIS ONE SAYING |
All DATA USERS, WAKE UP (CAMPAIGN FOR FAIRNESS) / SONY Xperia Phones Discussion Thread / Why You Must Not Press Your Phone Or Answer Call On The Road (Photos)
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2025 Oluwaseun Osewa. All rights reserved. See How To Advertise. 43 |