SlideShare a Scribd company logo
@spoole167
Anatomy of Java
Vulnerabilities
Steve Poole
15th March 2018
@spoole167
About me
Steve Poole
IBM Lead Engineer / Developer advocate
Making Java Real Since Version 0.9
Open Source Advocate
DevOps Practitioner (whatever that means!)
Driving Change
@spoole167
This talk is about Java Vulnerabilities
@spoole167
How the industry manages vulnerabilities
And what are attack vectors
@spoole167
Scary things and
why you should care
@spoole167
And several code examples
And what you should do next
@spoole167
So what is a Vulnerability?
@spoole167
Consider this two character change
@spoole167
• Fixes a bug in java.math.Double.parseDouble()
• The bug causes a infinite hang when parsing an obscure value:
• 2.2250738585072012e-308
• First noticed and reported in 2001
• Sat in a public bug database for 10 years
• Received very little attention
Interesting corner case, but not really significant…
@spoole167
@spoole167
Not a corner case after all
• If an attacker can make a server parse the bad value => DoS
• If code parses a Double from untrusted String data, it’s vulnerable
• Nearly every Java-based web service was affected
• Example:
• Find a HTTP header which is a double
• Send HTTP requests with the header set to the bad value
• Server’s worker threads are quickly tied up in infinite loops
• Server cannot process any requests => DoS
@spoole167
@spoole167
http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
Large cost to everyone to produce and apply patches
So many servers were brought to their knees ‘just for kicks’
Trivial to exploit
Curious
people
everywhere
Huge impact
Rediscovered in 2011:
“A vulnerability is a bug which can be exploited by an attacker”
@spoole167
@spoole167
Exploits are many and various
• Exploits can attack your availability
• Bringing your system down by making it crash
• Making your system unresponsive though excessive memory / CPU / network usage
• Exploits can reduce Integrity
• Modification of application data
• Arbitrary code execution
• Exploits can breech confidentiality
• Privilege elevation
• Exposure of sensitive information
• Exploits can use your CPU to mine bitcoin – or attack some one else..
@spoole167
Why should you care?
@spoole167https://www.flickr.com/photos/koolmann/
Cybercrime realities
https://www.flickr.com/photos/koolmann/
@spoole167
@spoole167
https://www.flickr.com/photos/stignygaard/
Do you think cybercriminals are lone hackers?
https://www.flickr.com/photos/bk1bennett/
Do you think cybercrime is as obvious?
Dear Winner,
This is to inform you that you have been selected for a prize of a brand
new 2016 Model BMW Hydrogen 7 Series Car, a Check of $500,000.00
USD and an Apple laptop from the international balloting programs
held on the 27th, section of the 2016 annual award promo in the
UNITED STATE OF AMERICA.
Think you’re too smart to be suckered?
@spoole167
@spoole167
In 2016 Cybercrime was
estimated to be worth
450 Billion Dollars
@spoole167
Organized Cybercrime is the most profitable type of crime
In 2016 The illicit drug trade
was estimated to be worth
435 Billion Dollars
@spoole167
Organized Cybercrime is the most profitable type of crime
• Guess which one has the least risk to the criminal ?
• Guess which is growing the fastest ?
• Guess which one is the hardest to prosecute ?
• Guess which one is predicted to reach 2100 Billion Dollars by 2019?
• Guess which one is predicted to reach 6000 Billion Dollars by 2021?
@spoole167
@spoole167
0
1000
2000
3000
4000
5000
6000
2013 2014 2015 2016 2017 2018 2019 2020 2021
Cybercrime Drug trade
@spoole167
That’s about $750 for every
person on the planet
Or 13% of the worlds GNP
@spoole167
Another vulnerability
@spoole167
I have this directory…
“/Users/spoole/foo bar”  with a space in the name
I want to refer to it in a URL….
"file:///Users/spoole/foo%20bar"
URL u=new URL("file:///Users/spoole/foo%20bar");
File f=new File(u.getPath());
System.out.println("path="+f.getAbsolutePath());
System.out.println("exists="+f.exists());
path=/Users/spoole/foo%20bar
exists=false
URL u=new URL("file:///Users/spoole/foo%20bar");
File f=new File(u.getPath());
System.out.println("path="+f.getAbsolutePath());
System.out.println("exists="+f.exists());
@spoole167
Oops – forgot to decode it
URL u=new URL("file:///Users/spoole/foo%20bar");
URI uri = u.toURI();
File f=new File(uri.getPath());
System.out.println("path="+f.getAbsolutePath());
System.out.println("exists="+f.exists());
URL u=new URL("file:///Users/spoole/foo%20bar");
URI uri = u.toURI();
File f=new File(uri.getPath());
System.out.println("path="+f.getAbsolutePath());
System.out.println("exists="+f.exists());
path=/Users/spoole/foo bar
exists=true
@spoole167
What would happen if someone had created a
directory called
”/Users/spoole/foo%20bar” ?
@spoole167
What would happen if someone had created a
directory called
”/Users/spoole/foo%20bar” ?
path=/Users/spoole/foo%20bar
exists=true
@spoole167
Not a big deal?
@spoole167
On Windows anyone can create a top level directory
md “C:foo%20bar”
@spoole167
Still not a big deal?
@spoole167
What happens if your extensions path has an entry like
“C:/Program%20Files/optional-product/extensions”
And you didn’t have the product installed.
You might never notice
@spoole167
Suppose the JVM didn’t decode the entry when
searching for dll’s etc
And suppose someone created a directory that matched
“C:/Program%20Files/optional-product/extensions”
Someone might be able to get your application to load
sinister dlls
Because of 1 line of missing code:
URI uri = u.toURI();
@spoole167
Not quite a true story.
But a similar vulnerability
has been fixed in the JVM
https://www.flickr.com/photos/koolmann/
@spoole167
@spoole167
Vulnerabilities are almost always simple
there are no smoking guns
Exploits are chaining together vulnerabilities
https://www.flickr.com/photos/84744710@N06/
@spoole167
Developers are exploited too
• Why ?
• We know the inside story
• We write the code
• We have elevated privileges
• We are over trusting
• We use other peoples code and tools without inspection
• we are ignorant of security matters
The bad guys prey on the weak, vulnerable and ignorant
Don’t agree?
The bad guys prey on the weak, vulnerable and ignorant:
That’s us
@spoole167
Ever googled for:
“very trusting trust manager”
“Getting Java to accept all certs over HTTPS”
“How to Trust Any SSL Certificate”
“Disable Certificate Validation in Java”
@spoole167
TrustManager[] trustAllCerts = new TrustManager[]{
new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(
X509Certificate[] certs, String authType) {
}
public void checkServerTrusted(
X509Certificate[] certs, String authType) {
}
public boolean isClientTrusted( X509Certificate[] cert) {
return true;
}
public boolean isServerTrusted( X509Certificate[] cert) {
return true;
}
}}
Ever written
something
like this?
@spoole167
@spoole167
We’ve all done something like that
@spoole167
We’ve all done something like that
We do it all the time
@spoole167
We’ve all done something like that
We do it all the time
The whole world does it
How bad can it be?
@spoole167
We’ve all done something like that
We do it all the time
The whole world does it
Github search “implements TrustManager” ….
@spoole167
We’ve found 103492 code results
AlwaysValidTrustManager
TrustAllServersWrappingTrustManager
A very friendly, accepting trust
manager factory. Allows anything
through. all kind of certificates are
accepted and trusted.
A very trusting trust manager that
accepts anything
// Install the all-trusting trust
manager
OverTrustingTrustProvider
AllTrustingSecurityManagerPlugin.java
AcceptingTrustManagerFactory.java
AllTrustingCertHttpRequester.java
We’ve all done something like that
Sometimes it even a ‘feature’
@spoole167
“A vulnerability is a bug which can be exploited by an attacker”
@spoole167
“A vulnerability is a bug which can be exploited by an attacker”
“A vulnerability is also a feature which can be exploited by an
attacker”
@spoole167
@spoole167
Vulnerabilities • Bugs and design flaws in your software
and the software you use.
• Everyone has them.
• Researchers are looking for them all the
time.
•So are the bad guys
https://www.flickr.com/photos/electronicfrontierfoundation/
@spoole167
The process of managing
vulnerabilities
@spoole167
“Common Vulnerabilities & Exposures”
• https://cve.mitre.org
• The Standard place find details about ‘CVEs’
• International cyber security community effort
• Common naming convention and unique references.
• Allows you to know when a problem is resolved in something you are
using
@spoole167
‘CVEs’ https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=*
keywords=java serialization “12”
keyword=java “1692”
@spoole167
CVE-2016-2510 BeanShell (bsh) before 2.0b6, when included on the
classpath by an application that uses Java serialization
or XStream, allows remote attackers to execute
arbitrary code via crafted serialized data, related to
XThis.Handler.
CVE-2016-0686 Unspecified vulnerability in Oracle Java SE 6u113,
7u99, and 8u77 and Java SE Embedded 8u77 allows
remote attackers to affect confidentiality, integrity, and
availability via vectors related to Serialization.
CVE-2015-4805 Unspecified vulnerability in Oracle Java SE 6u101,
7u85, and 8u60, and Java SE Embedded 8u51, allows
remote attackers to affect confidentiality, integrity, and
availability via unknown vectors related to Serialization.
keywords=java serialization (first three as of May 11th)
@spoole167
CVE-2016-0686
“Unspecified vulnerability in Oracle Java SE 6u113, 7u99, and 8u77
and Java SE Embedded 8u77 allows remote attackers to affect
confidentiality, integrity, and availability via vectors related to
Serialization.”
That’s all you will find about this fix
Talking about the details of a fix or flaw in public is just like
tweeting your credit card # and pin
@spoole167
So we don’t. We give
you information about
the impact instead.
@spoole167
Common Vulnerability Scoring System
• Base CVSS combines several aspects into a single score
• Attack vector and complexity – local, remote etc.
• Impact – integrity, confidentiality etc.
• Privileges required?
• Represented as a base score and a CVSS vector
• CVSS 9.6 (CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H)
• Additional temporal CVSS considers aspects that may change over time
• Availability of an exploit
• Availability of a fix
• IBM X-Force
• IBM’s security research organization
• Provides base and temporal CVSS scores for all published CVEs
@spoole167
Example CVSS vector
• CVSS Vector: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
• Attack Vector: N (network)
• Attack Complexity: L (low)
• Privileges Required: N (none)
• User Interaction: R (required)
• Scope: C (changed)
• Confidentiality impact: H (high)
• Integrity impact: H (high)
• Availability impact: H (high)
• Using the CVSS v3.0 calculator
• Low = 0.0-3.9. Medium= 4.0-6.9 High= 7.0-8.9 Critical = 9.0-10.0
Note – assessments are based on
the assumption that everyone
behaves “sensibly”
If you give everyone root access to a
machine your mileage will differ
@spoole167
How are vulnerabilities communicated?
• Oracle
• CPU Advisory
• Risk Matrix
• IBM
• Java and Product Security Bulletins
• All IBM Security Bulletins are communicated on the PSIRT blog
• Can subscribe to Bulletins for specific products using My Notifications
• Java SDK Developer Centre
@spoole167
What if I discover a vulnerability?
• Report it responsibly
• Oracle or OpenJDK component (e.g. HotSpot VM, AWT, Net, Plugin)
• Report it to Oracle
• IBM component (e.g. J9VM, IBM ORB, IBM JCE/JSSE)
• Report it to IBM
• Dont
• shout about it!
• send a mail to an OpenJDK mailing list
• post the details on a forum/blog
• sell it to the bad guys
• worry about apparent lack of severity – always report it
@spoole167
How are Java vulnerabilities addressed?
• Ideally as quickly as possible, but it depends on
• CVSS
• Impending disclosure
• Resources
• In general:
• Issues categorised internally
• Fixes targeted for a future scheduled regular security release
• Fixes may be deferred or brought forward if things change
• Extremely urgent issues may trigger an out of cycle release
@spoole167
Vulnerability applicability
• High CVSS is irrelevant if the issue does not apply to you
• Java plugin flaws don’t apply to appserver deployments
• JAXP issues aren’t relevant if you don’t parse untrusted XML data
• Use the Oracle CPU Risk Matrix
• Base CVSS scores and vectors
• Consider the attack vector for the vulnerability
• Oracle Applicability notes
• IBM customers: if in doubt, contact IBM Support
• IBM Products have detailed applicability information
If you don’t know what your code does: you don’t know if
you’re vulnerable
If you don’t know what your dependencies do: you don’t
know if you’re vulnerable
BTW: You don’t know all your dependencies
@spoole167
@spoole167
Attack Vectors
@spoole167
Attack Vectors – Untrusted Code
• Code is able to bypass or escape the SecurityManager
• Affects any application which runs untrusted code under a security manager
• Some server applications do this!
• Flaw can be in any component on the classpath
• Partial bypass
• Exposure of sensitive information – e.g. system property values, heap contents
• Arbitrary network connections
• Full bypass
• Arbitrary code execution and access to operating system
• Many server deployments run as root/admin
SecurityManager offers no
protection against CPU DoS
attacks or Infinite loops
@spoole167
Attack Vectors – Plugin / Web Start
• True “client-side” issues
• Affect JREs installed as the system default
• Exploits can be triggered remotely, usually via a browser
• Malicious applet or JNLP file
• May involve platform or browser specific components
• Installer/updater
• Windows Registry entries
• Browser callbacks
• OS Shell behaviour (command line parsing)
• Inappropriate privilege elevation
• Applets and browser plugins are deprecated in JDK 9
@spoole167
Attack Vectors – Untrusted Data
• A Java SE API mishandles a specific type of data
• XML, JPG, URLs, Fonts, JARs, Strings
• Issues tend to be more severe when the API is implemented natively
• Maliciously-crafted data can exploit the bug
• DoS – CPU/memory usage, crash
• Exposure of sensitive data – arbitrary memory access
• Arbitrary code execution – code injection, disabling of SecurityManager
• Affects any application which handles the specific data type from untrusted sources
• Examples
• A server application which allows users to upload images
• A server application which accepts SOAP requests
• A server application with an XML-based REST API
JPEG 2000 image exploit on the OpenJPEG openjp2 version 2.1.1
A specially crafted image caused a buffer overflow in the JPEG code and overwrites
memory in such a way to allow allow arbitrary code execution
https://www.flickr.com/photos/mediumpanda/
https://www.flickr.com/photos/jasonahowie/
Content-Type: %{(#_='multipart/form-data').
(#_memberAccess=@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS)
.
(@java.lang.Runtime@getRuntime().exec('curl
localhost:8000'))}
https://dzone.com/articles/will-it-pwn-cve-2017-5638-remote-code-
execution-in
Apache Struts
OGNL
If type contains “multipart/form-data’
try to parse it as form data
This fails and as part of the building an error message the
OGNL is evaluated…
@spoole167
Attack Vectors – Cryptographic Issues
• Protocol flaws
• Many implementations affected (Java, GSKit, OpenSSL, Browsers)
• BEAST, POODLE, SLOTH, Logjam, Bar Mitzvah
• Implementation flaws
• Specific to Java
• No fancy names!
• Variable Impact
• DoS
• Private key exposure
• Decryption of encrypted data
@spoole167
Attack Vectors – Local
• Can only be exploited by a local user
• Exposure of sensitive data
• E.g. temp files with inappropriate permissions
• Code injection
• E.g. native code loaded from an unexpected location due to bad LIBPATH
• May lead to a remotely exploitable vulnerability
• E.g. local user plants malicious code which can be executed remotely
• Usually low CVSS due to the access required
You don’t think you’re vulnerable to local attacks?
@spoole167
@spoole167
https://en.wikipedia.org/w/index.php?curid=54032765
@spoole167
Wanna Cry?
Steve Poole
@spoole167
@spoole167
Wanna Cry
• Friday, 12 May 2017
• Has infected 250K computers in 150+ countries
• It encrypts data and holds it for ransom
• The computer owner has a limited time to pay (in bitcoin) about $500
• bitcoin owners received about 50 bitcoins ~= $85K ($3/infected machine)
UK: National Health Service impacted:
India: All ATMs closed
Nissan: Halted all production
Renault: Halted some production
https://en.wikipedia.org/wiki/WannaCry_ransomware_attack
Your Java server is not as secure as you think
@spoole167
@spoole167
More Examples
@spoole167
Deserialization Vulnerabilities
• Abuse of the readObject() method of one or more classes
• readObject() is invoked before the data is deserialized
• Attackers use “gadget chains” in classes on the server’s classpath
• Usually a complex set of nested objects which result in a Runtime.exec()
• Costly to fix – servers may have multiple copies of the vulnerable code
• Applications are vulnerable if they:
• Have the vulnerable code on their classpath
• Accept untrusted serialized data (this is much more common that you might think!)
• Known for years, but came to prominence with problem in Apache Commons remote code
execution
• Many products affected – e.g. WebLogic, WebSphere, Tomcat, JBoss, Jenkins
• Serialization filtering was added to the Java runtime in January 2017
• JEP 290 – Filter Incoming Serialization Data
• Allows classes to be whitelisted
@spoole167
Example vulnerability – JDWP
• JDWP = Java Debug Wire Protocol
• Disabled by default – enabled with a command line option
• JVM internals can be observed and modified remotely
• No authentication required
• Classes can be changed, code can be injected
• Well-known online banking website
• JDWP enabled on public facing servers
• Presumably JDWP was enabled in development/test…
• Found by a researcher after a simple port scan
• Bug bounty => ££££
• Simple fix – disable JDWP!
@spoole167
More Code
public class HelpfulClassLoader {
private Properties p=new Properties(System.getProperties());
public HelpfulClassLoader() {
p.put("default", ”foo.StringHandler");
p.put("foo", "com.ibm.runtimes.demo.foo");
}
public Class loadClassHelpfully(String handler) throws ClassNotFoundException {
String className=p.getProperty(handler);
try {
return Class.forName(className);
} catch (Exception e) {
throw new ClassNotFoundException("could not create class for handler” +handler+" with
value "+className);
}}}
Now I can do –Dfoo=bar
on the command line
(That’s helpful)
HelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully("default");
System.out.println("class for default="+c);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.foo
HelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully("default");
System.out.println("class for default="+c);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
class for default=class foo.StringHandler
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.foo
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully(”foo");
System.out.println("class for foo="+c);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.foo
java.lang.ClassNotFoundException: could not create class for handler foo with value com.ibm.runtimes.demo.foo
at
com.ibm.runtimes.demo.vulnerabilities.samples.HelpfulClassLoader.loadClassHelpfully(HelpfulClassLoader.java:23)
at com.ibm.runtimes.demo.vulnerabilities.samples.HelpfulClassLoader.main(HelpfulClassLoader.java:40)
HelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully(”foo");
System.out.println("class for foo="+c);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully(”java.ext.dirs");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
handler Class name
default foo.StringHandler
foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader();
try {
Class c=h.loadClassHelpfully(”java.ext.dirs");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
java.lang.ClassNotFoundException: could not create class for handler java.ext.dirs with value
/Users/spoole/Library/Java/Extensions:
/Library/Java/JavaVirtualMachines/jdk1.8.0_102.jdk/Contents/Home/jre/lib/ext:
/Library/Java/Extensions:/Network/Library/Java/Extensions:
/System/Library/Java/Extensions:
/usr/lib/java
@spoole167
Something like this helpful code
Coupled with the missing URL decoder check and the
remote execution code inside Wanna Cry
And your Java application is compromised.
@spoole167
“A vulnerability is a bug which can be exploited by an
attacker”
“A vulnerability is also a feature which can be exploited
by an attacker”
“A vulnerability is a bug which can be exploited by an
attacker”
“A vulnerability is also a feature which can be exploited
by an attacker”
“A vulnerability is also a developer aid which can be
exploited by an attacker”
@spoole167
@spoole167
Helping you to be more informed
@spoole167
cwe.mitre.org
Coding
Practises
@spoole167
@spoole167
1. Input Validation and Representation
2. API Abuse
3. Security Features
4. Time and State
5. Error Handling
6. Code Quality
7. Encapsulation
* Environment
The Seven Pernicious Kingdoms
@spoole167
Secure
Coding
Guidelines
for
Java SE
http://www.oracle.com/technetwork/java/seccodeguide-139067.html
Analysis
Tools
find-sec-bugs.github.io
Analysis
Tools
Secure by Design - Security Design Principles for the
Rest of Us
https://www.slideshare.net/EoinWoods1/secure-by-design-security-design-principles-
for-the-rest-of-us
Online
Guides
Online
Guides
https://www.owasp.org
@spoole167
Summary
@spoole167
Reducing Risk
• Keep all Java instances up to date
• Use vulnerability scanning tools
• Various around. From source code level to binary signature analysis.
• Don’t write custom security managers
• Don’t write custom crypto code
• Don’t write custom XML parsers
• Use modern encryption protocols and algorithms
• Be very careful with:
• Untrusted data , Deserialization (including RMI and JMX)
• JDWP, Runtime.exec()
• Native code
If you are receiving
data of any sort:
validate it.
@spoole167
@spoole167
Keeping safe: it’s in your hands
Keep current. Every vulnerability fix you apply is one less way in.
Compartmentalize. Separate data, code, access controls etc.
Just like bulkhead doors in a ship: ensure one compromise doesn’t sink your boat.
Design for intrusion. Review you levels of ‘helpfulness’ and flexibility
Learn about Penetration Testing
Learn about security tools & services - IBM App Scan, lgtm.com
Learn about secure coding - https://cwe.mitre.org
http://www.oracle.com/technetwork/java/seccodeguide-139067.html ,
Understand that making your development life easier makes the hackers job easier
@spoole167
There are bad guys out there and your
application is at risk
Don’t make it worse by ignoring the problem
https://www.flickr.com/photos/koolmann/
@spoole167
London 9th – 11th May, 2018
“Java application security the hard
way - a workshop for the serious
developer”
@spoole167https://www.flickr.com/photos/koolmann/
Thank you
Any questions?
https://www.flickr.com/photos/koolmann/
@spoole167

More Related Content

PPTX
The Anatomy of Java Vulnerabilities
PPTX
(java2days) The Anatomy of Java Vulnerabilities
PDF
REST API Pentester's perspective
PDF
Smart Sheriff, Dumb Idea, the wild west of government assisted parenting
PDF
Hunting for the secrets in a cloud forest
PDF
Hacking Tutorial for Apps
PDF
What can you do about ransomware
PDF
Abraham aranguren. legal and efficient web app testing without permission
The Anatomy of Java Vulnerabilities
(java2days) The Anatomy of Java Vulnerabilities
REST API Pentester's perspective
Smart Sheriff, Dumb Idea, the wild west of government assisted parenting
Hunting for the secrets in a cloud forest
Hacking Tutorial for Apps
What can you do about ransomware
Abraham aranguren. legal and efficient web app testing without permission

What's hot (20)

PPTX
WordPress Security for Beginners
PPTX
Purple is the New Black: Modern Approaches for Application Security
PDF
Silent web app testing by example - BerlinSides 2011
PDF
DIR ISF - Email keeps getting us pwned v1.1
PDF
All your family secrets belong to us—Worrisome security issues in tracker apps
PDF
Legal and efficient web app testing without permission
PDF
Finding attacks with these 6 events
PDF
Email keeps getting us pwned v1.1
PDF
Email keeps getting us pwned v1.0
PDF
Securing Rails
PPTX
Bug bounties - cén scéal?
PDF
EDR, ETDR, Next Gen AV is all the rage, so why am I ENRAGED?
PDF
How to steal and modify data using Business Logic flaws - Insecure Direct Obj...
PDF
Deeplook into apt and how to detect and defend v1.0
PDF
PENETRATION TESTING FROM A HOT TUB TIME MACHINE
PDF
hackcon2013-Dirty Little Secrets They Didn't Teach You In Pentesting Class v2
PDF
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
PDF
Cred stealing emails bsides austin_2018 v1.0
PDF
Automating to Augment Testing
PDF
Windows IR made easier and faster v1.0
WordPress Security for Beginners
Purple is the New Black: Modern Approaches for Application Security
Silent web app testing by example - BerlinSides 2011
DIR ISF - Email keeps getting us pwned v1.1
All your family secrets belong to us—Worrisome security issues in tracker apps
Legal and efficient web app testing without permission
Finding attacks with these 6 events
Email keeps getting us pwned v1.1
Email keeps getting us pwned v1.0
Securing Rails
Bug bounties - cén scéal?
EDR, ETDR, Next Gen AV is all the rage, so why am I ENRAGED?
How to steal and modify data using Business Logic flaws - Insecure Direct Obj...
Deeplook into apt and how to detect and defend v1.0
PENETRATION TESTING FROM A HOT TUB TIME MACHINE
hackcon2013-Dirty Little Secrets They Didn't Teach You In Pentesting Class v2
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
Cred stealing emails bsides austin_2018 v1.0
Automating to Augment Testing
Windows IR made easier and faster v1.0
Ad

Similar to Anatomy of Java Vulnerabilities - NLJug 2018 (20)

PPTX
Geecon 2017 Anatomy of Java Vulnerabilities
PPT
The Anatomy of Java Vulnerabilities (Devoxx UK 2017)
PPTX
Cybercrime and the developer 2021 style
PPTX
Java application security the hard way - a workshop for the serious developer
PPTX
CodeOne SF 2018 "Are you deploying and operating with security in mind?"
PPTX
Open Source Insight: CVE–2017-9805, Equifax Breach & Wacky Open Source Licenses
ODP
Are you using an opensource library? There's a good chance you are vulnerable...
PPTX
Stack-Based Buffer Overflows
PPTX
Devoxx France 2022: Game Over or Game Changing? Why Software Development May ...
PPTX
Vulnerability, exploit to metasploit
PDF
Secure JEE Architecture and Programming 101
PDF
Secrets of Google VRP by: Krzysztof Kotowicz, Google Security Team
PPTX
How to get along with HATEOAS without letting the bad guys steal your lunch?
PPTX
Open Source Insight: CVE-2017-2636 Vuln of the Week & UK National Cyber Secur...
PPTX
Cybercrime and the Developer: How to Start Defending Against the Darker Side
PDF
10 Mistakes Hackers Want You to Make
PDF
Unsafe Deserialization Attacks In Java and A New Approach To Protect The JVM ...
PPTX
Recent Trends in Cyber Security
ODP
Security in the Real World - JavaOne 2013
PPTX
Jax london2016 cybercrime-and-the-developer
Geecon 2017 Anatomy of Java Vulnerabilities
The Anatomy of Java Vulnerabilities (Devoxx UK 2017)
Cybercrime and the developer 2021 style
Java application security the hard way - a workshop for the serious developer
CodeOne SF 2018 "Are you deploying and operating with security in mind?"
Open Source Insight: CVE–2017-9805, Equifax Breach & Wacky Open Source Licenses
Are you using an opensource library? There's a good chance you are vulnerable...
Stack-Based Buffer Overflows
Devoxx France 2022: Game Over or Game Changing? Why Software Development May ...
Vulnerability, exploit to metasploit
Secure JEE Architecture and Programming 101
Secrets of Google VRP by: Krzysztof Kotowicz, Google Security Team
How to get along with HATEOAS without letting the bad guys steal your lunch?
Open Source Insight: CVE-2017-2636 Vuln of the Week & UK National Cyber Secur...
Cybercrime and the Developer: How to Start Defending Against the Darker Side
10 Mistakes Hackers Want You to Make
Unsafe Deserialization Attacks In Java and A New Approach To Protect The JVM ...
Recent Trends in Cyber Security
Security in the Real World - JavaOne 2013
Jax london2016 cybercrime-and-the-developer
Ad

More from Steve Poole (20)

PPTX
Key Takeaways for Java Developers from the State of the Software Supply Chain...
PPTX
THRIVING IN THE GEN AI ERA: NAVIGATING CHANGE IN TECH
PPTX
Maven Central++ What's happening at the core of the Java supply chain
PPTX
GIDS-2023 A New Hope for 2023? What Developers Must Learn Next
PPTX
A new hope for 2023? What developers must learn next
PPTX
Stop Security by Sleight Of Hand.pptx
PPTX
Superman or Ironman - can everyone be a 10x developer?
PPTX
The Secret Life of Maven Central
PPTX
The Secret Life of Maven Central.pptx
PPTX
Log4Shell - Armageddon or Opportunity.pptx
PPTX
DevnexusRansomeware.pptx
PPTX
Game Over or Game Changing? Why Software Development May Never be the same again
PPTX
Agile Islands 2020 - Dashboards and Culture
PPTX
LJC Speaker Clnic June 2020
PPTX
Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...
PPTX
Beyond the Pi: What’s Next for the Hacker in All of Us?
PPTX
A Modern Fairy Tale: Java Serialization
PPTX
Eclipse OpenJ9 - SpringOne 2018 Lightning talk
PPTX
SkillsMatter June 2018: Java in the 21st Century: Are You Thinking Far Enough...
PPTX
Dev Days Vilnius 2018 : Cloud Native Java with OpenJ9- Fast, Lean and definit...
Key Takeaways for Java Developers from the State of the Software Supply Chain...
THRIVING IN THE GEN AI ERA: NAVIGATING CHANGE IN TECH
Maven Central++ What's happening at the core of the Java supply chain
GIDS-2023 A New Hope for 2023? What Developers Must Learn Next
A new hope for 2023? What developers must learn next
Stop Security by Sleight Of Hand.pptx
Superman or Ironman - can everyone be a 10x developer?
The Secret Life of Maven Central
The Secret Life of Maven Central.pptx
Log4Shell - Armageddon or Opportunity.pptx
DevnexusRansomeware.pptx
Game Over or Game Changing? Why Software Development May Never be the same again
Agile Islands 2020 - Dashboards and Culture
LJC Speaker Clnic June 2020
Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...
Beyond the Pi: What’s Next for the Hacker in All of Us?
A Modern Fairy Tale: Java Serialization
Eclipse OpenJ9 - SpringOne 2018 Lightning talk
SkillsMatter June 2018: Java in the 21st Century: Are You Thinking Far Enough...
Dev Days Vilnius 2018 : Cloud Native Java with OpenJ9- Fast, Lean and definit...

Recently uploaded (20)

PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
top salesforce developer skills in 2025.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
ai tools demonstartion for schools and inter college
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
medical staffing services at VALiNTRY
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Reimagine Home Health with the Power of Agentic AI​
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
wealthsignaloriginal-com-DS-text-... (1).pdf
How to Choose the Right IT Partner for Your Business in Malaysia
top salesforce developer skills in 2025.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
VVF-Customer-Presentation2025-Ver1.9.pptx
Softaken Excel to vCard Converter Software.pdf
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
ai tools demonstartion for schools and inter college
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
How to Migrate SBCGlobal Email to Yahoo Easily
medical staffing services at VALiNTRY
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Odoo Companies in India – Driving Business Transformation.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Understanding Forklifts - TECH EHS Solution
Reimagine Home Health with the Power of Agentic AI​

Anatomy of Java Vulnerabilities - NLJug 2018

  • 2. @spoole167 About me Steve Poole IBM Lead Engineer / Developer advocate Making Java Real Since Version 0.9 Open Source Advocate DevOps Practitioner (whatever that means!) Driving Change
  • 3. @spoole167 This talk is about Java Vulnerabilities
  • 4. @spoole167 How the industry manages vulnerabilities And what are attack vectors
  • 6. @spoole167 And several code examples And what you should do next
  • 7. @spoole167 So what is a Vulnerability?
  • 8. @spoole167 Consider this two character change
  • 9. @spoole167 • Fixes a bug in java.math.Double.parseDouble() • The bug causes a infinite hang when parsing an obscure value: • 2.2250738585072012e-308 • First noticed and reported in 2001 • Sat in a public bug database for 10 years • Received very little attention Interesting corner case, but not really significant… @spoole167
  • 10. @spoole167 Not a corner case after all • If an attacker can make a server parse the bad value => DoS • If code parses a Double from untrusted String data, it’s vulnerable • Nearly every Java-based web service was affected • Example: • Find a HTTP header which is a double • Send HTTP requests with the header set to the bad value • Server’s worker threads are quickly tied up in infinite loops • Server cannot process any requests => DoS @spoole167
  • 11. @spoole167 http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/ Large cost to everyone to produce and apply patches So many servers were brought to their knees ‘just for kicks’ Trivial to exploit Curious people everywhere Huge impact Rediscovered in 2011:
  • 12. “A vulnerability is a bug which can be exploited by an attacker” @spoole167
  • 13. @spoole167 Exploits are many and various • Exploits can attack your availability • Bringing your system down by making it crash • Making your system unresponsive though excessive memory / CPU / network usage • Exploits can reduce Integrity • Modification of application data • Arbitrary code execution • Exploits can breech confidentiality • Privilege elevation • Exposure of sensitive information • Exploits can use your CPU to mine bitcoin – or attack some one else..
  • 18. Dear Winner, This is to inform you that you have been selected for a prize of a brand new 2016 Model BMW Hydrogen 7 Series Car, a Check of $500,000.00 USD and an Apple laptop from the international balloting programs held on the 27th, section of the 2016 annual award promo in the UNITED STATE OF AMERICA. Think you’re too smart to be suckered? @spoole167
  • 19. @spoole167 In 2016 Cybercrime was estimated to be worth 450 Billion Dollars @spoole167 Organized Cybercrime is the most profitable type of crime In 2016 The illicit drug trade was estimated to be worth 435 Billion Dollars
  • 20. @spoole167 Organized Cybercrime is the most profitable type of crime • Guess which one has the least risk to the criminal ? • Guess which is growing the fastest ? • Guess which one is the hardest to prosecute ? • Guess which one is predicted to reach 2100 Billion Dollars by 2019? • Guess which one is predicted to reach 6000 Billion Dollars by 2021? @spoole167
  • 21. @spoole167 0 1000 2000 3000 4000 5000 6000 2013 2014 2015 2016 2017 2018 2019 2020 2021 Cybercrime Drug trade
  • 22. @spoole167 That’s about $750 for every person on the planet Or 13% of the worlds GNP
  • 24. @spoole167 I have this directory… “/Users/spoole/foo bar”  with a space in the name I want to refer to it in a URL…. "file:///Users/spoole/foo%20bar"
  • 25. URL u=new URL("file:///Users/spoole/foo%20bar"); File f=new File(u.getPath()); System.out.println("path="+f.getAbsolutePath()); System.out.println("exists="+f.exists());
  • 26. path=/Users/spoole/foo%20bar exists=false URL u=new URL("file:///Users/spoole/foo%20bar"); File f=new File(u.getPath()); System.out.println("path="+f.getAbsolutePath()); System.out.println("exists="+f.exists());
  • 28. URL u=new URL("file:///Users/spoole/foo%20bar"); URI uri = u.toURI(); File f=new File(uri.getPath()); System.out.println("path="+f.getAbsolutePath()); System.out.println("exists="+f.exists());
  • 29. URL u=new URL("file:///Users/spoole/foo%20bar"); URI uri = u.toURI(); File f=new File(uri.getPath()); System.out.println("path="+f.getAbsolutePath()); System.out.println("exists="+f.exists()); path=/Users/spoole/foo bar exists=true
  • 30. @spoole167 What would happen if someone had created a directory called ”/Users/spoole/foo%20bar” ?
  • 31. @spoole167 What would happen if someone had created a directory called ”/Users/spoole/foo%20bar” ? path=/Users/spoole/foo%20bar exists=true
  • 33. @spoole167 On Windows anyone can create a top level directory md “C:foo%20bar”
  • 35. @spoole167 What happens if your extensions path has an entry like “C:/Program%20Files/optional-product/extensions” And you didn’t have the product installed. You might never notice
  • 36. @spoole167 Suppose the JVM didn’t decode the entry when searching for dll’s etc And suppose someone created a directory that matched “C:/Program%20Files/optional-product/extensions” Someone might be able to get your application to load sinister dlls Because of 1 line of missing code: URI uri = u.toURI();
  • 37. @spoole167 Not quite a true story. But a similar vulnerability has been fixed in the JVM https://www.flickr.com/photos/koolmann/ @spoole167
  • 38. @spoole167 Vulnerabilities are almost always simple there are no smoking guns Exploits are chaining together vulnerabilities https://www.flickr.com/photos/84744710@N06/
  • 39. @spoole167 Developers are exploited too • Why ? • We know the inside story • We write the code • We have elevated privileges • We are over trusting • We use other peoples code and tools without inspection • we are ignorant of security matters The bad guys prey on the weak, vulnerable and ignorant
  • 40. Don’t agree? The bad guys prey on the weak, vulnerable and ignorant: That’s us @spoole167
  • 41. Ever googled for: “very trusting trust manager” “Getting Java to accept all certs over HTTPS” “How to Trust Any SSL Certificate” “Disable Certificate Validation in Java” @spoole167
  • 42. TrustManager[] trustAllCerts = new TrustManager[]{ new X509TrustManager() { public X509Certificate[] getAcceptedIssuers() { return null; } public void checkClientTrusted( X509Certificate[] certs, String authType) { } public void checkServerTrusted( X509Certificate[] certs, String authType) { } public boolean isClientTrusted( X509Certificate[] cert) { return true; } public boolean isServerTrusted( X509Certificate[] cert) { return true; } }} Ever written something like this? @spoole167
  • 43. @spoole167 We’ve all done something like that
  • 44. @spoole167 We’ve all done something like that We do it all the time
  • 45. @spoole167 We’ve all done something like that We do it all the time The whole world does it How bad can it be?
  • 46. @spoole167 We’ve all done something like that We do it all the time The whole world does it Github search “implements TrustManager” ….
  • 47. @spoole167 We’ve found 103492 code results AlwaysValidTrustManager TrustAllServersWrappingTrustManager A very friendly, accepting trust manager factory. Allows anything through. all kind of certificates are accepted and trusted. A very trusting trust manager that accepts anything // Install the all-trusting trust manager OverTrustingTrustProvider AllTrustingSecurityManagerPlugin.java AcceptingTrustManagerFactory.java AllTrustingCertHttpRequester.java
  • 48. We’ve all done something like that Sometimes it even a ‘feature’ @spoole167
  • 49. “A vulnerability is a bug which can be exploited by an attacker” @spoole167
  • 50. “A vulnerability is a bug which can be exploited by an attacker” “A vulnerability is also a feature which can be exploited by an attacker” @spoole167
  • 51. @spoole167 Vulnerabilities • Bugs and design flaws in your software and the software you use. • Everyone has them. • Researchers are looking for them all the time. •So are the bad guys https://www.flickr.com/photos/electronicfrontierfoundation/
  • 52. @spoole167 The process of managing vulnerabilities
  • 53. @spoole167 “Common Vulnerabilities & Exposures” • https://cve.mitre.org • The Standard place find details about ‘CVEs’ • International cyber security community effort • Common naming convention and unique references. • Allows you to know when a problem is resolved in something you are using
  • 55. @spoole167 CVE-2016-2510 BeanShell (bsh) before 2.0b6, when included on the classpath by an application that uses Java serialization or XStream, allows remote attackers to execute arbitrary code via crafted serialized data, related to XThis.Handler. CVE-2016-0686 Unspecified vulnerability in Oracle Java SE 6u113, 7u99, and 8u77 and Java SE Embedded 8u77 allows remote attackers to affect confidentiality, integrity, and availability via vectors related to Serialization. CVE-2015-4805 Unspecified vulnerability in Oracle Java SE 6u101, 7u85, and 8u60, and Java SE Embedded 8u51, allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Serialization. keywords=java serialization (first three as of May 11th)
  • 56. @spoole167 CVE-2016-0686 “Unspecified vulnerability in Oracle Java SE 6u113, 7u99, and 8u77 and Java SE Embedded 8u77 allows remote attackers to affect confidentiality, integrity, and availability via vectors related to Serialization.” That’s all you will find about this fix
  • 57. Talking about the details of a fix or flaw in public is just like tweeting your credit card # and pin @spoole167 So we don’t. We give you information about the impact instead.
  • 58. @spoole167 Common Vulnerability Scoring System • Base CVSS combines several aspects into a single score • Attack vector and complexity – local, remote etc. • Impact – integrity, confidentiality etc. • Privileges required? • Represented as a base score and a CVSS vector • CVSS 9.6 (CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H) • Additional temporal CVSS considers aspects that may change over time • Availability of an exploit • Availability of a fix • IBM X-Force • IBM’s security research organization • Provides base and temporal CVSS scores for all published CVEs
  • 59. @spoole167 Example CVSS vector • CVSS Vector: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H • Attack Vector: N (network) • Attack Complexity: L (low) • Privileges Required: N (none) • User Interaction: R (required) • Scope: C (changed) • Confidentiality impact: H (high) • Integrity impact: H (high) • Availability impact: H (high) • Using the CVSS v3.0 calculator • Low = 0.0-3.9. Medium= 4.0-6.9 High= 7.0-8.9 Critical = 9.0-10.0 Note – assessments are based on the assumption that everyone behaves “sensibly” If you give everyone root access to a machine your mileage will differ
  • 60. @spoole167 How are vulnerabilities communicated? • Oracle • CPU Advisory • Risk Matrix • IBM • Java and Product Security Bulletins • All IBM Security Bulletins are communicated on the PSIRT blog • Can subscribe to Bulletins for specific products using My Notifications • Java SDK Developer Centre
  • 61. @spoole167 What if I discover a vulnerability? • Report it responsibly • Oracle or OpenJDK component (e.g. HotSpot VM, AWT, Net, Plugin) • Report it to Oracle • IBM component (e.g. J9VM, IBM ORB, IBM JCE/JSSE) • Report it to IBM • Dont • shout about it! • send a mail to an OpenJDK mailing list • post the details on a forum/blog • sell it to the bad guys • worry about apparent lack of severity – always report it
  • 62. @spoole167 How are Java vulnerabilities addressed? • Ideally as quickly as possible, but it depends on • CVSS • Impending disclosure • Resources • In general: • Issues categorised internally • Fixes targeted for a future scheduled regular security release • Fixes may be deferred or brought forward if things change • Extremely urgent issues may trigger an out of cycle release
  • 63. @spoole167 Vulnerability applicability • High CVSS is irrelevant if the issue does not apply to you • Java plugin flaws don’t apply to appserver deployments • JAXP issues aren’t relevant if you don’t parse untrusted XML data • Use the Oracle CPU Risk Matrix • Base CVSS scores and vectors • Consider the attack vector for the vulnerability • Oracle Applicability notes • IBM customers: if in doubt, contact IBM Support • IBM Products have detailed applicability information
  • 64. If you don’t know what your code does: you don’t know if you’re vulnerable If you don’t know what your dependencies do: you don’t know if you’re vulnerable BTW: You don’t know all your dependencies @spoole167
  • 66. @spoole167 Attack Vectors – Untrusted Code • Code is able to bypass or escape the SecurityManager • Affects any application which runs untrusted code under a security manager • Some server applications do this! • Flaw can be in any component on the classpath • Partial bypass • Exposure of sensitive information – e.g. system property values, heap contents • Arbitrary network connections • Full bypass • Arbitrary code execution and access to operating system • Many server deployments run as root/admin SecurityManager offers no protection against CPU DoS attacks or Infinite loops
  • 67. @spoole167 Attack Vectors – Plugin / Web Start • True “client-side” issues • Affect JREs installed as the system default • Exploits can be triggered remotely, usually via a browser • Malicious applet or JNLP file • May involve platform or browser specific components • Installer/updater • Windows Registry entries • Browser callbacks • OS Shell behaviour (command line parsing) • Inappropriate privilege elevation • Applets and browser plugins are deprecated in JDK 9
  • 68. @spoole167 Attack Vectors – Untrusted Data • A Java SE API mishandles a specific type of data • XML, JPG, URLs, Fonts, JARs, Strings • Issues tend to be more severe when the API is implemented natively • Maliciously-crafted data can exploit the bug • DoS – CPU/memory usage, crash • Exposure of sensitive data – arbitrary memory access • Arbitrary code execution – code injection, disabling of SecurityManager • Affects any application which handles the specific data type from untrusted sources • Examples • A server application which allows users to upload images • A server application which accepts SOAP requests • A server application with an XML-based REST API
  • 69. JPEG 2000 image exploit on the OpenJPEG openjp2 version 2.1.1 A specially crafted image caused a buffer overflow in the JPEG code and overwrites memory in such a way to allow allow arbitrary code execution https://www.flickr.com/photos/mediumpanda/ https://www.flickr.com/photos/jasonahowie/
  • 71. @spoole167 Attack Vectors – Cryptographic Issues • Protocol flaws • Many implementations affected (Java, GSKit, OpenSSL, Browsers) • BEAST, POODLE, SLOTH, Logjam, Bar Mitzvah • Implementation flaws • Specific to Java • No fancy names! • Variable Impact • DoS • Private key exposure • Decryption of encrypted data
  • 72. @spoole167 Attack Vectors – Local • Can only be exploited by a local user • Exposure of sensitive data • E.g. temp files with inappropriate permissions • Code injection • E.g. native code loaded from an unexpected location due to bad LIBPATH • May lead to a remotely exploitable vulnerability • E.g. local user plants malicious code which can be executed remotely • Usually low CVSS due to the access required
  • 73. You don’t think you’re vulnerable to local attacks? @spoole167
  • 76. @spoole167 Wanna Cry • Friday, 12 May 2017 • Has infected 250K computers in 150+ countries • It encrypts data and holds it for ransom • The computer owner has a limited time to pay (in bitcoin) about $500 • bitcoin owners received about 50 bitcoins ~= $85K ($3/infected machine) UK: National Health Service impacted: India: All ATMs closed Nissan: Halted all production Renault: Halted some production https://en.wikipedia.org/wiki/WannaCry_ransomware_attack Your Java server is not as secure as you think @spoole167
  • 78. @spoole167 Deserialization Vulnerabilities • Abuse of the readObject() method of one or more classes • readObject() is invoked before the data is deserialized • Attackers use “gadget chains” in classes on the server’s classpath • Usually a complex set of nested objects which result in a Runtime.exec() • Costly to fix – servers may have multiple copies of the vulnerable code • Applications are vulnerable if they: • Have the vulnerable code on their classpath • Accept untrusted serialized data (this is much more common that you might think!) • Known for years, but came to prominence with problem in Apache Commons remote code execution • Many products affected – e.g. WebLogic, WebSphere, Tomcat, JBoss, Jenkins • Serialization filtering was added to the Java runtime in January 2017 • JEP 290 – Filter Incoming Serialization Data • Allows classes to be whitelisted
  • 79. @spoole167 Example vulnerability – JDWP • JDWP = Java Debug Wire Protocol • Disabled by default – enabled with a command line option • JVM internals can be observed and modified remotely • No authentication required • Classes can be changed, code can be injected • Well-known online banking website • JDWP enabled on public facing servers • Presumably JDWP was enabled in development/test… • Found by a researcher after a simple port scan • Bug bounty => ££££ • Simple fix – disable JDWP!
  • 81. public class HelpfulClassLoader { private Properties p=new Properties(System.getProperties()); public HelpfulClassLoader() { p.put("default", ”foo.StringHandler"); p.put("foo", "com.ibm.runtimes.demo.foo"); } public Class loadClassHelpfully(String handler) throws ClassNotFoundException { String className=p.getProperty(handler); try { return Class.forName(className); } catch (Exception e) { throw new ClassNotFoundException("could not create class for handler” +handler+" with value "+className); }}} Now I can do –Dfoo=bar on the command line (That’s helpful)
  • 82. HelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully("default"); System.out.println("class for default="+c); } catch (ClassNotFoundException e) { e.printStackTrace(); } handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.foo
  • 83. HelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully("default"); System.out.println("class for default="+c); } catch (ClassNotFoundException e) { e.printStackTrace(); } class for default=class foo.StringHandler handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.foo
  • 84. handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully(”foo"); System.out.println("class for foo="+c); } catch (ClassNotFoundException e) { e.printStackTrace(); }
  • 85. handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.foo java.lang.ClassNotFoundException: could not create class for handler foo with value com.ibm.runtimes.demo.foo at com.ibm.runtimes.demo.vulnerabilities.samples.HelpfulClassLoader.loadClassHelpfully(HelpfulClassLoader.java:23) at com.ibm.runtimes.demo.vulnerabilities.samples.HelpfulClassLoader.main(HelpfulClassLoader.java:40) HelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully(”foo"); System.out.println("class for foo="+c); } catch (ClassNotFoundException e) { e.printStackTrace(); }
  • 86. handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully(”java.ext.dirs"); } catch (ClassNotFoundException e) { e.printStackTrace(); }
  • 87. handler Class name default foo.StringHandler foo com.ibm.runtimes.demo.fooHelpfulClassLoader h=new HelpfulClassLoader(); try { Class c=h.loadClassHelpfully(”java.ext.dirs"); } catch (ClassNotFoundException e) { e.printStackTrace(); } java.lang.ClassNotFoundException: could not create class for handler java.ext.dirs with value /Users/spoole/Library/Java/Extensions: /Library/Java/JavaVirtualMachines/jdk1.8.0_102.jdk/Contents/Home/jre/lib/ext: /Library/Java/Extensions:/Network/Library/Java/Extensions: /System/Library/Java/Extensions: /usr/lib/java
  • 88. @spoole167 Something like this helpful code Coupled with the missing URL decoder check and the remote execution code inside Wanna Cry And your Java application is compromised. @spoole167
  • 89. “A vulnerability is a bug which can be exploited by an attacker” “A vulnerability is also a feature which can be exploited by an attacker”
  • 90. “A vulnerability is a bug which can be exploited by an attacker” “A vulnerability is also a feature which can be exploited by an attacker” “A vulnerability is also a developer aid which can be exploited by an attacker” @spoole167
  • 91. @spoole167 Helping you to be more informed
  • 94. @spoole167 1. Input Validation and Representation 2. API Abuse 3. Security Features 4. Time and State 5. Error Handling 6. Code Quality 7. Encapsulation * Environment The Seven Pernicious Kingdoms
  • 98. Secure by Design - Security Design Principles for the Rest of Us https://www.slideshare.net/EoinWoods1/secure-by-design-security-design-principles- for-the-rest-of-us Online Guides
  • 101. @spoole167 Reducing Risk • Keep all Java instances up to date • Use vulnerability scanning tools • Various around. From source code level to binary signature analysis. • Don’t write custom security managers • Don’t write custom crypto code • Don’t write custom XML parsers • Use modern encryption protocols and algorithms • Be very careful with: • Untrusted data , Deserialization (including RMI and JMX) • JDWP, Runtime.exec() • Native code If you are receiving data of any sort: validate it. @spoole167
  • 102. @spoole167 Keeping safe: it’s in your hands Keep current. Every vulnerability fix you apply is one less way in. Compartmentalize. Separate data, code, access controls etc. Just like bulkhead doors in a ship: ensure one compromise doesn’t sink your boat. Design for intrusion. Review you levels of ‘helpfulness’ and flexibility Learn about Penetration Testing Learn about security tools & services - IBM App Scan, lgtm.com Learn about secure coding - https://cwe.mitre.org http://www.oracle.com/technetwork/java/seccodeguide-139067.html , Understand that making your development life easier makes the hackers job easier @spoole167
  • 103. There are bad guys out there and your application is at risk Don’t make it worse by ignoring the problem https://www.flickr.com/photos/koolmann/ @spoole167
  • 104. London 9th – 11th May, 2018 “Java application security the hard way - a workshop for the serious developer”