Android App Malware Detection

Total Page:16

File Type:pdf, Size:1020Kb

Android App Malware Detection Android App Malware Detection Thesis submitted in partial fulfillment of the requirements for the degree of MS by Research in Computer Science and Engineering by Vijayendra Grampurohit 201207682 [email protected] International Institute of Information Technology Hyderabad - 500 032, INDIA July 2016 Copyright c Vijayendra Grampurohit, 2016 All Rights Reserved International Institute of Information Technology Hyderabad, India CERTIFICATE It is certified that the work contained in this thesis, titled “Android App Malware Detection” by Vijayendra Grampurohit, has been carried out under my supervision and is not submitted elsewhere for a degree. Date Adviser: Prof. Shatrunjay Rawat “Contemplate and reflect upon knowledge, and you will become a benefactor to others.” To my parents Acknowledgments I would like to express my gratitude to my advisers, Prof. Shatrunjay Rawat and Dr. Sanjay Rawat. It was great to have this combination guiding my research as I had best of both. Shatrunjay sir helped me staying focused on problems and provided new directions to approach them, while Sanjay Sir will explain the concepts at abstract level, opening up the mind to apply the same techniques on various sim- ilar problems. Working with them, I have developed my problem solving skills, learnt about research, about life in general. I would be thankful to them for all my life, for providing me the guidance on various matters, always motivating and boosting me with confidence, which really helped me in shaping my life. I want to take this opportunity to thank Dr. Ashok Kumar Das for not just teaching me courses like Principles of Information Security and System and Network Security, but also for providing me a wonderful opportunity to be TA for Principles of Information Security which gave me even more insights into the fundamentals of security than when I was just a student in the course. Also, he gave me some insights into the ongoing research in wireless sensor networks, which stirred an immense interest in me. I must also thank all my lab-mates who are working or have worked earlier in CSTAR -Bhargav, Dharma Teja, Jatin,Ishan, Lokesh, Shubhum. I really enjoyed working with them in the lab. I would like to thank all my friends in IIIT, for making my stay in the campus a memorable one. I cannot forget the fun-filled discussions we had in yuktahaar mess and at the juice corner. During my stay at IIIT, I also got chance to have a look on the famous book by Donald Knuth, “The Art of Computer Programming”, reading the preface of this book removed all my fears while doing coding, as he clearly wrote “These machines have no common sense; they do exactly what they are told, no more and no less”. In the end, I would like to thank all my family members, my parents for innumerable reasons, my brother Vinay for unconditional love and affection. vi Abstract Expecting a shipment of 1 billion Android devices in 2017, cyber criminals have naturally extended their vicious activities towards Google’s mobile operating system: threat researchers are reporting an alarming increase of detected Android malware from 2014 to 2015. In order to have some control over the estimated 700 new Android applications that are being released every day, there is need for a form of automated analysis to quickly detect and isolate new malware instances. Android is an open source Linux-based mobile operating system distributed by Google. According to the latest statistics, android powers hundreds of thousands mobile devices over 190 countries [26]. Google Play [51] is the official android centralized market place maintained by Google, where any independent application developer can submit his/her android app and make it available to the users. The growing popularity of this android ecosystem also is becoming a worthy target for security and privacy violations. Highly sensitive and confidential information such as text messages, private and business contacts, calendar data, etc may be leaked through an application. Sensors such as GPS present in the phones allow applications to provide context-sensitive user experience, they also create additional privacy concerns it can exploit the data for tracking or monitoring. Apart from these issues, smart phones are also susceptible to various malware threats such as viruses, Trojan horses, worms, etc. [50]. Android security model relies highly on permission-based mechanism. There are about 130 per- missions that govern access to different resources. Whenever an user tries to install a new application, he/she is prompted to approve or reject all the permissions requested by the application. The application will be installed only after the user accepts all the necessary permissions requested by it. In this work, we use the permissions and api level information from the apps as the features to detect malicious applications. Further we observe that, android store [51] defines a category for every published application. We have done extensive studies and discovered that, certain categories are highly prone to malicious acts compared to other categories. We explicitly incorporate this information in our model and learn a naive bayes classifier for each category using the features that encode information about permissions and api calls. Given a new test application with a known category, we apply an appropriate classifier to detect if the application is malicious. We created a large data set of android applications and achieve an improvement of 3 4% by incorporating category level information. − Secondly, we combine the association rule mining and classification rule mining techniques to build a classifier. The integration is done by focusing on mining a special subset of association rules, called class association rules (CARs). To select the best features that distinguish between malware from benign vii viii apps, we rely on API level information within the bytecode since it conveys substantial semantics about the apps behaviour. More specifically, we focus on critical API calls and their package level information. Rather than simply treating the individual api calls as items, we represent an item as a combination of caller and callee api. We capture one level of control flow and context between caller and callee. Each item in our model is of the form A%B, where A is the caller and B is the callee. We use Androguard [8], a reverse engineering tool to perform API level feature extraction and data flow analysis. In summary, combining association rule mining and classification rule mining for Android malware detection. • We achieved a detection rate of 85% over the baseline classifier of 0.69%. • Contents Chapter Page 1 Introduction .......................................... 1 1.1 Motivation . 1 1.2 Problem Statement . 2 1.3 Contributions . 2 1.4 Outline . 3 2 Background Information .................................... 5 2.1 Android System Architecture . 5 2.1.1 Linux kernel . 5 2.1.2 Libraries . 7 2.1.3 Android runtime . 7 2.1.4 Application framework . 7 2.1.5 Applications . 8 2.2 Dalvik Virtual Machine . 8 2.2.1 Hardware constraints . 8 2.2.2 Bytecode . 9 2.3 Apps . 9 2.3.1 Application components . 11 2.3.2 Manifest . 12 2.3.3 Native code . 12 2.3.4 Distribution . 13 2.4 Malware . 13 2.4.1 Types of malware . 13 2.4.2 Malware distribution . 14 2.4.3 Malware data sets . 15 2.5 Summary . 15 3 Related Work ......................................... 16 4 Android Malware Detection Using Permissions and Api calls ................. 19 4.1 Android Application Structure . 19 4.1.1 Android Security Approach . 21 4.1.2 Android Permission Setting . 22 4.2 Static analysis . 23 4.2.1 Androguard . 23 ix x CONTENTS 4.2.2 APK Tool . 24 4.2.3 Monkey and Monkeyrunner . 24 4.2.4 AndroViewClient . 24 4.3 Dynamic Analysis . 25 4.3.1 Droidbox . 25 4.3.2 Taintdroid . 25 4.4 Reverse engineering Android App . 26 4.4.1 Static Feature Extraction and Refinement . 27 4.5 Proposed Method . 27 4.5.1 Application categories . 27 4.5.2 Bayesian Classification Model . 28 4.6 Experiment Results and Discussions . 28 4.6.1 Data set . 29 4.6.2 Evaluation measures . 29 4.7 Summary . 33 5 Android Malware Detection using Association Rule based Classification ........... 34 5.1 Introduction . 34 5.1.1 Problem Statement . 35 5.2 Background Information . 36 5.2.1 Association Rules . 36 5.2.2 Apriori Algorithm . 36 5.2.3 The Frequent Itemset Mining Stage . 36 5.2.4 The Rule Generation Stage . 37 5.2.5 Reverse engineering Android App . 37 5.2.6 Generation of items . 38 5.3 Proposed Method . 38 5.3.1 Feature Extraction and Refinement . 39 5.3.2 Classification rule mining . 39 5.3.3 Generating the Complete Set of CARs . 41 5.3.4 The CBA-RG algorithm . 41 5.3.5 Building a Classifier . 42 5.4 Experimental Results and Discussions . 43 5.4.1 Data set . 44 5.4.2 Evaluation measures . 44 5.5 Conclusion . 46 6 Conclusions and Future Work ................................. 47 Bibliography ............................................ 50 List of Figures Figure Page 1.1 Android malware growth in 2014 . 3 2.1 Android low level system architecture . 6 2.2 Android application build process . 10 4.1 Android Folder Structure . 20 4.2 AndroidManifest . ..
Recommended publications
  • Open 1-Matthewdering-Thesis.Pdf
    The Pennsylvania State University The Graduate School ANDROID MARKET: LARGE SCALE RECONSTRUCTION AND ANALYSIS A Thesis in Computer Science and Engineering by Matthew Dering c 2014 Matthew Dering Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Science May 2014 The thesis of Matthew Dering was reviewed and approved∗ by the following: Patrick McDaniel Professor of Computer Science and Engineering Thesis Advisor Sencun Zhu Associate Professor of Computer Science and Engineering Raj Acharya Professor of Computer Science and Engineering Department Chair ∗Signatures are on file in the Graduate School. Abstract Smartphones have experienced a boom over the last 10 years. Currently a user is left to trust their device manufacturer when installing applications. In this paper we outline our suite of applications that are designed to provide us and users information about applications leveraging a reversed API for the Google Play market, working in concert with several analysis tools, some of our own design. In order to gather as complete of a picture of the market as possible, we propose a method for recreating the market in its entirety. Using this procured data, we present an overview of how two popular Android features are used in the real world: Permissions and Libraries. We find that there is a large correlation between library use and Permission use, which represents a security concern. iii Table of Contents List of Figures vi List of Tables vii Acknowledgments viii Chapter 1 Introduction 1 1.1 Introduction . 1 1.2 Google Play Market . 2 1.3 Privileges . 4 1.4 Design .
    [Show full text]
  • Chapter # 1 Introduction
    Chapter # 1 Introduction Mobile applications (apps) have been gaining rising popularity dueto the advances in mobile technologies and the large increase in the number of mobile users. Consequently, several app distribution platforms, which provide a new way for developing, downloading, and updating software applications in modern mobile devices, have recently emerged. To better understand the download patterns, popularity trends, and development strategies in this rapidly evolving mobile app ecosystem, we systematically monitored and analyzed four popular third-party Android app marketplaces. Our study focuses on measuring, analyzing, and modeling the app popularity distribution, and explores how pricing and revenue strategies affect app popularity and developers’ income. Our results indicate that unlike web and peer-to-peer file sharing workloads, the app popularity distribution deviates from commonly observed Zipf-like models. We verify that these deviations can be mainly attributed to a new download pattern, to which we refer as the clustering effect. We validate the existence of this effect by revealing a strong temporal affinity of user downloads to app categories. Based on these observations, we propose a new formal clustering model for the distribution of app downloads, and demonstrate that it closely fits measured data. Moreover, we observe that paid apps follow a different popularity distribution than free apps, and show how free apps with an ad-based revenue strategy may result in higher financial benefits than paid apps. We believe that this study can be useful to appstore designers for improving content delivery and recommendation systems, as well as to app developers for selecting proper pricing policies to increase their income.
    [Show full text]
  • Peer-To-Peer Protocol and Application Detection Support
    Peer-to-Peer Protocol and Application Detection Support This appendix lists all the protocols and applications currently supported by Cisco ASR 5500 ADC. • Supported Protocols and Applications, page 1 Supported Protocols and Applications This section lists all the supported P2P protocols, sub-protocols, and the applications using these protocols. Important Please note that various client versions are supported for the protocols. The client versions listed in the table below are the latest supported version(s). Important Please note that the release version in the Supported from Release column has changed for protocols/applications that are new since the ADC plugin release in August 2015. This will now be the ADC Plugin Build number in the x.xxx.xxx format. The previous releases were versioned as 1.1 (ADC plugin release for December 2012 ), 1.2 (ADC plugin release for April 2013), and so on for consecutive releases. New in this Release This section lists the supported P2P protocols, sub-protocols and applications introduced in the ADC Plugin release for December 1, 2017. ADC Administration Guide, StarOS Release 21.6 1 Peer-to-Peer Protocol and Application Detection Support New in this Release Protocol / Client Client Version Group Classification Supported from Application Release 6play 6play (Android) 4.4.1 Streaming Streaming-video ADC Plugin 2.19.895 Unclassified 6play (iOS) 4.4.1 6play — (Windows) BFM TV BFM TV 3.0.9 Streaming Streaming-video ADC Plugin 2.19.895 (Android) Unclassified BFM TV (iOS) 5.0.7 BFM — TV(Windows) Clash Royale
    [Show full text]
  • Meteor: Seeding a Security-Enhancing Infrastructure for Multi-Market Application Ecosystems
    Meteor: Seeding a Security-Enhancing Infrastructure for Multi-market Application Ecosystems David Barrera William Enck Paul C. van Oorschot School of Computer Science Department of Computer Science School of Computer Science Carleton University North Carolina State University Carleton University Abstract—Application markets providing one-click software in- Bouncer [16]).1 Second, it provides a means to remotely stallation have become common to smartphones and are emerging uninstall distributed apps later identified as malicious. These on desktop platforms. Until recently, each platform has had only remote uninstalls (or “kill switches” [6], [5]) provide faster one market; however, social and economic pressures have resulted in multiple-market ecosystems. Multi-market environments limit, clean-up than traditional antivirus software, as they push and in some cases eliminate, valuable security characteristics actions to devices and do not require definition updates or provided by the market model, including kill switches and resource intensive scanning. Finally, search results display developer name consistency. We outline a novel approach to consistent developer names for applications. Once a developer retaining single-market security semantics while enabling the has registered with the market, controls exist such that no flexibility and independence of a multi-market environment. We propose Meteor as a security-enhancing application installation other developer can easily distribute applications under that framework that leverages information (e.g., app statistics, expert developer name. Hence, consumers have some assurance that ratings, developer history) from a configurable set of security all applications provided by “John Smith” are provided by the information sources. We build a proof-of-concept Android ap- same John Smith.
    [Show full text]
  • Iphone Apps by Downloads How to Download Apps on Iphone: the Complete Guide! You Don’T Know How to Install Apps on Your Iphone, but You Want to Learn How
    iphone apps by downloads How To Download Apps On iPhone: The Complete Guide! You don’t know how to install apps on your iPhone, but you want to learn how. There are more than two million apps in your iPhone’s App Store, most of which help you get more out of your iPhone. In this article, I’ll show you how to download apps on your iPhone ! The content of this article has been updated for iOS 11, the most recent version of iPhone software. Apple introduced a new App Store layout with iOS 11, so if you’re running an older software version, your iPhone may look slightly different. If you haven’t already, I strongly recommend updating your iPhone! What Are Apps On My iPhone? Apps, which is short for applications, are programs you install on your iPhone. There are apps for fun games, organizing your work or personal life, and your favorite email service or social media platform. How To Download Apps On iPhone. Unlock your iPhone using your passcode, Touch ID, or Face ID. Open the App Store app. Find the app you want to download by browsing the Today, Games, or Apps section, or search for the app using the Search tab. Once you’ve found the app you want to download, tap Get to the right of the app. Confirm the installation by entering your passcode or using Touch ID. If you have an iPhone X, double-click the side button to activate Face ID and confirm the installation. Now, the app will begin installing on your iPhone.
    [Show full text]
  • Malicious Android Apps Overview, Status and Dilemmas
    Malicious Android Apps Overview, Status and Dilemmas Federico Maggi - http://maggi.cc 1,260 Samples Analyzed (2012) Manual analysis of samples by Yajin Zhou & Xuxian Jiang 36.7% leverage root-level exploits 90% turn devices into bots 45.3% dial/text premium numbers in background 51.1% harvest user information Other goods encrypted root-level exploit or obfuscated C&C address dynamic, remote updates Attackers Goals Steal Sensitive Data intercept texts or calls steal passwords Turn Devices Into Bots perform malicious actions gain root privileges Direct Financial Gain call or text premium numbers steal online banking credentials ZitMo & SpitMo (2011) ● Companion of the famous ZeuS and SpyEye trojans. ● Steal the mTAN or SMS used for 2-factor authentication. The attack scheme (1) www.yourbank.com username: user password: ************ INFECTED COMPUTER username: user password: ************ $ $ $ $ $ $ $ $ $ $ $ $ $ 2-factors authentication (password + secret code) ONE TIME SECRET CODE ************ GO! The attack scheme (2) www.yourbank.com username: user password: ************ ONE TIME SECRET CODE INFECTED COMPUTER OK TYPE IN THE ONE TIME SECRET CODE EXPIRED TYPE IN THE ONE TIME SECRET CODE The attack scheme (2) www.yourbank.com username: user password: ************ INFECTED COMPUTER inject QR code Luring Users with a QR Code USERNAME user PASSWORD ************ SCAN TO LOGIN Login The attack scheme (3) www.evil.org/fake-login-app.apk The attack scheme (4) www.yourbank.com username: user password: ************ ONE TIME SECRET CODE INFECTED
    [Show full text]
  • A Multiple-Case Study of App Stores
    App stores for owners: a multiple-case study of app stores Ewoud Bloemendal – [email protected] August 28th , 2012 Utrecht University Master Business Informatics Department of Information and Computing Sciences Supervisors: Dr. Slinger Jansen (Utrecht University) Dr. Marco Spruit (Utrecht University) Abstract This research aims to help app store owners translate their app store strategy into app store features and policies. At first a definition of app stores is given to scope the research. After that literature is studied to identify app store strategies. This resulted in an app store strategy model that models the app store strategy based on four dimensions. A multiple case study was performed on six app stores: Google Play, SlideMe, Apple Appstore, Binpress, Amazon appstore for Android and Intel AppUp. This study aimed to identify the features and policies used by app stores. The six sequential case studies resulted in an app store classification model with 67 features and 24 policies. The classification model is categorized based on the main influenced app store characteristic. In the last part of this research a mapping is made between the dimensions of the app store strategic model and the features and policies. 1 Preface This master thesis document marks the end of my time studying for the Master Business Informatics at Utrecht University. It is the result of many hours of hard work spanning over eighteen months’ time. During these months I have found that its true what they say: it is not about the destination, it is about the journey. And what a journey it was! Since the start of my graduation research I lost twenty-five pounds of bodyweight but gained five of it back later, I went on seven holiday trips to get my mind back in shape, I lost many of the convictions I held dear but found new ones along the way, I experimented with countless productivity tools until settling on a simple kitchen timer and I created over forty different versions of my thesis resulting in the one in front of you.
    [Show full text]
  • Microsoft-Opposition.Pdf
    Trademark Trial and Appeal Board Electronic Filing System. http://estta.uspto.gov ESTTA Tracking number: ESTTA387620 Filing date: 01/10/2011 IN THE UNITED STATES PATENT AND TRADEMARK OFFICE BEFORE THE TRADEMARK TRIAL AND APPEAL BOARD Proceeding 91195582 Party Plaintiff Microsoft Corporation Correspondence WILLIAM O. FERRON, JR. Address SEED IP LAW GROUP PLLC 701 FIFTH AVENUE, SUITE 5400 SEATTLE, WA 98104 UNITED STATES [email protected] Submission Motion for Summary Judgment Filer's Name William O. Ferron, Jr. Filer's e-mail [email protected], [email protected] Signature /William O. Ferron, Jr./ Date 01/10/2011 Attachments SJ-Brief.pdf ( 26 pages )(601790 bytes ) IN THE UNITED STATES PATENT AND TRADEMARK OFFICE BEFORE THE TRADEMARK TRIAL AND APPEAL BOARD MICROSOFT CORPORATION, ) Opposition No. 91195582 ) Opposer, ) Serial No. 77/525433 ) v. ) ) Attorney Docket No. 663005.80652 APPLE INC., ) ) Applicant. ) ) OPPOSER MICROSOFT CORPORATION’S MOTION FOR SUMMARY JUDGMENT TABLE OF CONTENTS I. Introduction and Summary of Argument ..................................................................................1 II. Summary of Undisputed Facts ..................................................................................................2 III. Legal Standard for Summary Judgment – No Material Facts in Dispute and Moving Party Entitled to Judgment as a Matter of Law ........................................................................4 IV. Legal Standards for Genericness ..............................................................................................5
    [Show full text]
  • Securing Decentralized Software Installation and Updates
    Securing Decentralized Software Installation and Updates By David Barrera A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfilment of the requirements for the degree of DOCTOR OF PHILOSOPHY in Computer Science Carleton University Ottawa, Ontario, Canada c 2014, David Barrera Abstract Software installation and updates have become simpler for end users in recent years. The commoditization of the internet has enabled users to obtain more software than ever before from more developers than ever before. Additionally, software installation now requires less input from users, allowing installation with merely a single click or tap. At the same time, different software installation models with varying levels of security, usability and freedom have emerged. In centralized environments, available software is limited by an authority, whereas decentralized environments allow users and developers to interact freely. Decentralized software installation ecosystems pose the most significant security challenges due to the lack of centralized control. In this thesis we identify, through the systematic evaluation of prominent systems, limitations in the way operating systems provide security guarantees (including ver- ification of integrity and authentication, and establishment of trust) in decentral- ized software installation environments. We address these limitations by designing tools and protocols that help secure software installation and updates at each of the three installation stages (software discovery, initial install and updates, and enforc- ing security policies). Specifically, we propose a cryptographically verifiable protocol for developers to delegate digital signature privileges to other certificates (possibly owned by other developers) without requiring a centrally trusted public key infras- tructure. Our proposal allows trust to be delegated during software updates without user involvement.
    [Show full text]
  • ADC Administration Guide, Staros Release 21.10
    ADC Administration Guide, StarOS Release 21.10 First Published: 2018-11-02 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL ARE BELIEVED TO BE ACCURATE BUT ARE PRESENTED WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USERS MUST TAKE FULL RESPONSIBILITY FOR THEIR APPLICATION OF ANY PRODUCTS. THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR CISCO REPRESENTATIVE FOR A COPY. The Cisco implementation of TCP header compression is an adaptation of a program developed by the University of California, Berkeley (UCB) as part of UCB's public domain version of the UNIX operating system. All rights reserved. Copyright © 1981, Regents of the University of California. NOTWITHSTANDING ANY OTHER WARRANTY HEREIN, ALL DOCUMENT FILES AND SOFTWARE OF THESE SUPPLIERS ARE PROVIDED “AS IS" WITH ALL FAULTS. CISCO AND THE ABOVE-NAMED SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THOSE OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO EVENT SHALL CISCO OR ITS SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, OR INCIDENTAL DAMAGES, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING OUT OF THE USE OR INABILITY TO USE THIS MANUAL, EVEN IF CISCO OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    [Show full text]
  • Invisible+App+Machine+-+Ebook.Pdf
    Invisible App Machine 2 PUBLISHING YOUR FIRST APPLICATION ON GOOGLE PLAY By Daniel Rosenfield © 2015 3 Invisible App Machine 4 Introduction INTRODUCTION 5 Invisible App Machine 6 Introduction INTRODUCTION Yes, not long ago, I was a mortgage broker with a sofa couch in my o!ce in case I needed to work long hours into the night. And today, I have the equivalent of an automated money making machine, churning out my income 24 hours a day. My success is based on that famous piece of marketing advice: instead of buying a goldmine, why not sell the equipment to dig for gold? In other words, why spend thousands upon thousands of dollars buying tra!c when you can supply the platform, so advertisers are paying you to promote their o"ers. That’s right! I said, pay YOU! I will provide you with the tools you need so you can create your first Android application to publish on Google Play. This will give you a platform ready for advertisers to promote their targeted products – and pay you handsomely in the process. How awesome is that? Once I discovered this strategy, I wanted to share my knowledge through this “killer” android app eBook. After extensive research, I noticed that while there are dozens of books about business app makers and IOS (Apple) app products, even expensive IOS and Android game reskin o"ers, I am yet to find one Android money making application product that provides a step by step breakdown of how to make the application quickly and cheaply and how to make money with the apps you build.
    [Show full text]
  • Securing Decentralized Software Installation and Updates
    Securing Decentralized Software Installation and Updates By David Barrera A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfilment of the requirements for the degree of DOCTOR OF PHILOSOPHY in Computer Science Carleton University Ottawa, Ontario, Canada c 2014, David Barrera Abstract Software installation and updates have become simpler for end users in recent years. The commoditization of the internet has enabled users to obtain more software than ever before from more developers than ever before. Additionally, software installation now requires less input from users, allowing installation with merely a single click or tap. At the same time, different software installation models with varying levels of security, usability and freedom have emerged. In centralized environments, available software is limited by an authority, whereas decentralized environments allow users and developers to interact freely. Decentralized software installation ecosystems pose the most significant security challenges due to the lack of centralized control. In this thesis we identify, through the systematic evaluation of prominent systems, limitations in the way operating systems provide security guarantees (including ver- ification of integrity and authentication, and establishment of trust) in decentral- ized software installation environments. We address these limitations by designing tools and protocols that help secure software installation and updates at each of the three installation stages (software discovery, initial install and updates, and enforc- ing security policies). Specifically, we propose a cryptographically verifiable protocol for developers to delegate digital signature privileges to other certificates (possibly owned by other developers) without requiring a centrally trusted public key infras- tructure. Our proposal allows trust to be delegated during software updates without user involvement.
    [Show full text]