SlideShare a Scribd company logo
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
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
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
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
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

PDF
CNIT 128 Ch 6: Mobile services and mobile Web (part 2: SAML to end)
PDF
CNIT 128: 9: Mobile payments
PDF
CNIT 128 8: Mobile development security
PDF
CNIT 128 7: Mobile Device Management
PPT
Mobile code mining for discovery and exploits nullcongoa2013
PPT
Android attacks
PPT
Automation In Android & iOS Application Review
PDF
Mobile application security – effective methodology, efficient testing! hem...
CNIT 128 Ch 6: Mobile services and mobile Web (part 2: SAML to end)
CNIT 128: 9: Mobile payments
CNIT 128 8: Mobile development security
CNIT 128 7: Mobile Device Management
Mobile code mining for discovery and exploits nullcongoa2013
Android attacks
Automation In Android & iOS Application Review
Mobile application security – effective methodology, efficient testing! hem...

What's hot (20)

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

Viewers also liked (20)

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

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

PDF
Petr Dvořák: Mobilní webové služby pohledem iPhone developera
PDF
- Webexpo 2010
PDF
Understanding Identity in the World of Web APIs – Ronnie Mitra, API Architec...
PDF
JDD2015: Security in the era of modern applications and services - Bolesław D...
PDF
Implementing Microservices Security Patterns & Protocols with Spring
PPTX
OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...
PPTX
Api security
PPT
Open Id, O Auth And Webservices
PDF
Api security with OAuth
PDF
Analyzing OAuth
PDF
OAuth and OEmbed
PPTX
OAuth
PPT
Web Services Presentation - Introduction, Vulnerabilities, & Countermeasures
PPTX
API Management and Mobile App Enablement
PPTX
Saas webinar-dec6-01
PDF
PDF
API Security Best Practices & Guidelines
PPTX
Security Avalanche
PPTX
Enterprise Access Control Patterns for REST and Web APIs Gluecon 2011, Franco...
PPTX
Oauth2 and OWSM OAuth2 support
Petr Dvořák: Mobilní webové služby pohledem iPhone developera
- Webexpo 2010
Understanding Identity in the World of Web APIs – Ronnie Mitra, API Architec...
JDD2015: Security in the era of modern applications and services - Bolesław D...
Implementing Microservices Security Patterns & Protocols with Spring
OAuth 2.0 and Mobile Devices: Is that a token in your phone in your pocket or...
Api security
Open Id, O Auth And Webservices
Api security with OAuth
Analyzing OAuth
OAuth and OEmbed
OAuth
Web Services Presentation - Introduction, Vulnerabilities, & Countermeasures
API Management and Mobile App Enablement
Saas webinar-dec6-01
API Security Best Practices & Guidelines
Security Avalanche
Enterprise Access Control Patterns for REST and Web APIs Gluecon 2011, Franco...
Oauth2 and OWSM OAuth2 support

More from Sam Bowne (20)

PDF
Introduction to the Class & CISSP Certification
PDF
Cyberwar
PDF
3: DNS vulnerabilities
PDF
8. Software Development Security
PDF
4 Mapping the Application
PDF
3. Attacking iOS Applications (Part 2)
PDF
12 Elliptic Curves
PDF
11. Diffie-Hellman
PDF
2a Analyzing iOS Apps Part 1
PDF
9 Writing Secure Android Applications
PDF
12 Investigating Windows Systems (Part 2 of 3)
PDF
10 RSA
PDF
12 Investigating Windows Systems (Part 1 of 3
PDF
9. Hard Problems
PDF
8 Android Implementation Issues (Part 1)
PDF
11 Analysis Methodology
PDF
8. Authenticated Encryption
PDF
7. Attacking Android Applications (Part 2)
PDF
7. Attacking Android Applications (Part 1)
PDF
5. Stream Ciphers
Introduction to the Class & CISSP Certification
Cyberwar
3: DNS vulnerabilities
8. Software Development Security
4 Mapping the Application
3. Attacking iOS Applications (Part 2)
12 Elliptic Curves
11. Diffie-Hellman
2a Analyzing iOS Apps Part 1
9 Writing Secure Android Applications
12 Investigating Windows Systems (Part 2 of 3)
10 RSA
12 Investigating Windows Systems (Part 1 of 3
9. Hard Problems
8 Android Implementation Issues (Part 1)
11 Analysis Methodology
8. Authenticated Encryption
7. Attacking Android Applications (Part 2)
7. Attacking Android Applications (Part 1)
5. Stream Ciphers

Recently uploaded (20)

PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Basic Mud Logging Guide for educational purpose
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Cell Structure & Organelles in detailed.
PDF
Classroom Observation Tools for Teachers
PDF
Complications of Minimal Access Surgery at WLH
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Insiders guide to clinical Medicine.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Pre independence Education in Inndia.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Institutional Correction lecture only . . .
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
RMMM.pdf make it easy to upload and study
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Basic Mud Logging Guide for educational purpose
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Cell Structure & Organelles in detailed.
Classroom Observation Tools for Teachers
Complications of Minimal Access Surgery at WLH
TR - Agricultural Crops Production NC III.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
Sports Quiz easy sports quiz sports quiz
Insiders guide to clinical Medicine.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
VCE English Exam - Section C Student Revision Booklet
Pre independence Education in Inndia.pdf
GDM (1) (1).pptx small presentation for students
Institutional Correction lecture only . . .
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Final Presentation General Medicine 03-08-2024.pptx
RMMM.pdf make it easy to upload and study

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
  • 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
  • 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