Prof. Bodden interviewed on WDR radio

Eric | May 14, 2019

This week, Prof. Bodden was interviewed by WDR radio regarding an idea put forward by the social-democrat party (SPD) to hold companies liable if they sell insecure software. You can listen to the full interview here (in German).


Cross-posted from Secure Software Engineering

Comments
Comments Off on Prof. Bodden interviewed on WDR radio
Categories
Misc, Research, Uncategorized

Join our research group as a Doctoral Student or PostDoc!

Eric | August 23, 2018

We are currently looking for doctoral and postdoctoral researchers to complement our research group at Paderborn university. For further information, please consult our previous announcement here. As stated, please direct your applications to se-jobs.cs@upb.de

For the doctoral level, we encourage you to apply if you have completed your Master degree in either computer science, mathematics, engineering or any related field of study.

At the post-doctoral level, we are particularly looking for candidates with a proven track record (at least two papers at very reputable venues) in any of those subject areas:

  • Static and/or dynamic program analysis
  • Software Security
  • Systems Security
  • Applied (!) cryptography and/or cryptanalysis

Cross-posted from Secure Software Engineering

Comments
Comments Off on Join our research group as a Doctoral Student or PostDoc!
Categories
Misc, Research, Uncategorized

Steven Arzt and Siegfried Rasthofer win Dissertation Award of the Ernst Denert Foundation

Eric | March 2, 2018

Once a year, the Ernst Denert Foundation (by Ernst Denert, one of the founders of sd&m, now Capgemini), sponsor’s the Software Engineering award, which is given out at the SE conference by the Gesellschaft für Informatik. Usually, this award is given out to a single individual for her or his dissertation.

Just this year, the choice was apparently particularly hard to make: two theses really stood out so much that the jury was unable to decide among them. In result, I am more than happy to announce that both my former Ph.D. students Steven Arzt and Siegfried Rasthofer have been chosen to receive the award for 2018. Congratulations Steven and Siegfried! Well done!

You can access their theses here:

Improving Mobile-Malware Investigations with Static and Dynamic Code Analysis Techniques (Siegfried Rashofer)PhD thesis, Technische Universität Darmstadt, 2016. Awarded: Summa cum laude & Fraunhofer IuK Dissertation Award [bib] [pdf]
Static Data Flow Analysis for Android Applications (Steven Arzt)PhD thesis, Technische Universität Darmstadt, 2016. Awarded: Summa cum laude [bib] [pdf]

Cross-posted from Secure Software Engineering

Comments
Comments Off on Steven Arzt and Siegfried Rasthofer win Dissertation Award of the Ernst Denert Foundation
Categories
Misc, Research, Uncategorized

Siegfried Rasthofer wins Fraunhofer IuK Dissertation Award

Eric | September 20, 2017

At the GI Jahrestagung in Chemnitz, my former Ph.D. Student Siegfried Rasthofer (now research group leader at Fraunhofer SIT) will be awarded the Dissertation Award by the Fraunhofer IuK Verbund, for this thesis Improving Mobile-Malware Investigations with Static and Dynamic Code Analysis Techniques. Congratulations to Siegfried! Well done!

Cross-posted from Secure Software Engineering

Comments
Comments Off on Siegfried Rasthofer wins Fraunhofer IuK Dissertation Award
Categories
Misc, Research, Uncategorized

Looking for Research Group Leader in Software Engineering

Eric | September 14, 2017

At Fraunhofer IEM we are currently looking for a research group leader within our Software Engineering division. German language skills are required. Find more information here

Cross-posted from Secure Software Engineering

Comments
Comments Off on Looking for Research Group Leader in Software Engineering
Categories
Misc, Research, Uncategorized

New paper on Just-in-time Code Analysis

Eric | May 19, 2017

In a collaborative effort with Karim Ali (University of Alberta), Ben Livshits (Imperial College London), Justin Smith and Emerson Murphy-Hill (North Caroline State University), my Ph.D. student Lisa Nguyen and myself have just concluded a new piece of research on Just-in-time (JIT) static code analysis. The approach, which we exemplify with a JIT taint analysis for Android, can be applied to most static analyses and allows those analyses to execute more efficiently in integrated development environments. In particular, the analysis is tuned such that it executes first in code recently edited by the programmer and then searches its way further “outward” from there. As our experiments indicate, this decreases round-trip times for programmers and hence increases their productivity during the fixing of security vulnerabilities.

A preprint of the work, accepted for publication at ISSTA, is now available online, as is our implementation and data set:

Just-in-Time Static Analysis (Lisa Nguyen Quang Do, Karim Ali, Benjamin Livshits, Eric Bodden, Justin Smith, Emerson Murphy-Hill), In International Symposium on Software Testing and Analysis (ISSTA), 2017. (To appear.)

Cross-posted from Secure Software Engineering

Comments
Comments Off on New paper on Just-in-time Code Analysis
Categories
Misc, Research, Uncategorized

The Sabre Breach: What we can learn from large-scale backend systems

Eric | May 15, 2017

Gathering control over large-scale backend systems is a tempting achievement for criminals. Especially, if these systems collect and process payment data. These systems have to be (and are being) protected by a multitude of defensive measures to keep criminals from achieving control or gathering data.

Central Reservation Systems (CRSs), the systems behind your travel bookings, are a such an interesting target, as they process a high volume of payment data every second of the day. They are deployed on massive scales comparable to operating systems and the variety of systems is rather limited. The two largest players here are the Amadeus CRS deployed in 440 airlines, 90,000 travel agencies, and over 100,000 hotels and Sabre GDS operating for 400 airlines and 88.000 hotels. Additionally, these systems provide gateway (and payment) functionality for rail carriers, cruise lines, and car rental services.

Targeted malware attacks against specific hotels and hotel chains are not uncommon. Recent events include attacks to Holiday Inn and Crowne Plaza Hotels, Hilton Hotels, Hyatt Hotels, and even the Trump Hotel chain. All of these attacks specifically targeted the payment systems. Installing malware on payment terminals, attackers were able to copy the information from the credit cards and create copies of these cards. However, the amount of payment information that can be obtained with such an attack remains rather limited and can be detected by credit card companies comparatively easy.

Recently, one of the larger CRS vendors – Sabre – reported an attack on one of their systems in a quarterly SEC filing.

We are investigating an incident involving unauthorized access to payment information contained in a subset of hotel reservations processed through the Sabre Hospitality Solutions SynXis Central Reservation system. The unauthorized access has been shut off, and there is no evidence of continued unauthorized activity at this time. We have retained expert third-party advisors to assist in the investigation and are working with law enforcement.  There is a risk that this investigation may reveal that PII, PCI, or other information may have been compromised. The costs of this investigation, as well as any other impacts or remediation related to this incident, may be material. As noted below, we maintain insurance that covers certain aspects of cyber risks, and we are working with our insurance carriers in this matter.

PII meaning “personally identifiable information” and PCI meaning “payment card industry data” here. The reason why they mention this in a stock exchange filing are the liability and costs attached to this incident.

And this assessment seems legitimate. While the amount of payment data acquired using malware in card terminals is limited to the terminal, the amount of payment data which can be acquired in breaking a CRS represents a large share of the overall travel market, although to this date the size of this specific leak is unknown to the public.

Travel booking systems are old. They still rely on data structures and protocols designed in the 1960s – including restrictions on character sets originating from the use of punch cards. These systems used to be closed systems where the clients use dedicated connections and are well known. To allow for reduced costs and novel applications (e.g., self-booking through Internet services), CRS were opened up to access from the Internet.

What was left out was fine-grained access control. Every client can see the complete record of your travel booking, including personal information and payment information, based on very weak authentication credentials. Questions regarding privilege escalation or leaking data flow cannot even be applied here, as the systems are so open already. They will continue to be that way until a fundamental architectural change can be forced. This, however, is a gigantic undertaking as it involves the whole travel industry… all airlines, all hotels, all car rental companies, etc. The European Commission is currently investigating the security of central reservation systems, which will hopefully move the vendors to implement more defenses and more privacy measures for their system.

More information:

Cross-posted from Secure Software Engineering

Comments
Comments Off on The Sabre Breach: What we can learn from large-scale backend systems
Categories
Misc, Research, Uncategorized

Official inauguration of Fraunhofer IEM

Eric | March 31, 2017

Today we were very happy to host NRW’s minister of science Svenja Schulze and Fraunhofer’s Director of Science Dr. Raoul Klingner for the official inauguration of Fraunhofer IEM. The new institute is the first to be founded within NRW within the past 20 years, and was bootstrapped in just about seven years – a new record in the Fraunhofer Society.

Cross-posted from Secure Software Engineering

Comments
Comments Off on Official inauguration of Fraunhofer IEM
Categories
Misc, Research, Uncategorized

IEEE S&P Paper on Hardening the Java Runtime is now available

Eric | March 20, 2017

Our new S&P paper Hardening Java’s Access Control by Abolishing Implicit Privilege Elevation is now available online. It is a follow-up work to our previous CCS’16 paper An In-Depth Study of More Than Ten Years of Java Exploitation. In this former paper we classified a large number of history Java exploits. In doing so, we found that the largest class of exploits was made possible by shortcuts in Java’s implementation of access control. In the S&P paper we now show that it is possible to go without those shortcuts, without any loss of performance. We also discuss the usability implications that this removal of shortcuts would have.

Cross-posted from Secure Software Engineering

Comments
Comments Off on IEEE S&P Paper on Hardening the Java Runtime is now available
Categories
Misc, Research, Uncategorized

New Paper “The Soot-based Toolchain For Analyzing Android Apps”

Eric | March 3, 2017

Steven, Siegfried and I have just completed our invited paper for MOBILESoft’17. The paper The Soot-based Toolchain For Analyzing Android Apps summarizes for the first time the Soot-based tool chain for analyzing Android apps that we have built up over the past years. We hope you will enjoy the read!

And if you attend ICSE, maybe consider attending MOBILESoft as well, and you will be able to attend my keynote talk.

Cross-posted from Secure Software Engineering

Comments
Comments Off on New Paper “The Soot-based Toolchain For Analyzing Android Apps”
Categories
Misc, Research, Uncategorized