SlideShare a Scribd company logo
On the Static Analysis of Hybrid Mobile Apps
A Report on the State of Apache Cordova Nation
Achim D. Brucker and Michael Herzberg
{a.brucker,msherzberg1}@sheffield.ac.uk
Department of Computer Science, The University of Sheffield, Sheffield, UK
(Parts of this research were done while the authors were working at SAP SE in Germany.)
International Symposium on Engineering Secure Software and Systems (ESSoS 2016)
April 6 - 8, 2016, London, UK
On the Static Analysis of Hybrid Mobile Apps: A Report on the State of Apache Cordova Nation
Abstract
Developing mobile applications is a challenging business: developers need to support multiple platforms and,
at the same time, need to cope with limited resources, as the revenue generated by an average app is rather
small. This results in an increasing use of cross-platform development frameworks that allow developing an
app once and offering it on multiple mobile platforms such as Android, iOS, or Windows.
Apache Cordova is a popular framework for developing multi-platform apps. Cordova combines HTML5 and
JavaScript with native application code. Combining web and native technologies creates new security
challenges as, e.g., an XSS attacker becomes more powerful.
In this paper, we present a novel approach for statically analysing the foreign language calls. We evaluate our
approach by analysing the top Cordova apps from Google Play. Moreover, we report on the current state of the
overall quality and security of Cordova apps.
Keywords: static program analysis, static application security testing, Android, Cordova, hybrid mobile apps.
Outline
1 Motivation: Hybrid Mobile Apps and their Security Challenges
2 Real World Cordova Usage
3 Static Analysis for Hybrid Apps: Building a Unified Call Graph
4 Quality of the Unified Call Graph
5 Conclusions
Motivation: Hybrid Mobile Apps and their Security Challenges
What is a Hybrid App?
Native, HTML5, or hybrid
Native apps
Java  Swift  C#
Developed for a specific
platform
All features available
Web apps
HTML5 and JS
Hosted on server, all
platforms
No access to device
features
Platform-specific Platform-independent
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 4
Motivation: Hybrid Mobile Apps and their Security Challenges
What is a Hybrid App?
Native, HTML5, or hybrid
Native apps
Java  Swift  C#
Developed for a specific
platform
All features available
+
Hybrid apps
HTML5, JS, and native
Build once, run everywhere
Access to device features
through plugins
Web apps
HTML5 and JS
Hosted on server, all
platforms
No access to device
features
Platform-specific Platform-independent
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 4
Motivation: Hybrid Mobile Apps and their Security Challenges
Why Apache Cordova?
https://cordova.apache.org/
Apache Cordova is most popular hybrid app framework
Open source
Many companies offer Apache Cordova plus commercial plugins (e.g., Adobe PhoneGap or
SAP Kapsel)
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 5
Motivation: Hybrid Mobile Apps and their Security Challenges
The Apache Cordova Framework for Android
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 6
Motivation: Hybrid Mobile Apps and their Security Challenges
Example app
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 7
Motivation: Hybrid Mobile Apps and their Security Challenges
Technical view
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 8
Motivation: Hybrid Mobile Apps and their Security Challenges
Technical view
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 8
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
Example: Get Phone Number
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
var failureCallback = ...
cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]);
}
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
Motivation: Hybrid Mobile Apps and their Security Challenges
First security assessment
Problem: JS/Java Bridge is vulnerable to
injection attacks
For regular apps: Static Application
Security Testing (SAST)
But: No support for cross-language analysis
Our goal:
Provide basis (call graph) to apply SAST to
hybrid mobile apps
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 10
Outline
1 Motivation: Hybrid Mobile Apps and their Security Challenges
2 Real World Cordova Usage
3 Static Analysis for Hybrid Apps: Building a Unified Call Graph
4 Quality of the Unified Call Graph
5 Conclusions
Real World Cordova Usage
What we were interested in
Main goals:
Understand the use of Cordova
Learn requirements for Cordova security testing tools
Looking for answers for questions like
How many apps are using Cordova?
How is Cordova used by app developers?
Are cross-language calls common or not?
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 12
Real World Cordova Usage
Test sets
Selection of apps
all apps that ship Cordova from Google’s Top 1000:
100 apps ship Cordova plugins
only 50 actually use Cordova (5%)
three selected apps from SAP (using SAP Kapsel)
one artificial test app (to test our tool)
Manual analysis of 8 apps (including one from SAP)
to understand the use of Cordova
to assess the quality of our automated analysis
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 13
Real World Cordova Usage
What we have learned: plugin use
Plugins are used for
accessing device information
showing native dialog boxes and
splash screens
accessing network information
accessing the file storage
accessing the camera
. . .
But: Many different versions and some even
modified!
Plugin
device 52%
inappbrowser 50%
dialogs 40%
splashscreen 36%
network-information 28%
file 28%
console 24%
camera 22%
statusbar 22%
PushPlugin 22%
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 14
Real World Cordova Usage
What we have learned: app size
App size:
mobile apps are not
always small
SAP apps seem to be
larger than the average
Exceptional apps:
No HTML/JS in APK
Ship Cordova, but do not use
it
App Category JS [kLoC] Java [kLoC]
sap01 Finance 35.5 17.0
sap02 Business 345.3 53.5
sap03 Business 572.3 135.8
app01 Finance 26.3 17.8
app02 Finance 11.2 16.8
app03 Social 4.6 103.7
app04 Business 37.5 16.8
app05 Finance 20.0 44.8
app06 Finance 30.4 24.3
app07 Travel & Local 129.0 304.0
app08 Entertainment 36.7 23.0
app09 Lifestyle 36.3 44.7
app10 Finance 43.7 18.4
app11 Business 14.0 438.9
.
.
.
.
.
.
.
.
.
.
.
.
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 15
Outline
1 Motivation: Hybrid Mobile Apps and their Security Challenges
2 Real World Cordova Usage
3 Static Analysis for Hybrid Apps: Building a Unified Call Graph
4 Quality of the Unified Call Graph
5 Conclusions
Static Analysis for Hybrid Apps: Building a Unified Call Graph
Challenges
Based on the examined apps:
Cordova relies heavily on dynamic mechanisms, both on JavaScript and Java side
Developers modify their plugins and sometimes implement their own
Deep framework analysis Modelling framework Modelling plugins
Closest to the actual
program
But: Framework very
expensive
Models the Cordova
framework
Analyses plugins
Models both framework
and plugins
Analyses only UI and
business logic part
But: Developers can
write own plugins
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 17
Static Analysis for Hybrid Apps: Building a Unified Call Graph
Our approach:
analyze plugins, but model the Cordova framework
First build call graphs of Java and JavaScript separatly
Connect them using four heuristics that exploit frequent coding patterns:
ConvertModules
ReplaceCordovaExec
FilterJavaCallSites
FilterJSFrameworks
Result:
Unified Call Graph
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 18
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ConvertModules
define("com.foo.contacts", function(require, exports, module) {
exports.find = function(successCallback, name) {
cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]);
}
});
...
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
plugins.contacts.find(successCallback, "Peter");
Problem:
Not all callback functions are defined within the plugin
Difficult to track callback functions from app code
Solution:
Substitute dynamic mechanism with unique, global variable
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 19
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ConvertModules
define("com.foo.contacts", function(require, exports, module) {
plugins.contacts.find = function(successCallback, name) {
cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]);
}
});
...
var successCallback = function(contact) {
alert("Phone number: " + contacts.phone);
}
plugins.contacts.find(successCallback, "Peter");
Problem:
Not all callback functions are defined within the plugin
Difficult to track callback functions from app code
Solution:
Substitute dynamic mechanism with unique, global variable
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 19
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ConvertModules: Results
Most useful for
small plugins
more precise analysis
Allows finding of callback functions in app code
Less errors due to less ambiguity of dynamic mechanism
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 20
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ReplaceCordovaExec
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: "+contacts.phone);
}
cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]);
}
Problem:
Callback call sites are hard to find
No context-sensitivity
Solution:
Stub the exec method
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 21
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ReplaceCordovaExec
function showPhoneNumber(name) {
var successCallback = function(contact) {
alert("Phone number: "+contacts.phone);
}
function stub1(succ, fail) {
succ(null);
fail(null);
}
stub1(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]);
}
Problem:
Callback call sites are hard to find
No context-sensitivity
Solution:
Stub the exec method
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 21
Static Analysis for Hybrid Apps: Building a Unified Call Graph
ReplaceCordovaExec: Results
Neccessary to find any Java to JavaScript calls
Most apps use exec to communicate, only some bypass it
Inexpensive way to get context-sensitivity where it is needed the most
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 22
Static Analysis for Hybrid Apps: Building a Unified Call Graph
FilterJavaCallSites
class ContactsPlugin extends CordovaPlugin {
boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) {
if ("find".equals(action)) {
String name = args.get(0).name;
find(name, callbackContext);
} else if ("create".equals(action)) ...
}
void find(String name, CallbackContext callbackContext) {
Contact contact = query("SELECT ... where name=" + name);
callbackContext.success(contact);
}
}
Problem:
How to determine the targets of the callbackContext calls?
Can we use the pattern of the action usage?
Solution:
Determine which callbackContext calls are reachable
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 23
Static Analysis for Hybrid Apps: Building a Unified Call Graph
FilterJavaCallSites: details
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
Static Analysis for Hybrid Apps: Building a Unified Call Graph
FilterJavaCallSites: details
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
Static Analysis for Hybrid Apps: Building a Unified Call Graph
FilterJavaCallSites: details
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
Static Analysis for Hybrid Apps: Building a Unified Call Graph
FilterJavaCallSites: results
Developers all use action variable similarly
Therefore: Many incorrect edges avoided
But: A few calls from Java to JavaScript are missed now
Some store the callbackContext and call asynchronously
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 25
Outline
1 Motivation: Hybrid Mobile Apps and their Security Challenges
2 Real World Cordova Usage
3 Static Analysis for Hybrid Apps: Building a Unified Call Graph
4 Quality of the Unified Call Graph
5 Conclusions
Quality of the Unified Call Graph
What we have learned: app size and cross-language calls
Cross-language calls:
calls from Java to JS:
very common
calls from JS to Java:
surprisingly uncommon
App Category Java2JS JS2Java JS [kLoC] Java [kLoC]
sap01 Finance 2 12 35.5 17.0
sap02 Business 20814 39 345.3 53.5
sap03 Business 9531 75 572.3 135.8
app01 Finance 9 13 26.3 17.8
app02 Finance 2 10 11.2 16.8
app03 Social 2349 31 4.6 103.7
app04 Business 1 6 37.5 16.8
app05 Finance 6 26 20.0 44.8
app06 Finance 693 70 30.4 24.3
app07 Travel & Local 3430 43 129.0 304.0
app08 Entertainment 14220 67 36.7 23.0
app09 Lifestyle 51553 89 36.3 44.7
app10 Finance 8 36 43.7 18.4
app11 Business 0 0 14.0 438.9
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 27
Quality of the Unified Call Graph
Recall and Precision
Recall:
Correctly reported calls
All reported calls
Precision:
Correctly reported calls
Calls actually present
App kLoC kNodes Plugins Recall Precision Calls
app01 43 9 5 33% 75% 17
app02 27 8 4 100% 66% 13
app03 106 18 8 1% 93% 61
app04 53 14 3 100% 100% 7
app05 64 10 7 33% 66% 29
app06 53 8 12 35% 97% 316
sap01 52 19 6 100% 66% 15
dvhma 17 7 4 100% 100% 15
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 28
Outline
1 Motivation: Hybrid Mobile Apps and their Security Challenges
2 Real World Cordova Usage
3 Static Analysis for Hybrid Apps: Building a Unified Call Graph
4 Quality of the Unified Call Graph
5 Conclusions
Conclusions
Summary
Hybrid mobile apps are getting more popular
they are recommended at SAP
Hybrid mobile apps are juicy targets
E.g., gain access to the app via the JS part . . .
. . . and use the app’s permissions to steal data
Unified Call Graph is a first step in bringing the full power of SAST to hybrid apps
Quality largely depends on used call graph builders
Future work: Data-flow analysis on top of Unified Call Graph
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 30
Thank you for your attention!
Any questions or remarks?
Conclusions
Bibliography
Achim D. Brucker and Michael Herzberg.
On the static analysis of hybrid mobile apps: A report on the state of apache cordova nation.
In Juan Caballero and Eric Bodden, editors, International Symposium on Engineering Secure Software and Systems
(ESSoS), Lecture Notes in Computer Science. Springer-Verlag, 2016.
A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 32

More Related Content

What's hot (19)

PPTX
Дмитро Терещенко, "How to secure your application with Secure SDLC"
Sigma Software
 
PDF
Threat Modeling workshop by Robert Hurlbut
DevSecCon
 
PPTX
Red7 Software Application Security Threat Modeling
Robert Grupe, CSSLP CISSP PE PMP
 
PPTX
Making Security Agile
Oleg Gryb
 
PDF
Introduction to the CII Badge Programe, OW2con'16, Paris.
OW2
 
PDF
"CERT Secure Coding Standards" by Dr. Mark Sherman
Rinaldi Rampen
 
PDF
Remediation Statistics: What Does Fixing Application Vulnerabilities Cost?
Denim Group
 
PDF
A Strategic Path from Secure Code Reviews to Threat Modeling (101)
Deepam Kanjani
 
PDF
Threat-Modeling-as-Code: ThreatPlaybook AppSecUSA 2018 Presentation
Abhay Bhargav
 
PPTX
What Good is this Tool? A Guide to Choosing the Right Application Security Te...
Kevin Fealey
 
PDF
White Paper: 7 Security Gaps in the Neglected 90% of your Applications
Sonatype
 
PPTX
AppSec & DevSecOps Metrics: Key Performance Indicators (KPIs) to Measure Success
Robert Grupe, CSSLP CISSP PE PMP
 
PPTX
Implementing an Application Security Pipeline in Jenkins
Suman Sourav
 
PPTX
#ATAGTR2018 Presentation "Decoding Security in DevSecOps" by Meghashyam Varan...
Agile Testing Alliance
 
PPTX
Secure programming language basis
Ankita Bhalla
 
PDF
RSA 2015 Blending the Automated and the Manual: Making Application Vulnerabil...
Denim Group
 
PPTX
AppSec California 2016 - Making Security Agile
Oleg Gryb
 
PPTX
Microsoft Security Development Lifecycle
Razi Rais
 
Дмитро Терещенко, "How to secure your application with Secure SDLC"
Sigma Software
 
Threat Modeling workshop by Robert Hurlbut
DevSecCon
 
Red7 Software Application Security Threat Modeling
Robert Grupe, CSSLP CISSP PE PMP
 
Making Security Agile
Oleg Gryb
 
Introduction to the CII Badge Programe, OW2con'16, Paris.
OW2
 
"CERT Secure Coding Standards" by Dr. Mark Sherman
Rinaldi Rampen
 
Remediation Statistics: What Does Fixing Application Vulnerabilities Cost?
Denim Group
 
A Strategic Path from Secure Code Reviews to Threat Modeling (101)
Deepam Kanjani
 
Threat-Modeling-as-Code: ThreatPlaybook AppSecUSA 2018 Presentation
Abhay Bhargav
 
What Good is this Tool? A Guide to Choosing the Right Application Security Te...
Kevin Fealey
 
White Paper: 7 Security Gaps in the Neglected 90% of your Applications
Sonatype
 
AppSec & DevSecOps Metrics: Key Performance Indicators (KPIs) to Measure Success
Robert Grupe, CSSLP CISSP PE PMP
 
Implementing an Application Security Pipeline in Jenkins
Suman Sourav
 
#ATAGTR2018 Presentation "Decoding Security in DevSecOps" by Meghashyam Varan...
Agile Testing Alliance
 
Secure programming language basis
Ankita Bhalla
 
RSA 2015 Blending the Automated and the Manual: Making Application Vulnerabil...
Denim Group
 
AppSec California 2016 - Making Security Agile
Oleg Gryb
 
Microsoft Security Development Lifecycle
Razi Rais
 

Viewers also liked (6)

PDF
Comscore US Mobile App Report - June 2014 data
Ludovic Privat
 
PDF
Developing Secure Software: Experiences From an International Software Vendor
Achim D. Brucker
 
PDF
comScore 2016 U.S. Mobile App Report
comScore
 
PDF
Mobile Application Design & Development
Ronnie Liew
 
PPT
Mobile Application Development With Android
guest213e237
 
PPTX
Writing a Report (Tips and Sample of Reports)
Po Po Tun
 
Comscore US Mobile App Report - June 2014 data
Ludovic Privat
 
Developing Secure Software: Experiences From an International Software Vendor
Achim D. Brucker
 
comScore 2016 U.S. Mobile App Report
comScore
 
Mobile Application Design & Development
Ronnie Liew
 
Mobile Application Development With Android
guest213e237
 
Writing a Report (Tips and Sample of Reports)
Po Po Tun
 
Ad

Similar to On the Static Analysis of Hybrid Mobile Apps: A Report on the State of Apache Cordova Nation (20)

PDF
Combining the Security Risks of Native and Web Development: Hybrid Apps
Achim D. Brucker
 
PPTX
Cross-platform Mobile Development on Open Source
All Things Open
 
PPTX
PhoneGap Credentials @ Neev
Neev Technologies
 
PDF
Future of Hybrid and Native Development: The Emerging Trends to Consider for ...
JohnParker598570
 
PDF
Best Hybrid Mobile App Development Company in Vijayawada.pdf
AnandValluru2
 
PPTX
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
Hazem Saleh
 
PPTX
fdocuments.in_apache-cordova-overview.pptx
ssuserd27db6
 
PDF
What is hybrid mobile app development? | Nitor Infotech
servicesNitor
 
PDF
[2015/2016] Mobile thinking
Ivano Malavolta
 
PDF
Mobility Solutions - Development of Hybrid Mobile Applications with HTML
Mindteck (India) Limited
 
PDF
Web-based Hybrid Mobile Apps: State of the Practice and Research opportunitie...
Ivano Malavolta
 
PPTX
Hybrid Mobile Development with Apache Cordova and
Ryan Cuprak
 
PPTX
Introduction to hybrid application development
Kunjan Thakkar
 
PDF
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Hazem Saleh
 
PPTX
Hybrid app in ionic framework overview
Sanket Devlekar
 
PPTX
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
Hazem Saleh
 
PPTX
Hybrid Mobile App
Palani Kumar
 
PPTX
Hybrid mobile app
Palani Kumar
 
PDF
Developing Great Apps with Apache Cordova
Shekhar Gulati
 
PPTX
Trending mobile application Development
Praveen Kumar A G
 
Combining the Security Risks of Native and Web Development: Hybrid Apps
Achim D. Brucker
 
Cross-platform Mobile Development on Open Source
All Things Open
 
PhoneGap Credentials @ Neev
Neev Technologies
 
Future of Hybrid and Native Development: The Emerging Trends to Consider for ...
JohnParker598570
 
Best Hybrid Mobile App Development Company in Vijayawada.pdf
AnandValluru2
 
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
Hazem Saleh
 
fdocuments.in_apache-cordova-overview.pptx
ssuserd27db6
 
What is hybrid mobile app development? | Nitor Infotech
servicesNitor
 
[2015/2016] Mobile thinking
Ivano Malavolta
 
Mobility Solutions - Development of Hybrid Mobile Applications with HTML
Mindteck (India) Limited
 
Web-based Hybrid Mobile Apps: State of the Practice and Research opportunitie...
Ivano Malavolta
 
Hybrid Mobile Development with Apache Cordova and
Ryan Cuprak
 
Introduction to hybrid application development
Kunjan Thakkar
 
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Hazem Saleh
 
Hybrid app in ionic framework overview
Sanket Devlekar
 
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
Hazem Saleh
 
Hybrid Mobile App
Palani Kumar
 
Hybrid mobile app
Palani Kumar
 
Developing Great Apps with Apache Cordova
Shekhar Gulati
 
Trending mobile application Development
Praveen Kumar A G
 
Ad

More from Achim D. Brucker (17)

PDF
Usable Security for Developers: A Nightmare
Achim D. Brucker
 
PDF
Formalizing (Web) Standards: An Application of Test and Proof
Achim D. Brucker
 
PDF
Your (not so) smart TV is currently busy with taking down the Internet
Achim D. Brucker
 
PDF
The Evil Friend in Your Browser
Achim D. Brucker
 
PDF
How to Enable Developers to Deliver Secure Code
Achim D. Brucker
 
PDF
Isabelle: Not Only a Proof Assistant
Achim D. Brucker
 
PDF
Bringing Security Testing to Development: How to Enable Developers to Act as ...
Achim D. Brucker
 
PDF
Industrial Challenges of Secure Software Development
Achim D. Brucker
 
PDF
SAST for JavaScript: A Brief Overview of Commercial Tools
Achim D. Brucker
 
PDF
A Collection of Real World (JavaScript) Security Problems: Examples from 2 1/...
Achim D. Brucker
 
PDF
Deploying Static Application Security Testing on a Large Scale
Achim D. Brucker
 
PDF
Model-based Conformance Testing of Security Properties
Achim D. Brucker
 
PDF
Service Compositions: Curse or Blessing for Security?
Achim D. Brucker
 
PDF
Encoding Object-oriented Datatypes in HOL: Extensible Records Revisited
Achim D. Brucker
 
PDF
A Framework for Secure Service Composition
Achim D. Brucker
 
PDF
Extending Access Control Models with Break-glass
Achim D. Brucker
 
PDF
Security in the Context of Business Processes: Thoughts from a System Vendor'...
Achim D. Brucker
 
Usable Security for Developers: A Nightmare
Achim D. Brucker
 
Formalizing (Web) Standards: An Application of Test and Proof
Achim D. Brucker
 
Your (not so) smart TV is currently busy with taking down the Internet
Achim D. Brucker
 
The Evil Friend in Your Browser
Achim D. Brucker
 
How to Enable Developers to Deliver Secure Code
Achim D. Brucker
 
Isabelle: Not Only a Proof Assistant
Achim D. Brucker
 
Bringing Security Testing to Development: How to Enable Developers to Act as ...
Achim D. Brucker
 
Industrial Challenges of Secure Software Development
Achim D. Brucker
 
SAST for JavaScript: A Brief Overview of Commercial Tools
Achim D. Brucker
 
A Collection of Real World (JavaScript) Security Problems: Examples from 2 1/...
Achim D. Brucker
 
Deploying Static Application Security Testing on a Large Scale
Achim D. Brucker
 
Model-based Conformance Testing of Security Properties
Achim D. Brucker
 
Service Compositions: Curse or Blessing for Security?
Achim D. Brucker
 
Encoding Object-oriented Datatypes in HOL: Extensible Records Revisited
Achim D. Brucker
 
A Framework for Secure Service Composition
Achim D. Brucker
 
Extending Access Control Models with Break-glass
Achim D. Brucker
 
Security in the Context of Business Processes: Thoughts from a System Vendor'...
Achim D. Brucker
 

Recently uploaded (20)

PDF
Software Development Company Keene Systems, Inc (1).pdf
Custom Software Development Company | Keene Systems, Inc.
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Role_of_Artificial_Intelligence_in_Livestock_Extension_Services.pptx
DrRajdeepMadavi
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PPTX
Essential Content-centric Plugins for your Website
Laura Byrne
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PDF
Survival Models: Proper Scoring Rule and Stochastic Optimization with Competi...
Paris Women in Machine Learning and Data Science
 
PDF
Home Cleaning App Development Services.pdf
V3cube
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
[GDGoC FPTU] Spring 2025 Summary Slidess
minhtrietgect
 
PDF
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
Bitkom eIDAS Summit | European Business Wallet: Use Cases, Macroeconomics, an...
Carsten Stoecker
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PPTX
Talbott's brief History of Computers for CollabDays Hamburg 2025
Talbott Crowell
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Software Development Company Keene Systems, Inc (1).pdf
Custom Software Development Company | Keene Systems, Inc.
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Role_of_Artificial_Intelligence_in_Livestock_Extension_Services.pptx
DrRajdeepMadavi
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Essential Content-centric Plugins for your Website
Laura Byrne
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Survival Models: Proper Scoring Rule and Stochastic Optimization with Competi...
Paris Women in Machine Learning and Data Science
 
Home Cleaning App Development Services.pdf
V3cube
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
[GDGoC FPTU] Spring 2025 Summary Slidess
minhtrietgect
 
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Bitkom eIDAS Summit | European Business Wallet: Use Cases, Macroeconomics, an...
Carsten Stoecker
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Talbott's brief History of Computers for CollabDays Hamburg 2025
Talbott Crowell
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 

On the Static Analysis of Hybrid Mobile Apps: A Report on the State of Apache Cordova Nation

  • 1. On the Static Analysis of Hybrid Mobile Apps A Report on the State of Apache Cordova Nation Achim D. Brucker and Michael Herzberg {a.brucker,msherzberg1}@sheffield.ac.uk Department of Computer Science, The University of Sheffield, Sheffield, UK (Parts of this research were done while the authors were working at SAP SE in Germany.) International Symposium on Engineering Secure Software and Systems (ESSoS 2016) April 6 - 8, 2016, London, UK
  • 2. On the Static Analysis of Hybrid Mobile Apps: A Report on the State of Apache Cordova Nation Abstract Developing mobile applications is a challenging business: developers need to support multiple platforms and, at the same time, need to cope with limited resources, as the revenue generated by an average app is rather small. This results in an increasing use of cross-platform development frameworks that allow developing an app once and offering it on multiple mobile platforms such as Android, iOS, or Windows. Apache Cordova is a popular framework for developing multi-platform apps. Cordova combines HTML5 and JavaScript with native application code. Combining web and native technologies creates new security challenges as, e.g., an XSS attacker becomes more powerful. In this paper, we present a novel approach for statically analysing the foreign language calls. We evaluate our approach by analysing the top Cordova apps from Google Play. Moreover, we report on the current state of the overall quality and security of Cordova apps. Keywords: static program analysis, static application security testing, Android, Cordova, hybrid mobile apps.
  • 3. Outline 1 Motivation: Hybrid Mobile Apps and their Security Challenges 2 Real World Cordova Usage 3 Static Analysis for Hybrid Apps: Building a Unified Call Graph 4 Quality of the Unified Call Graph 5 Conclusions
  • 4. Motivation: Hybrid Mobile Apps and their Security Challenges What is a Hybrid App? Native, HTML5, or hybrid Native apps Java Swift C# Developed for a specific platform All features available Web apps HTML5 and JS Hosted on server, all platforms No access to device features Platform-specific Platform-independent A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 4
  • 5. Motivation: Hybrid Mobile Apps and their Security Challenges What is a Hybrid App? Native, HTML5, or hybrid Native apps Java Swift C# Developed for a specific platform All features available + Hybrid apps HTML5, JS, and native Build once, run everywhere Access to device features through plugins Web apps HTML5 and JS Hosted on server, all platforms No access to device features Platform-specific Platform-independent A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 4
  • 6. Motivation: Hybrid Mobile Apps and their Security Challenges Why Apache Cordova? https://cordova.apache.org/ Apache Cordova is most popular hybrid app framework Open source Many companies offer Apache Cordova plus commercial plugins (e.g., Adobe PhoneGap or SAP Kapsel) A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 5
  • 7. Motivation: Hybrid Mobile Apps and their Security Challenges The Apache Cordova Framework for Android A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 6
  • 8. Motivation: Hybrid Mobile Apps and their Security Challenges Example app A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 7
  • 9. Motivation: Hybrid Mobile Apps and their Security Challenges Technical view A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 8
  • 10. Motivation: Hybrid Mobile Apps and their Security Challenges Technical view A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 8
  • 11. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 12. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 13. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 14. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 15. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 16. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 17. Motivation: Hybrid Mobile Apps and their Security Challenges Example: Get Phone Number function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } var failureCallback = ... cordova.exec(successCallback, failureCallback, "ContactsPlugin", "find", [{"name" : name}]); } class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 9
  • 18. Motivation: Hybrid Mobile Apps and their Security Challenges First security assessment Problem: JS/Java Bridge is vulnerable to injection attacks For regular apps: Static Application Security Testing (SAST) But: No support for cross-language analysis Our goal: Provide basis (call graph) to apply SAST to hybrid mobile apps A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 10
  • 19. Outline 1 Motivation: Hybrid Mobile Apps and their Security Challenges 2 Real World Cordova Usage 3 Static Analysis for Hybrid Apps: Building a Unified Call Graph 4 Quality of the Unified Call Graph 5 Conclusions
  • 20. Real World Cordova Usage What we were interested in Main goals: Understand the use of Cordova Learn requirements for Cordova security testing tools Looking for answers for questions like How many apps are using Cordova? How is Cordova used by app developers? Are cross-language calls common or not? A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 12
  • 21. Real World Cordova Usage Test sets Selection of apps all apps that ship Cordova from Google’s Top 1000: 100 apps ship Cordova plugins only 50 actually use Cordova (5%) three selected apps from SAP (using SAP Kapsel) one artificial test app (to test our tool) Manual analysis of 8 apps (including one from SAP) to understand the use of Cordova to assess the quality of our automated analysis A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 13
  • 22. Real World Cordova Usage What we have learned: plugin use Plugins are used for accessing device information showing native dialog boxes and splash screens accessing network information accessing the file storage accessing the camera . . . But: Many different versions and some even modified! Plugin device 52% inappbrowser 50% dialogs 40% splashscreen 36% network-information 28% file 28% console 24% camera 22% statusbar 22% PushPlugin 22% A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 14
  • 23. Real World Cordova Usage What we have learned: app size App size: mobile apps are not always small SAP apps seem to be larger than the average Exceptional apps: No HTML/JS in APK Ship Cordova, but do not use it App Category JS [kLoC] Java [kLoC] sap01 Finance 35.5 17.0 sap02 Business 345.3 53.5 sap03 Business 572.3 135.8 app01 Finance 26.3 17.8 app02 Finance 11.2 16.8 app03 Social 4.6 103.7 app04 Business 37.5 16.8 app05 Finance 20.0 44.8 app06 Finance 30.4 24.3 app07 Travel & Local 129.0 304.0 app08 Entertainment 36.7 23.0 app09 Lifestyle 36.3 44.7 app10 Finance 43.7 18.4 app11 Business 14.0 438.9 . . . . . . . . . . . . A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 15
  • 24. Outline 1 Motivation: Hybrid Mobile Apps and their Security Challenges 2 Real World Cordova Usage 3 Static Analysis for Hybrid Apps: Building a Unified Call Graph 4 Quality of the Unified Call Graph 5 Conclusions
  • 25. Static Analysis for Hybrid Apps: Building a Unified Call Graph Challenges Based on the examined apps: Cordova relies heavily on dynamic mechanisms, both on JavaScript and Java side Developers modify their plugins and sometimes implement their own Deep framework analysis Modelling framework Modelling plugins Closest to the actual program But: Framework very expensive Models the Cordova framework Analyses plugins Models both framework and plugins Analyses only UI and business logic part But: Developers can write own plugins A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 17
  • 26. Static Analysis for Hybrid Apps: Building a Unified Call Graph Our approach: analyze plugins, but model the Cordova framework First build call graphs of Java and JavaScript separatly Connect them using four heuristics that exploit frequent coding patterns: ConvertModules ReplaceCordovaExec FilterJavaCallSites FilterJSFrameworks Result: Unified Call Graph A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 18
  • 27. Static Analysis for Hybrid Apps: Building a Unified Call Graph ConvertModules define("com.foo.contacts", function(require, exports, module) { exports.find = function(successCallback, name) { cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]); } }); ... var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } plugins.contacts.find(successCallback, "Peter"); Problem: Not all callback functions are defined within the plugin Difficult to track callback functions from app code Solution: Substitute dynamic mechanism with unique, global variable A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 19
  • 28. Static Analysis for Hybrid Apps: Building a Unified Call Graph ConvertModules define("com.foo.contacts", function(require, exports, module) { plugins.contacts.find = function(successCallback, name) { cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]); } }); ... var successCallback = function(contact) { alert("Phone number: " + contacts.phone); } plugins.contacts.find(successCallback, "Peter"); Problem: Not all callback functions are defined within the plugin Difficult to track callback functions from app code Solution: Substitute dynamic mechanism with unique, global variable A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 19
  • 29. Static Analysis for Hybrid Apps: Building a Unified Call Graph ConvertModules: Results Most useful for small plugins more precise analysis Allows finding of callback functions in app code Less errors due to less ambiguity of dynamic mechanism A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 20
  • 30. Static Analysis for Hybrid Apps: Building a Unified Call Graph ReplaceCordovaExec function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: "+contacts.phone); } cordova.exec(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]); } Problem: Callback call sites are hard to find No context-sensitivity Solution: Stub the exec method A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 21
  • 31. Static Analysis for Hybrid Apps: Building a Unified Call Graph ReplaceCordovaExec function showPhoneNumber(name) { var successCallback = function(contact) { alert("Phone number: "+contacts.phone); } function stub1(succ, fail) { succ(null); fail(null); } stub1(successCallback, null, "ContactsPlugin", "find", [{"name" : name}]); } Problem: Callback call sites are hard to find No context-sensitivity Solution: Stub the exec method A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 21
  • 32. Static Analysis for Hybrid Apps: Building a Unified Call Graph ReplaceCordovaExec: Results Neccessary to find any Java to JavaScript calls Most apps use exec to communicate, only some bypass it Inexpensive way to get context-sensitivity where it is needed the most A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 22
  • 33. Static Analysis for Hybrid Apps: Building a Unified Call Graph FilterJavaCallSites class ContactsPlugin extends CordovaPlugin { boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) { if ("find".equals(action)) { String name = args.get(0).name; find(name, callbackContext); } else if ("create".equals(action)) ... } void find(String name, CallbackContext callbackContext) { Contact contact = query("SELECT ... where name=" + name); callbackContext.success(contact); } } Problem: How to determine the targets of the callbackContext calls? Can we use the pattern of the action usage? Solution: Determine which callbackContext calls are reachable A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 23
  • 34. Static Analysis for Hybrid Apps: Building a Unified Call Graph FilterJavaCallSites: details A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
  • 35. Static Analysis for Hybrid Apps: Building a Unified Call Graph FilterJavaCallSites: details A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
  • 36. Static Analysis for Hybrid Apps: Building a Unified Call Graph FilterJavaCallSites: details A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 24
  • 37. Static Analysis for Hybrid Apps: Building a Unified Call Graph FilterJavaCallSites: results Developers all use action variable similarly Therefore: Many incorrect edges avoided But: A few calls from Java to JavaScript are missed now Some store the callbackContext and call asynchronously A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 25
  • 38. Outline 1 Motivation: Hybrid Mobile Apps and their Security Challenges 2 Real World Cordova Usage 3 Static Analysis for Hybrid Apps: Building a Unified Call Graph 4 Quality of the Unified Call Graph 5 Conclusions
  • 39. Quality of the Unified Call Graph What we have learned: app size and cross-language calls Cross-language calls: calls from Java to JS: very common calls from JS to Java: surprisingly uncommon App Category Java2JS JS2Java JS [kLoC] Java [kLoC] sap01 Finance 2 12 35.5 17.0 sap02 Business 20814 39 345.3 53.5 sap03 Business 9531 75 572.3 135.8 app01 Finance 9 13 26.3 17.8 app02 Finance 2 10 11.2 16.8 app03 Social 2349 31 4.6 103.7 app04 Business 1 6 37.5 16.8 app05 Finance 6 26 20.0 44.8 app06 Finance 693 70 30.4 24.3 app07 Travel & Local 3430 43 129.0 304.0 app08 Entertainment 14220 67 36.7 23.0 app09 Lifestyle 51553 89 36.3 44.7 app10 Finance 8 36 43.7 18.4 app11 Business 0 0 14.0 438.9 . . . . . . . . . . . . . . . . . . A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 27
  • 40. Quality of the Unified Call Graph Recall and Precision Recall: Correctly reported calls All reported calls Precision: Correctly reported calls Calls actually present App kLoC kNodes Plugins Recall Precision Calls app01 43 9 5 33% 75% 17 app02 27 8 4 100% 66% 13 app03 106 18 8 1% 93% 61 app04 53 14 3 100% 100% 7 app05 64 10 7 33% 66% 29 app06 53 8 12 35% 97% 316 sap01 52 19 6 100% 66% 15 dvhma 17 7 4 100% 100% 15 A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 28
  • 41. Outline 1 Motivation: Hybrid Mobile Apps and their Security Challenges 2 Real World Cordova Usage 3 Static Analysis for Hybrid Apps: Building a Unified Call Graph 4 Quality of the Unified Call Graph 5 Conclusions
  • 42. Conclusions Summary Hybrid mobile apps are getting more popular they are recommended at SAP Hybrid mobile apps are juicy targets E.g., gain access to the app via the JS part . . . . . . and use the app’s permissions to steal data Unified Call Graph is a first step in bringing the full power of SAST to hybrid apps Quality largely depends on used call graph builders Future work: Data-flow analysis on top of Unified Call Graph A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 30
  • 43. Thank you for your attention! Any questions or remarks?
  • 44. Conclusions Bibliography Achim D. Brucker and Michael Herzberg. On the static analysis of hybrid mobile apps: A report on the state of apache cordova nation. In Juan Caballero and Eric Bodden, editors, International Symposium on Engineering Secure Software and Systems (ESSoS), Lecture Notes in Computer Science. Springer-Verlag, 2016. A.D. Brucker and M. Herzberg The University of Sheffield On the Static Analysis of Hybrid Mobile Apps April 7, 2016 32