Skip to main content

Posts

Showing posts from December, 2018

Attacking android application activity by repackaging ٩(ↀДↀ)۶ (day 8)

I think that most of the android developer forgot about danger of the open source nature of android application. Because the fact that once their application is posted in any play store in the world. There are no guarantee that anyone could tweak your application. In this post i will show you how to attacking android application component(activity) by repackaging the application. I hope it will open developer eye about how easy for anyone to change your application structure. To start the post, You guys may be familiar with Androidmanifest.xml file in APK file right?!(if you not ? do your research m8) Long story short the file is the one that responsible for any permission and components use in android application and it pretty much show like this. as you can see from the following image there are 3 activities contain in the application and all of them cannot be query outside of the application. So what are we going to do? lets try to modify the file as shown below

Exploiting android clipboard manager └(=^‥^=)┐ (day 7)

who doesn't like to copy pasting? it is faster and very convenience, right ? why do you have to type some long line of text over and over again if you can just simply copy and paste it ? why do you have to remember disss long account number of number if you can just simply copy and paste it ? well my friend i think you should reconsider you life decision wkwkwkw In the following post i will show you how any android application could easily just copied your credential. Android give user a very convenient user interface one of them is have ability to copy and paste any object including text. As developer android you may notice that in order to user the functionality inside your application you could use ClipboardManager functionality. In order to use ClipboardManager you have to instantiate the object by calling getSystemService(): ClipboardManager clipboard = (ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE) to copy value: ClipData clip = ClipDat