SlideShare a Scribd company logo
1 of 56
Download to read offline
Ch 6: Mobile Services and 

Mobile Web

Part 1
CNIT 128:
Hacking Mobile
Devices
Updated 2-22-17
Ch 6 Part 1
Through OAuth
Part 2 starts with SAML
Server-Side Technologies
• SQL (Structured Query Language)
– Servers that manage databases
– Contain SSNs, credit card numbers,
sometimes passwords, etc.
Server-Side Technologies
• SOAP (Simple Object Access Protocol)
– XML-based middleware to exchange data
between servers and clients
– Can operate over any transport protocol such
as HTTP, SMTP, TCP, UDP, or JMS (link Ch 6a)
– Examples on next slides from link Ch 6l
JSON v. XML
• From link Ch 6n
JSON XML
Server-Side Technologies
• ReST (Representational State Transfer)
– Uses HTTP to transfer data between machines
– The World Wide Web can be viewed as a REST-
based architecture (link Ch 6c)
– Send data with PUT, get it with GET (link Ch 6n)
Server-Side Technologies
• JSON (JavaScript
Object Notation)
– Lightweight
data-interchange
format
– An alternative to
XML (link Ch 6b)
– Example from
link Ch 6m
Server-Side Vulnerabilities
• Expose far more data than client-side
vulnerabilities
• Larger attack surface than client
– Server runs services, some for clients, others
for business logic, internal interfaces,
databases, partner interfaces, etc.
General Web Service Security
Guidelines:
OWASP Top Ten Mobile Risks
2016
Link Ch 6k
Attacks Against XML-Based
Web Services
Security Audit of XML-Based Web
Service
• Identify web service endpoints
– By examining source code of client
– Or examining Web traffic while client runs
• Craft legitimate web service requests
– For all endpoints and operations
• Vulnerability Discovery
– By altering structure of contents of XML
documents sent to the web service endpoints
Web Services Description Language
(WSDL)
• An XML-based
interface
description language
– Used to describe
functionality offered
by a Web service
– Image from
Wikipedia (link Ch
6f)
SoapUI
• SoapUI can build a set of base test cases given a
URL to an identified WDSL
– Link Ch 6g
XML Injection Example
• Client sends
<?xml version="1.0"?>
<ProductRequest>
<Id>584654</Id>
</ProductRequest>
• Sever replies, echoing Id from client
<?xml version="1.0"?>
<ProductResponse>
<Id>584654</Id>
<Price>199.99</Price>
</ProductResponse>
XML Injection Example
• Client sends an Id of
584654</Id><Price>0.99</Price>
</ProductResponse>
<ProductResponse><Id>123
• Sever reply becomes
<?xml version="1.0"?>
<ProductResponse>
<Id>584654</Id><Price>0.99</Price>
</ProductResponse>
<ProductResponse><Id>123
</Id>
<Price>199.99</Price>
</ProductResponse>
Effect of XML Injection
• Depends on how server handles a strange
response like that
• Most would accept the first XML portion
with the modified price
XML Injection Countermeasures
• Input validation
– Best done with whitelisting (allowing only
known-good characters)
• Output encoding
– Change "<" to "&lt;"
• Use encoding functions from a trusted
source, such as OWASP
XML Entity Expansion
• A Denial-of-Service (DoS) attack using XML
entities that expand greatly at process
time
• The example sends a 662-byte request
that expands to 20 MB at the server
• Enough of these requests can stop a
server by RAM exhaustion
XML Entity Expansion
<?xml version="1.0"?>
<!DOCTYPE root [ <ENTITY a1 "I've often
seen a cat without a grin..."> ]>
<someElement1><someElement2>&a1;

</someElement2></someElement1>
Expands to
<?xml version="1.0"?>
<someElement1><someElement2>
I've often seen a cat without a grin...</
someElement2></someElement1>
XML Entity Expansion Example
POST /SomeWebServiceEndpoint HTTP/1.1
Host: www.example.com
Content-Length: 662
<?xml version="1.0"?>
<!DOCTYPE root [
<ENTITY a1 "I've often seen a cat without a grin...">
<ENTITY a2 "&a1;&a1;"><ENTITY a3 "&a2;&a2;">
<ENTITY a4 "&a3;&a3;"><ENTITY a5 "&a4;&a4;">
...
<ENTITY a20 "&a19;&a19;">
]>
<someElement1><someElement2>&a20;</someElement2></
someElement1>
XML Entity Expansion Countermeasures
• Disable Document Type Definitions (DTDs)
in the XML parser
• Set a limit on the depth of entity
expansions in the parser
• Note: phones have XML parsers too, and
can be attacked the same way
– The iOS NSXMLParser parser is protected
– But not Android's SAXParser
XML Entity Reference
• Abuse XML entities to acquire the
contents of files on the Web server
• The example on the next page defines an
external entity reference "fileContents"
that points to the hosts file on Windows
and uses it
XML Entity Reference Example
POST /SomeWebServiceEndpoint HTTP/1.1
Host: www.example.com
Content-Length: 196
<?xml version="1.0"?>
<!DOCTYPE fileDocType = [
<ENTITY fileContents SYSTEM "C:Windows
System32driversetchosts">
]>
<someElement1><someElement2>&fileContents;</
someElement2></someElement1>
XML Entity Reference
• If the XML parser supports DTDs with
external entities
– Many parsers do by default
– The parser will fetch the host file and may
display the file in the XML response to the
attacker
– It's limited only by file permissions
– If the Web service runs as root, it can read
any file
XML Entity Reference
• Can be used for DoS by
– Requesting a special device file, or
– Forcing the parser to make many HTTP
requests to remote resources, exhausting the
network connection pool
XML Entity Reference Countermeasures
• Disable DTDs altogether if you don't need
them
• Allow DTDs that contain general entities,
but
– Prevent the processing of external entities
• Set up an EntityResolver object to limit
access to a whitelist of resources
XML Entity Reference
• Can attack phones too
– Android is vulnerable and the same
countermeasures apply
– The iOS NSXMLParser class does not handle
external entities by default, but a developer
can enable this dangerous functionality
Common Authentication and
Authorization Frameworks
Authentication Issues
• Web apps typically authenticate with
passwords
– So do mobile apps
• Users don't want to type in the password
every time they use an app
– Storing user's credentials in plaintext is
unwise
Credential Storage Options
• Secure Element (SE)
– A special tamper-resistant hardware component
– Not present in all phones, although some have
one for NFC payment (link Ch 6h)
• Authorization Framework
– Such as OAuth
– First authenticates a user with a password
– Creates a token to be stored on the phone
– Less valuable than a password to an attacker
Recommendations
• Token can be made less dangerous
– Set reasonable expiration dates
– Restrict token's scope
– Revoke tokens that are known to be
compromised
• For financial apps
– Don't store any token at all on client-side
– Force the user to authenticate each time the
app is used
OAuth 2 

Open Authorization
• Popular
– Used by Google, Facebook, Yahoo!, LinkedIn,
and PayPal
• Allows one app to access protected
resources in another app without knowing
the user's credentials
– Like Microsoft's Federated Identity
Management
Main Actors in OAuth 2
• Resource owner
– End-user with access to credentials, who
owns the protected resources
• Resource server
– Server hosting protected resources
– Allows client access to the protected
resources when provided a valid access token
Main Actors in OAuth 2
• Client
– App seeking to access protected resources
– Typically a mobile app or web app
• Authorization Server
– Server that provides the client application
with access tokens
• After the resource owner has provided valid
credentials
OAuth 2 has Four Grant Types
• Client Credentials Grant
• Resource Owner Password Credentials Grant
• Authorization Code Grant
• Implicit Grant
• "User Agent" in these diagrams is either your
mobile browser or a WebView component
embedded within the application
OAuth Client Credentials Grant
• Stores password on client
• Should only be used for confidential clients
– That can maintain the confidentiality of their credentials
• Not usually appropriate for mobile devices because
of device theft
OAuth Client Credentials Grant
• OK if mobile app has access to a Secure
Element (SE)
– But most mobile apps cannot interface with a SE
• This grant type should be avoided
– Unless app takes additional steps to protect
authentication info
– Such as forcing user to enter a complex password
every time the app launches
– Password used to encrypt/decrypt authentication
info
OAuth Resource Owner Password
Credentials Grant Type
• App is trusted with credentials, but need not
save them
• It can save the token instead
OAuth Resource Owner Password
Credentials Grant Type
• OK if
– Client app is trusted not to leak credentials
to a third party
– Same entity controls authorization server,
resource server, and client app
• Better than storing credentials in
plaintext on the mobile device and
submitting them in every HTTP request
OAuth Authorization Code Grant Type
OAuth Authorization Code Grant Type
• 1. Client directs user-agent (browser or
WebView component) to authorization
endpoint
• Request includes
– Client identifier
– Requested scope
– Local state
– Redirection URI
Using Mobile WebView to Steal
Credentials
• In theory, client app cannot access resource
owner's credentials
– Because resource owner types credentials on
the authorization server's web page
– Via user-agent, typically a browser
• If a mobile app uses a WebView component
instead of an external mobile browser
– Client app can steal credentials with malicious
JavaScript
URL Redirection Attacks
• The URI in steps 1 and 4 could be
malicious, sending the client to a
dangerous website
– This could phish users, or steal tokens
• URIs should be validated, and enforced to
be equal in steps 1 and 4
OAuth Implicit Grant Type
https://samsclass.info/128/128_S15.shtml#projects
• The "#projects" is a fragment
• Not sent to server in HTTP request
– Used only by the browser to display the specified
potion of the page
– Link Ch 6i
OAuth Implicit Grant Type
• Token not sent to server in step 4
• In step 5, server sends JavaScript to get the
token
• Intermediate servers cannot see data
stored in the fragment
• Fragment does not appear in an
unencrypted form in client or web server
logs
– Limits some information leakage vulnerabilities
General OAuth Threats
Lack of TLS Enforcement
• OAuth does not support message-level
confidentiality or integrity
• Must use TLS to prevent sniffing of
– Authorization tokens
– Refresh tokens
– Access tokens
– Resource owner credentials
Cross-Site Request Forgery (CSRF)
• Attacker can steal a token by tricking the
user into visiting a malicious URL like
<img src="http://www.example.com/
oauth_endpoint?code=attacker_code">
• Will steal token
• Tokens can be re-used, unless optional
"state" parameter is enabled in OAuth 2
Improper Storage of Sensitive Data
• Server-side has many tokens and
credentials
• Must be secured against attack with
cryptographic controls
Overly Scoped Access Tokens
• Scope: level of access a token grants
• Token may enable
– Sending social networking messages on your
behalf, or
– Merely viewing portions of your social
messaging profile
• Follow principle of least privilege
Lack of Token Expiration
• Tokens that don't expire and are overly
scoped are almost as good as stealing
credentials
– Sometimes even better
– A password reset may not cause old tokens to
expire

More Related Content

What's hot

What's hot (20)

CNIT 129S: Ch 6: Attacking Authentication
CNIT 129S: Ch 6: Attacking AuthenticationCNIT 129S: Ch 6: Attacking Authentication
CNIT 129S: Ch 6: Attacking Authentication
 
Android secure coding
Android secure codingAndroid secure coding
Android secure coding
 
CNIT 129S: 13: Attacking Users: Other Techniques (Part 2 of 2)
CNIT 129S: 13: Attacking Users: Other Techniques (Part 2 of 2)CNIT 129S: 13: Attacking Users: Other Techniques (Part 2 of 2)
CNIT 129S: 13: Attacking Users: Other Techniques (Part 2 of 2)
 
Mobile Application Scan and Testing
Mobile Application Scan and TestingMobile Application Scan and Testing
Mobile Application Scan and Testing
 
Core defense mechanisms against security attacks on web applications
Core defense mechanisms against security attacks on web applicationsCore defense mechanisms against security attacks on web applications
Core defense mechanisms against security attacks on web applications
 
Mobile Authentication - Moving Towards a Passwordless Future
Mobile Authentication - Moving Towards a Passwordless FutureMobile Authentication - Moving Towards a Passwordless Future
Mobile Authentication - Moving Towards a Passwordless Future
 
Defcon 22-alex zacharis-nikolaos-tsagkarakis-po s-attacking-t
Defcon 22-alex zacharis-nikolaos-tsagkarakis-po s-attacking-tDefcon 22-alex zacharis-nikolaos-tsagkarakis-po s-attacking-t
Defcon 22-alex zacharis-nikolaos-tsagkarakis-po s-attacking-t
 
Securing Microservices with Spring Cloud Security
Securing Microservices with Spring Cloud SecuritySecuring Microservices with Spring Cloud Security
Securing Microservices with Spring Cloud Security
 
iOS Application Security Testing
iOS Application Security TestingiOS Application Security Testing
iOS Application Security Testing
 
CNIT 129S - Ch 6a: Attacking Authentication
CNIT 129S - Ch 6a: Attacking AuthenticationCNIT 129S - Ch 6a: Attacking Authentication
CNIT 129S - Ch 6a: Attacking Authentication
 
Two-factor Authentication
Two-factor AuthenticationTwo-factor Authentication
Two-factor Authentication
 
Mobile Application Security – Effective methodology, efficient testing!
Mobile Application Security – Effective methodology, efficient testing!Mobile Application Security – Effective methodology, efficient testing!
Mobile Application Security – Effective methodology, efficient testing!
 
Two Factor Authentication and You
Two Factor Authentication and YouTwo Factor Authentication and You
Two Factor Authentication and You
 
CNIT 129S: 8: Attacking Access Controls
CNIT 129S: 8: Attacking Access ControlsCNIT 129S: 8: Attacking Access Controls
CNIT 129S: 8: Attacking Access Controls
 
Mobile security chess board - attacks & defense
Mobile security chess board - attacks & defenseMobile security chess board - attacks & defense
Mobile security chess board - attacks & defense
 
Applciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumerationApplciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumeration
 
CNIT 128 7. Attacking Android Applications (Part 3)
CNIT 128 7. Attacking Android Applications (Part 3)CNIT 128 7. Attacking Android Applications (Part 3)
CNIT 128 7. Attacking Android Applications (Part 3)
 
Secure Elements in Web Applications
Secure Elements in Web ApplicationsSecure Elements in Web Applications
Secure Elements in Web Applications
 
The presentation on my "Shadow Admins" research
The presentation on my "Shadow Admins" researchThe presentation on my "Shadow Admins" research
The presentation on my "Shadow Admins" research
 
Security testing in mobile applications
Security testing in mobile applicationsSecurity testing in mobile applications
Security testing in mobile applications
 

Viewers also liked

Viewers also liked (20)

CNIT 127 Lecture 7: Intro to 64-Bit Assembler (not in book)
CNIT 127 Lecture 7: Intro to 64-Bit Assembler (not in book)CNIT 127 Lecture 7: Intro to 64-Bit Assembler (not in book)
CNIT 127 Lecture 7: Intro to 64-Bit Assembler (not in book)
 
CNIT 128 5: Mobile malware
CNIT 128 5: Mobile malwareCNIT 128 5: Mobile malware
CNIT 128 5: Mobile malware
 
Ch 4: Footprinting and Social Engineering
Ch 4: Footprinting and Social EngineeringCh 4: Footprinting and Social Engineering
Ch 4: Footprinting and Social Engineering
 
CNIT 127 Ch 2: Stack overflows on Linux
CNIT 127 Ch 2: Stack overflows on LinuxCNIT 127 Ch 2: Stack overflows on Linux
CNIT 127 Ch 2: Stack overflows on Linux
 
CNIT 123 Ch 1: Ethical Hacking Overview
CNIT 123 Ch 1: Ethical Hacking OverviewCNIT 123 Ch 1: Ethical Hacking Overview
CNIT 123 Ch 1: Ethical Hacking Overview
 
Ch 8: Desktop and Server OS Vulnerabilites
Ch 8: Desktop and Server OS VulnerabilitesCh 8: Desktop and Server OS Vulnerabilites
Ch 8: Desktop and Server OS Vulnerabilites
 
Ch 9: Embedded Operating Systems: The Hidden Threat
Ch 9: Embedded Operating Systems: The Hidden ThreatCh 9: Embedded Operating Systems: The Hidden Threat
Ch 9: Embedded Operating Systems: The Hidden Threat
 
Ch 3: Network and Computer Attacks
Ch 3: Network and Computer AttacksCh 3: Network and Computer Attacks
Ch 3: Network and Computer Attacks
 
Ch 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts ReviewCh 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts Review
 
CNIT 127 Ch 5: Introduction to heap overflows
CNIT 127 Ch 5: Introduction to heap overflowsCNIT 127 Ch 5: Introduction to heap overflows
CNIT 127 Ch 5: Introduction to heap overflows
 
Ch 6: Enumeration
Ch 6: EnumerationCh 6: Enumeration
Ch 6: Enumeration
 
Ch 7: Programming for Security Professionals
Ch 7: Programming for Security ProfessionalsCh 7: Programming for Security Professionals
Ch 7: Programming for Security Professionals
 
Ch 12: Cryptography
Ch 12: CryptographyCh 12: Cryptography
Ch 12: Cryptography
 
Ch 13: Network Protection Systems
Ch 13: Network Protection SystemsCh 13: Network Protection Systems
Ch 13: Network Protection Systems
 
Ch 10: Hacking Web Servers
Ch 10: Hacking Web ServersCh 10: Hacking Web Servers
Ch 10: Hacking Web Servers
 
Practical Malware Analysis: Ch 15: Anti-Disassembly
Practical Malware Analysis: Ch 15: Anti-DisassemblyPractical Malware Analysis: Ch 15: Anti-Disassembly
Practical Malware Analysis: Ch 15: Anti-Disassembly
 
Ch 5: Port Scanning
Ch 5: Port ScanningCh 5: Port Scanning
Ch 5: Port Scanning
 
CNIT 127: Ch 8: Windows overflows (Part 1)
CNIT 127: Ch 8: Windows overflows (Part 1)CNIT 127: Ch 8: Windows overflows (Part 1)
CNIT 127: Ch 8: Windows overflows (Part 1)
 
Mobile Services on a Shoestring
Mobile Services on a ShoestringMobile Services on a Shoestring
Mobile Services on a Shoestring
 
mobile online services
mobile online servicesmobile online services
mobile online services
 

Similar to CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)

Oauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 supportOauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 support
Gaurav Sharma
 
0_Leksion_Web_Servers (1).pdf
0_Leksion_Web_Servers (1).pdf0_Leksion_Web_Servers (1).pdf
0_Leksion_Web_Servers (1).pdf
Zani10
 
Globus Auth: A Research Identity and Access Management Platform
Globus Auth: A Research Identity and Access Management PlatformGlobus Auth: A Research Identity and Access Management Platform
Globus Auth: A Research Identity and Access Management Platform
Ian Foster
 
Openstack identity protocols unconference
Openstack identity protocols unconferenceOpenstack identity protocols unconference
Openstack identity protocols unconference
David Waite
 
Rest with Java EE 6 , Security , Backbone.js
Rest with Java EE 6 , Security , Backbone.jsRest with Java EE 6 , Security , Backbone.js
Rest with Java EE 6 , Security , Backbone.js
Carol McDonald
 

Similar to CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth) (20)

Oauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 supportOauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 support
 
0_Leksion_Web_Servers (1).pdf
0_Leksion_Web_Servers (1).pdf0_Leksion_Web_Servers (1).pdf
0_Leksion_Web_Servers (1).pdf
 
CIS 2012 - Going Mobile with PingFederate and OAuth 2
CIS 2012 - Going Mobile with PingFederate and OAuth 2CIS 2012 - Going Mobile with PingFederate and OAuth 2
CIS 2012 - Going Mobile with PingFederate and OAuth 2
 
Introduction to OAuth2.0
Introduction to OAuth2.0Introduction to OAuth2.0
Introduction to OAuth2.0
 
Ch 13: Attacking Users: Other Techniques (Part 2)
Ch 13: Attacking Users: Other Techniques (Part 2)Ch 13: Attacking Users: Other Techniques (Part 2)
Ch 13: Attacking Users: Other Techniques (Part 2)
 
Globus Auth: A Research Identity and Access Management Platform
Globus Auth: A Research Identity and Access Management PlatformGlobus Auth: A Research Identity and Access Management Platform
Globus Auth: A Research Identity and Access Management Platform
 
OAuth2
OAuth2OAuth2
OAuth2
 
Protecting your APIs with Doorkeeper and OAuth 2.0
Protecting your APIs with Doorkeeper and OAuth 2.0Protecting your APIs with Doorkeeper and OAuth 2.0
Protecting your APIs with Doorkeeper and OAuth 2.0
 
ConFoo 2015 - Securing RESTful resources with OAuth2
ConFoo 2015 - Securing RESTful resources with OAuth2ConFoo 2015 - Securing RESTful resources with OAuth2
ConFoo 2015 - Securing RESTful resources with OAuth2
 
OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...
OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...
OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...
 
CIS13: Introduction to OAuth 2.0
CIS13: Introduction to OAuth 2.0CIS13: Introduction to OAuth 2.0
CIS13: Introduction to OAuth 2.0
 
Openstack identity protocols unconference
Openstack identity protocols unconferenceOpenstack identity protocols unconference
Openstack identity protocols unconference
 
OpenSocial and Mixi platform
OpenSocial and Mixi platformOpenSocial and Mixi platform
OpenSocial and Mixi platform
 
Oauth Nightmares Abstract OAuth Nightmares
Oauth Nightmares Abstract OAuth Nightmares Oauth Nightmares Abstract OAuth Nightmares
Oauth Nightmares Abstract OAuth Nightmares
 
Ch-1_.ppt
Ch-1_.pptCh-1_.ppt
Ch-1_.ppt
 
Rest with Java EE 6 , Security , Backbone.js
Rest with Java EE 6 , Security , Backbone.jsRest with Java EE 6 , Security , Backbone.js
Rest with Java EE 6 , Security , Backbone.js
 
Rest
RestRest
Rest
 
OAuth 2.0 - The fundamentals, the good , the bad, technical primer and commo...
OAuth 2.0  - The fundamentals, the good , the bad, technical primer and commo...OAuth 2.0  - The fundamentals, the good , the bad, technical primer and commo...
OAuth 2.0 - The fundamentals, the good , the bad, technical primer and commo...
 
SharePoint 2013 - What's New
SharePoint 2013 - What's NewSharePoint 2013 - What's New
SharePoint 2013 - What's New
 
Securing SharePoint Apps with OAuth
Securing SharePoint Apps with OAuthSecuring SharePoint Apps with OAuth
Securing SharePoint Apps with OAuth
 

More from Sam Bowne

More from Sam Bowne (20)

Cyberwar
CyberwarCyberwar
Cyberwar
 
3: DNS vulnerabilities
3: DNS vulnerabilities 3: DNS vulnerabilities
3: DNS vulnerabilities
 
8. Software Development Security
8. Software Development Security8. Software Development Security
8. Software Development Security
 
4 Mapping the Application
4 Mapping the Application4 Mapping the Application
4 Mapping the Application
 
3. Attacking iOS Applications (Part 2)
 3. Attacking iOS Applications (Part 2) 3. Attacking iOS Applications (Part 2)
3. Attacking iOS Applications (Part 2)
 
12 Elliptic Curves
12 Elliptic Curves12 Elliptic Curves
12 Elliptic Curves
 
11. Diffie-Hellman
11. Diffie-Hellman11. Diffie-Hellman
11. Diffie-Hellman
 
2a Analyzing iOS Apps Part 1
2a Analyzing iOS Apps Part 12a Analyzing iOS Apps Part 1
2a Analyzing iOS Apps Part 1
 
9 Writing Secure Android Applications
9 Writing Secure Android Applications9 Writing Secure Android Applications
9 Writing Secure Android Applications
 
12 Investigating Windows Systems (Part 2 of 3)
12 Investigating Windows Systems (Part 2 of 3)12 Investigating Windows Systems (Part 2 of 3)
12 Investigating Windows Systems (Part 2 of 3)
 
10 RSA
10 RSA10 RSA
10 RSA
 
12 Investigating Windows Systems (Part 1 of 3
12 Investigating Windows Systems (Part 1 of 312 Investigating Windows Systems (Part 1 of 3
12 Investigating Windows Systems (Part 1 of 3
 
9. Hard Problems
9. Hard Problems9. Hard Problems
9. Hard Problems
 
8 Android Implementation Issues (Part 1)
8 Android Implementation Issues (Part 1)8 Android Implementation Issues (Part 1)
8 Android Implementation Issues (Part 1)
 
11 Analysis Methodology
11 Analysis Methodology11 Analysis Methodology
11 Analysis Methodology
 
8. Authenticated Encryption
8. Authenticated Encryption8. Authenticated Encryption
8. Authenticated Encryption
 
7. Attacking Android Applications (Part 2)
7. Attacking Android Applications (Part 2)7. Attacking Android Applications (Part 2)
7. Attacking Android Applications (Part 2)
 
7. Attacking Android Applications (Part 1)
7. Attacking Android Applications (Part 1)7. Attacking Android Applications (Part 1)
7. Attacking Android Applications (Part 1)
 
5. Stream Ciphers
5. Stream Ciphers5. Stream Ciphers
5. Stream Ciphers
 
6 Scope & 7 Live Data Collection
6 Scope & 7 Live Data Collection6 Scope & 7 Live Data Collection
6 Scope & 7 Live Data Collection
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 

CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)

  • 1. Ch 6: Mobile Services and 
 Mobile Web
 Part 1 CNIT 128: Hacking Mobile Devices Updated 2-22-17
  • 2. Ch 6 Part 1 Through OAuth Part 2 starts with SAML
  • 3. Server-Side Technologies • SQL (Structured Query Language) – Servers that manage databases – Contain SSNs, credit card numbers, sometimes passwords, etc.
  • 4. Server-Side Technologies • SOAP (Simple Object Access Protocol) – XML-based middleware to exchange data between servers and clients – Can operate over any transport protocol such as HTTP, SMTP, TCP, UDP, or JMS (link Ch 6a) – Examples on next slides from link Ch 6l
  • 5.
  • 6.
  • 7. JSON v. XML • From link Ch 6n JSON XML
  • 8. Server-Side Technologies • ReST (Representational State Transfer) – Uses HTTP to transfer data between machines – The World Wide Web can be viewed as a REST- based architecture (link Ch 6c) – Send data with PUT, get it with GET (link Ch 6n)
  • 9. Server-Side Technologies • JSON (JavaScript Object Notation) – Lightweight data-interchange format – An alternative to XML (link Ch 6b) – Example from link Ch 6m
  • 10. Server-Side Vulnerabilities • Expose far more data than client-side vulnerabilities • Larger attack surface than client – Server runs services, some for clients, others for business logic, internal interfaces, databases, partner interfaces, etc.
  • 11. General Web Service Security Guidelines: OWASP Top Ten Mobile Risks 2016 Link Ch 6k
  • 12.
  • 13.
  • 15. Security Audit of XML-Based Web Service • Identify web service endpoints – By examining source code of client – Or examining Web traffic while client runs • Craft legitimate web service requests – For all endpoints and operations • Vulnerability Discovery – By altering structure of contents of XML documents sent to the web service endpoints
  • 16. Web Services Description Language (WSDL) • An XML-based interface description language – Used to describe functionality offered by a Web service – Image from Wikipedia (link Ch 6f)
  • 17. SoapUI • SoapUI can build a set of base test cases given a URL to an identified WDSL – Link Ch 6g
  • 18. XML Injection Example • Client sends <?xml version="1.0"?> <ProductRequest> <Id>584654</Id> </ProductRequest> • Sever replies, echoing Id from client <?xml version="1.0"?> <ProductResponse> <Id>584654</Id> <Price>199.99</Price> </ProductResponse>
  • 19. XML Injection Example • Client sends an Id of 584654</Id><Price>0.99</Price> </ProductResponse> <ProductResponse><Id>123 • Sever reply becomes <?xml version="1.0"?> <ProductResponse> <Id>584654</Id><Price>0.99</Price> </ProductResponse> <ProductResponse><Id>123 </Id> <Price>199.99</Price> </ProductResponse>
  • 20. Effect of XML Injection • Depends on how server handles a strange response like that • Most would accept the first XML portion with the modified price
  • 21. XML Injection Countermeasures • Input validation – Best done with whitelisting (allowing only known-good characters) • Output encoding – Change "<" to "&lt;" • Use encoding functions from a trusted source, such as OWASP
  • 22. XML Entity Expansion • A Denial-of-Service (DoS) attack using XML entities that expand greatly at process time • The example sends a 662-byte request that expands to 20 MB at the server • Enough of these requests can stop a server by RAM exhaustion
  • 23. XML Entity Expansion <?xml version="1.0"?> <!DOCTYPE root [ <ENTITY a1 "I've often seen a cat without a grin..."> ]> <someElement1><someElement2>&a1;
 </someElement2></someElement1> Expands to <?xml version="1.0"?> <someElement1><someElement2> I've often seen a cat without a grin...</ someElement2></someElement1>
  • 24. XML Entity Expansion Example POST /SomeWebServiceEndpoint HTTP/1.1 Host: www.example.com Content-Length: 662 <?xml version="1.0"?> <!DOCTYPE root [ <ENTITY a1 "I've often seen a cat without a grin..."> <ENTITY a2 "&a1;&a1;"><ENTITY a3 "&a2;&a2;"> <ENTITY a4 "&a3;&a3;"><ENTITY a5 "&a4;&a4;"> ... <ENTITY a20 "&a19;&a19;"> ]> <someElement1><someElement2>&a20;</someElement2></ someElement1>
  • 25. XML Entity Expansion Countermeasures • Disable Document Type Definitions (DTDs) in the XML parser • Set a limit on the depth of entity expansions in the parser • Note: phones have XML parsers too, and can be attacked the same way – The iOS NSXMLParser parser is protected – But not Android's SAXParser
  • 26. XML Entity Reference • Abuse XML entities to acquire the contents of files on the Web server • The example on the next page defines an external entity reference "fileContents" that points to the hosts file on Windows and uses it
  • 27. XML Entity Reference Example POST /SomeWebServiceEndpoint HTTP/1.1 Host: www.example.com Content-Length: 196 <?xml version="1.0"?> <!DOCTYPE fileDocType = [ <ENTITY fileContents SYSTEM "C:Windows System32driversetchosts"> ]> <someElement1><someElement2>&fileContents;</ someElement2></someElement1>
  • 28. XML Entity Reference • If the XML parser supports DTDs with external entities – Many parsers do by default – The parser will fetch the host file and may display the file in the XML response to the attacker – It's limited only by file permissions – If the Web service runs as root, it can read any file
  • 29. XML Entity Reference • Can be used for DoS by – Requesting a special device file, or – Forcing the parser to make many HTTP requests to remote resources, exhausting the network connection pool
  • 30. XML Entity Reference Countermeasures • Disable DTDs altogether if you don't need them • Allow DTDs that contain general entities, but – Prevent the processing of external entities • Set up an EntityResolver object to limit access to a whitelist of resources
  • 31. XML Entity Reference • Can attack phones too – Android is vulnerable and the same countermeasures apply – The iOS NSXMLParser class does not handle external entities by default, but a developer can enable this dangerous functionality
  • 33. Authentication Issues • Web apps typically authenticate with passwords – So do mobile apps • Users don't want to type in the password every time they use an app – Storing user's credentials in plaintext is unwise
  • 34. Credential Storage Options • Secure Element (SE) – A special tamper-resistant hardware component – Not present in all phones, although some have one for NFC payment (link Ch 6h) • Authorization Framework – Such as OAuth – First authenticates a user with a password – Creates a token to be stored on the phone – Less valuable than a password to an attacker
  • 35. Recommendations • Token can be made less dangerous – Set reasonable expiration dates – Restrict token's scope – Revoke tokens that are known to be compromised • For financial apps – Don't store any token at all on client-side – Force the user to authenticate each time the app is used
  • 36. OAuth 2 
 Open Authorization • Popular – Used by Google, Facebook, Yahoo!, LinkedIn, and PayPal • Allows one app to access protected resources in another app without knowing the user's credentials – Like Microsoft's Federated Identity Management
  • 37. Main Actors in OAuth 2 • Resource owner – End-user with access to credentials, who owns the protected resources • Resource server – Server hosting protected resources – Allows client access to the protected resources when provided a valid access token
  • 38. Main Actors in OAuth 2 • Client – App seeking to access protected resources – Typically a mobile app or web app • Authorization Server – Server that provides the client application with access tokens • After the resource owner has provided valid credentials
  • 39. OAuth 2 has Four Grant Types • Client Credentials Grant • Resource Owner Password Credentials Grant • Authorization Code Grant • Implicit Grant • "User Agent" in these diagrams is either your mobile browser or a WebView component embedded within the application
  • 40. OAuth Client Credentials Grant • Stores password on client • Should only be used for confidential clients – That can maintain the confidentiality of their credentials • Not usually appropriate for mobile devices because of device theft
  • 41. OAuth Client Credentials Grant • OK if mobile app has access to a Secure Element (SE) – But most mobile apps cannot interface with a SE • This grant type should be avoided – Unless app takes additional steps to protect authentication info – Such as forcing user to enter a complex password every time the app launches – Password used to encrypt/decrypt authentication info
  • 42. OAuth Resource Owner Password Credentials Grant Type • App is trusted with credentials, but need not save them • It can save the token instead
  • 43. OAuth Resource Owner Password Credentials Grant Type • OK if – Client app is trusted not to leak credentials to a third party – Same entity controls authorization server, resource server, and client app • Better than storing credentials in plaintext on the mobile device and submitting them in every HTTP request
  • 45. OAuth Authorization Code Grant Type • 1. Client directs user-agent (browser or WebView component) to authorization endpoint • Request includes – Client identifier – Requested scope – Local state – Redirection URI
  • 46. Using Mobile WebView to Steal Credentials • In theory, client app cannot access resource owner's credentials – Because resource owner types credentials on the authorization server's web page – Via user-agent, typically a browser • If a mobile app uses a WebView component instead of an external mobile browser – Client app can steal credentials with malicious JavaScript
  • 47. URL Redirection Attacks • The URI in steps 1 and 4 could be malicious, sending the client to a dangerous website – This could phish users, or steal tokens • URIs should be validated, and enforced to be equal in steps 1 and 4
  • 49. https://samsclass.info/128/128_S15.shtml#projects • The "#projects" is a fragment • Not sent to server in HTTP request – Used only by the browser to display the specified potion of the page – Link Ch 6i
  • 50. OAuth Implicit Grant Type • Token not sent to server in step 4 • In step 5, server sends JavaScript to get the token • Intermediate servers cannot see data stored in the fragment • Fragment does not appear in an unencrypted form in client or web server logs – Limits some information leakage vulnerabilities
  • 52. Lack of TLS Enforcement • OAuth does not support message-level confidentiality or integrity • Must use TLS to prevent sniffing of – Authorization tokens – Refresh tokens – Access tokens – Resource owner credentials
  • 53. Cross-Site Request Forgery (CSRF) • Attacker can steal a token by tricking the user into visiting a malicious URL like <img src="http://www.example.com/ oauth_endpoint?code=attacker_code"> • Will steal token • Tokens can be re-used, unless optional "state" parameter is enabled in OAuth 2
  • 54. Improper Storage of Sensitive Data • Server-side has many tokens and credentials • Must be secured against attack with cryptographic controls
  • 55. Overly Scoped Access Tokens • Scope: level of access a token grants • Token may enable – Sending social networking messages on your behalf, or – Merely viewing portions of your social messaging profile • Follow principle of least privilege
  • 56. Lack of Token Expiration • Tokens that don't expire and are overly scoped are almost as good as stealing credentials – Sometimes even better – A password reset may not cause old tokens to expire