0 1 00:00:09,020 --> 00:00:14,400 So another tool we're going to be looking at for static analysis is JDGUI 1 2 00:00:14,490 --> 00:00:20,220 So if you google JDGUI you'll be redirected to this site. 2 3 00:00:20,250 --> 00:00:30,280 This is a Java D compiler JDGUI stands for Java D compiler graphical user interface. 3 4 00:00:30,510 --> 00:00:36,700 So what we want to do is just download this jar file over here depending on your operating system. 4 5 00:00:36,700 --> 00:00:37,920 Choose the correct download. 5 6 00:00:38,650 --> 00:00:40,870 So save the file. 6 7 00:00:40,940 --> 00:00:43,910 So now we have JDGUI installed over here 7 8 00:00:51,010 --> 00:00:54,790 so let's run this using Java dash jar 8 9 00:00:54,930 --> 00:00:59,080 JDGUI and this is what JDGUI looks like. 9 10 00:00:59,130 --> 00:00:59,480 OK. 10 11 00:01:01,750 --> 00:01:09,280 So here we'd have to import a jar file now in order to be able to use JDGUI with an APK. 11 12 00:01:09,340 --> 00:01:17,330 You will have to download another tool you are not able to import an APK to JDGUI out of the box 12 13 00:01:18,450 --> 00:01:25,660 so there is this tool called Enjarify that is able to convert our APK to a jar file so let's just 13 14 00:01:25,660 --> 00:01:31,990 search enjarify. OK download enjarify, the entire project. 14 15 00:01:33,850 --> 00:01:39,410 Open with archive manager, you can move it to another location if you prefer. 15 16 00:01:41,820 --> 00:01:46,140 So for example let's move it to slash user slash local 16 17 00:01:51,200 --> 00:02:05,840 in this case it is already present. 17 18 00:02:05,920 --> 00:02:13,780 So now once you go to user slash local slash and Java here you're going to see the enjarify script 18 19 00:02:13,810 --> 00:02:24,760 that we will run against a specific APK so dot slash enjarify myAPK Dot apk we will see the 19 20 00:02:24,760 --> 00:02:31,300 entire process of using in jar file with JDGUI during the last section of the course but next we'll 20 21 00:02:31,300 --> 00:02:36,220 introduce a similar tool that is even better than JDGUI, Byte codeviewer.