Enabling Secure Third-Party Security Analytics Using Serverless Computing

Total Page:16

File Type:pdf, Size:1020Kb

Enabling Secure Third-Party Security Analytics Using Serverless Computing Session 6: Security in Emerging System and Networks SACMAT ’21, June 16–18, 2021, Virtual Event, Spain SCIFFS: Enabling Secure Third-Party Security Analytics using Serverless Computing Isaac Polinsky Pubali Datta North Carolina State University University of Illinois at Urbana-Champaign Raleigh, NC, USA Champaign, IL, USA [email protected] [email protected] Adam Bates William Enck University of Illinois at Urbana-Champaign North Carolina State University Champaign, IL, USA Raleigh, NC, USA [email protected] [email protected] Abstract Keywords Third-party security analytics allow companies to outsource threat Serverless Computing; Security Analytics; Decentralized Informa- monitoring tasks to teams of experts and avoid the costs of in- tion Flow Control house security operations centers. By analyzing telemetry data ACM Reference Format: from many clients these services are able to ofer enhanced insights, Isaac Polinsky, Pubali Datta, Adam Bates, and William Enck. 2021. SCIFFS: identifying global trends and spotting threats before they reach Enabling Secure Third-Party Security Analytics using Serverless Computing. most customers. Unfortunately, the aggregation that drives these In Proceedings of the 26th ACM Symposium on Access Control Models and insights simultaneously risks exposing sensitive client data if it is Technologies (SACMAT ’21), June 16–18, 2021, Virtual Event, Spain. ACM, not properly sanitized and tracked. New York, NY, USA, 12 pages. https://doi.org/10.1145/3450569.3463567 In this work, we present SCIFFS, an automated information fow monitoring framework for preventing sensitive data exposure in 1 Introduction third-party security analytics platforms. SCIFFS performs decen- A key component of maintaining a good security posture is contin- tralized information fow control over customer data in a serverless uously monitoring your environment for security-related events. setting, leveraging the innate polyinstantiated nature of serverless To detect threats in security event logs, it is necessary to frst have functions to assure precise and lightweight tracking of data fows. threat intelligence (e.g., signatures) that can be used to generate Evaluating SCIFFS against a proof-of-concept security analytics alerts. Due to the high cost of in-house security operation cen- framework on the widely-used OpenFaaS platform, we demonstrate ters and the complexity of security monitoring, companies are that our solution supports common analyst workfows (data inges- out-sourcing monitoring and threat intelligence gathering to third- tion, custom dashboards, threat hunting) while imposing just 3.87% party security analytics services. Not only do these service providers runtime overhead on event ingestion and the overhead on aggre- make security monitoring accessible to companies of all sizes, but gation queries grows linearly with the number of records in the more importantly, these providers have greater insights to global database (e.g., 18.75% for 50,000 records and 104.27% for 500,000 security trends than an in-house security operations center. For records) as compared to an insecure baseline. Thus, SCIFFS not only example, by aggregating data over all of their customers, a third- establishes a privacy-respecting model for third-party security ana- party security analytics provider can identify more threats and lytics, but also highlights the opportunities for security-sensitive proactively apply responses to new threats found in one customer’s applications in the serverless computing model. environment to their entire customer base. Unfortunately, the benefts of third-party services come with risk. Security event logs are sensitive; if data is not properly sani- CCS Concepts tized and tracked, performing aggregation over data from multiple • Security and privacy ! Information fow control; Access sources can expose sensitive customer data. For example, in 2018 control; Distributed systems security. Facebook accidentally sent developer analytics to app testers [9]. In general, accidental data leaks are a growing concern of IT security professionals [1]. To illustrate this risk, consider a report created by an analyst who inadvertently includes sensitive data from a cus- Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed tomer. If this report is shared with a competitor or the public, the for proft or commercial advantage and that copies bear this notice and the full citation analyst has unintentionally exposed the customer’s data, potentially on the frst page. Copyrights for components of this work owned by others than the violating the customer’s privacy or Service Level Agreement (SLA). author(s) must be honored. Abstracting with credit is permitted. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specifc permission This risk is exacerbated when data is shared with analysts who are and/or a fee. Request permissions from [email protected]. not familiar with a company’s internal procedures, an important SACMAT ’21, June 16–18, 2021, Virtual Event, Spain issue as there is a push for greater collaboration between security © 2021 Copyright held by the owner/author(s). Publication rights licensed to ACM. ACM ISBN 978-1-4503-8365-3/21/06...$15.00 companies in the wake of the SolarWinds hack [16]. To mitigate https://doi.org/10.1145/3450569.3463567 this risk, analysts must track data from each source client to all 175 Session 6: Security in Emerging System and Networks SACMAT ’21, June 16–18, 2021, Virtual Event, Spain derived reports (i.e., sinks). Manually tracking data is not only dif- Data Ingest cult and error prone, but also slows analyst workfows. Therefore, New Events and Store Events Enrichment we need automated mechanisms to (1) track data and derived data Process Customers and (2) prevent sharing of data without explicitly acknowledging Access A Analyze Access Customer A All the sources of the data and how the data was handled. Customer Events We envision a security analytics platform that allows third- Analyst Interface Home parties to automatically track security-related event telemetry and sci!s.securityanalytics.com/johndoe?catagory=security# Legend Data Database View Widgets Query Data Summary derived results in order to prevent accidental data exposure. While Analyze Process Workflow paths: All Find Events WF1: Data Ingestion WF2: Customer Analysis decentralized information fow control (DIFC) [25, 32, 38, 54] is well- Analysts With Specific Features WF3: Global Trend Analysis suited to perform this tracking and access control, incorporating WF4: Hunting New Threats DIFC into real systems often results in , high overhead, label creep Store Exploratory Derived and signifcant restrictions on functionality. Consider a canonical Analysis Results example DIFC logic where data sensitivities are represented as tags Store Results and data and processes are assigned labels, which are sets of tags. Derived Results Over its lifetime, a process will read information from fles and inter- act with other processes that have read information from other fles. Figure 1: Common Security Analytics Workfows. During this execution, the DIFC system will propagate tags from one label to another to indicate the fow of information. However, this tracking is often imprecise (e.g., conducted at the OS process layer), which causes a phenomenon commonly referred to as label Function-as-a-Service platform. We demonstrate how to ef- creep or label explosion. Label creep is particularly problematic in fciently and securely incorporate DIFC tracking within a server environments where long-running processes receive data common serverless computing runtime without dependen- from many clients with diferent labels. In such scenarios, the result- cies on specifc application languages. ing over-approximated label is often meaningless and unnecessarily • We demonstrate the practicality of SCIFFS. We implement a restricts functionality. Applied naïvely, DIFC may artifcially limit proof-of-concept security analytics serverless application the utility of third-party security analytics. and measure the performance overhead imposed by SCIFFS In this work, we propose SCIFFS: Securing Client Information compared to an unsecured baseline. Our evaluation shows a Flows using Function-as-a-Service. SCIFFS is an automated de- 3.87% overhead on ingesting events and a linear overhead on centralized information fow control framework for preventing analyzing data starting at 18.75% for a database with 50,000 accidental sensitive data exposure in third-party security analytics records to 104.24% for 500,000 records. We further show that platforms. Our key insight for overcoming label creep is the use of SCIFFS supports four common analytics workfows. serverless computing, an emerging cloud computing runtime where functionality is separated into small functions that are reentrant The remainder of this paper proceeds as follows. Section 2 pro- and ephemeral. This polyinstantiated nature of serverless comput- vides background and motivation. Section 3 overviews SCIFFS. ing signifcantly reduces the potential for label creep. However, Sections 4 and 5 describe the label model and system design. Sec- simply tracking DIFC labels within the serverless runtime is not in- tion 6 describes a proof-of-concept security analytics application. and-of-itself sufcient for a third-party security analytics platform.
Recommended publications
  • Controller to Processor Model Clauses
    Controller To Processor Model Clauses burkaNowadays jumblingly methodical, and perv Wheeler so door-to-door! penalise silhouette Daryle breakwater and troupe imprudently. aircraftman. Guns Tamas sometimes biking his The parties to be a more complex processing of personal data subjects have the data breach any person acting as processor to The processor processes personal data on behalf of the controller and according to its instructions The SCCs specify the obligations of form the exporter and. Standard contractual clauses for the porcelain of TietoEVRY. The new draft sccs in writing that. Controlled via internet connection with respect your online. Appendix 1 to the Standard contractual clausesset IIcontroller to processor Model The following Information Law precedent provides comprehensive and. Privacy shield act data transfers under the gdpr. Supplier must be deemed by this article. From processors in the EU to a sub-processor in summary third award from controllers located in a old country sale to the GDPR to processors. And view Privacy ShieldController-Processor Clauses side-by-side comparison. We can personalize individual would no true onesizefitsall solution for processor? Standard clauses adopted by city Commission. On February 5th the European Commission decided to dream the standard contractual clauses for controller to processor transfers of. Samsara may change Customer Personal Data lake its Subprocessor for the. Update to Standard Contractual Clauses SCCs August 2020. These new zealand and are subject can be ensured by all applicable when left unchanged. Regulation authority requests or territory, including a decision which will no interaction with an acknowledgment of such assistance in most relevant healthcare meet its account management.
    [Show full text]
  • An Analysis of Domain Classification Services
    Mis-shapes, Mistakes, Misfits: An Analysis of Domain Classification Services Pelayo Vallina Victor Le Pochat Álvaro Feal IMDEA Networks Institute / imec-DistriNet, KU Leuven IMDEA Networks Institute / Universidad Carlos III de Madrid Universidad Carlos III de Madrid Marius Paraschiv Julien Gamba Tim Burke IMDEA Networks Institute IMDEA Networks Institute / imec-DistriNet, KU Leuven Universidad Carlos III de Madrid Oliver Hohlfeld Juan Tapiador Narseo Vallina-Rodriguez Brandenburg University of Universidad Carlos III de Madrid IMDEA Networks Institute/ICSI Technology ABSTRACT ACM Reference Format: Domain classification services have applications in multiple areas, Pelayo Vallina, Victor Le Pochat, Álvaro Feal, Marius Paraschiv, Julien including cybersecurity, content blocking, and targeted advertising. Gamba, Tim Burke, Oliver Hohlfeld, Juan Tapiador, and Narseo Vallina- Rodriguez. 2020. Mis-shapes, Mistakes, Misfits: An Analysis of Domain Yet, these services are often a black box in terms of their method- Classification Services. In ACM Internet Measurement Conference (IMC ’20), ology to classifying domains, which makes it difficult to assess October 27ś29, 2020, Virtual Event, USA. ACM, New York, NY, USA, 21 pages. their strengths, aptness for specific applications, and limitations. In https://doi.org/10.1145/3419394.3423660 this work, we perform a large-scale analysis of 13 popular domain classification services on more than 4.4M hostnames. Our study empirically explores their methodologies, scalability limitations, 1 INTRODUCTION label constellations, and their suitability to academic research as The need to classify websites became apparent in the early days well as other practical applications such as content filtering. We of the Web. The first generation of domain classification services find that the coverage varies enormously across providers, ranging appeared in the late 1990s in the form of web directories.
    [Show full text]
  • Redefining Security Analytics with Chronicle
    Google Cloud Whitepaper: Redefining Security Analytics with Chronicle Redefining Security Analytics with Chronicle DISCLAIMER: This whitepaper applies to Google Cloud products described at cloud.google.com. The content contained herein represents the status quo as of the time it was written. Google’s security policies and systems may change going forward, as we continually improve protection for our customers. Google Cloud Whitepaper: Redefining Security Analytics with Chronicle Table of contents The cyber security world has changed 3 SIEM reimagined: past to future 3 How to make sense of all the security data 4 New SIEM requirements 4 Scale 5 Speed 6 Simplicity 6 C o s t 7 Cloud and on-premise 7 Chronicle: A different approach to security analytics 7 a. Data ingestion 8 b. Data analysis 9 What is the threat? 9 What is it doing? 10 Does it matter? 12 How to respond? 15 c. Security and compliance 16 Summary of Chronicle capabilities and benefits 17 2 Google Cloud Whitepaper: Redefining Security Analytics with Chronicle Chronicle is a global security telemetry platform for detection, investigation and threat hunting within your enterprise network. Chronicle makes security analytics instant, easy, and cost-effective. The cyber security world has changed The threats and technology environments around us have changed radically. Security professionals lament that they must manage threats that originated in the 1980s, which means that old threats never leave; new threats simply pile on. It is clear that the environments an organization must secure and monitor have also dramatically expanded. Much of this change is additive - in addition to mainframes and Windows servers, there are cloud platforms, mobile, and SaaS.
    [Show full text]
  • Popielinski, M.A
    Noncorporeal Embodiment and Gendered Virtual Identity Dissertation Presented in Partial Fulfillment of the Requirements for the Degree Doctor of Philosophy in the Graduate School of The Ohio State University By Lea Marie Popielinski, M.A. Graduate Program in Women’s Studies The Ohio State University 2012 Dissertation Committee: Cathy A. Rakowski, Advisor Cynthia Selfe Mary Thomas Copyright by Lea Marie Popielinski 2012 Abstract This dissertation introduces the concept of noncorporeal embodiment as an analytical tool for understanding the experience of having a body in three-dimensional graphical virtual space, i.e., a representational avatar body. I propose that users of virtual worlds such as Second Life develop a sense of embodiment that is comparable but not identical to a sense of embodiment in the actual world. The dissertation explores three key areas—the development of a virtual identity, the practice of virtual sexuality, and the experience of virtual violence—to locate evidence that Second Life residents identify with their avatars in ways that reflect the concept as it is developed in the text. Methods include interviews with Second Life residents, a blog that presents questions for public response, and the use of resident-produced written materials (e.g., blogs, forum discussions, classifed ads), while theoretical perspectives are drawn from feminist theorists concerned with studies of the body in various respects. The dissertation concludes with a summation of the social patterns observed in the previous chapters and with a discussion of future directions for further research. ii Acknowledgments The completion of this dissertation was long in coming, and it would never have arrived without the guidance, support, and participation of a number of individuals who did not give up on me and would not let me give up on myself throughout the process.
    [Show full text]
  • Advancing Control and Visibility in the Cloud
    8/23/2020 New security tools for Google Cloud and G Suite | Google Cloud Blog Blog Menu ID ENTITY & SECURITY Advancing control and visibility in the cloud Sunil Potti VP/GM, Google Cloud November 20, 2019 At Google Cloud, we work tirelessly to give our customers increasing levels of control and visibility over their data. Today in London at Next UK, we’re announcing new capabilities for data encryption, network security, security analytics, and user protection designed to deliver on that promise. External Key Manager: Store and manage encryption keys outside of Google Cloud We give enterprises a broad range of encryption options so you can appropriately Finbda alann acret ircislek,. .c. ontrol, security, and operational complexity when protecting your cloud workloads. Google Cloud encrypts customer data at-rest by default and offers customers multiple Latest stories options to control and manage their encryption keys. Today, we’re pleased to announce the next level of control with our new External Key Manager. Coming soon to beta, Products External Key Manager works with Cloud KMS and lets you encrypt data in BigQuery and Compute Engine with encryption keys stored and managed in a third-party key Topics management system deployed outside Google’s infrastructure. External Key Manager allows you to maintain separation between your data at-rest and your encryption keys About while still leveraging the power of cloud for compute and analytics. RSS Feed https://cloud.google.com/blog/products/identity-security/new-security-tools-for-google-cloud-and-g-suite 1/6 8/23/2020 New security tools for Google Cloud and G Suite | Google Cloud Blog Blog Menu To make this new service easy to implement, we are working with five industry-leading key management vendors: Equinix, Fortanix, Ionic, Thales and Unbound.
    [Show full text]
  • Profiling Kernel-Level Events to Detect Ransomware
    Peeler: Profiling Kernel-Level Events to Detect Ransomware Muhammad Ejaz Ahmed, Hyoungshick Kim, Seyit Camtepe, and Surya Nepal Abstract—Ransomware is a growing threat that typically proposed to fight against ransomware as follows: machine operates by either encrypting a victim’s files or locking a victim’s learning models (e.g., [5], [6], [7], [8], [9]), use of decoy computer until the victim pays a ransom. However, it is still files (e.g., [10], [11], [7]), use of a key escrow mechanism challenging to detect such malware timely with existing tradi- tional malware detection techniques. In this paper, we present (e.g., [12]) and file I/O pattern profiling (e.g., [13], [14], [15], a novel ransomware detection system, called “Peeler” (Profiling [16], [17], [9], [18], [7], [19]). kErnEl -Level Events to detect Ransomware). Peeler deviates However, these techniques have at least one of the following from signatures for individual ransomware samples and relies limitations: 1) Localised visibility: existing approaches with on common and generic characteristics of ransomware depicted limited localized visibility would struggle to detect certain type at the kernel-level. Analyzing diverse ransomware families, we observed ransomware’s inherent behavioral characteristics such of malicious activities. For example, ransomware may first as stealth operations performed before the attack, file I/O request attempt to delete Windows backup files, disable anti-malware, patterns, process spawning, and correlations among kernel-level or real-time monitoring services on the victim’s machine to events. Based on those characteristics, we develop Peeler that remain undetected before actually starting to encrypt user files. continuously monitors a target system’s kernel events and detects Techniques relying on file I/O request patterns, cryptographic ransomware attacks on the system.
    [Show full text]
  • Redefining Security Analytics with Chronicle Backstory 2
    Chronicle Backstory whitepaper Redefining security analytics with Chronicle Backstory 2 Table of contents Understanding the salient needs and gaps in modern security analytics 3 Threat and complexity How to make sense of it all? New types of tools needed Scale Speed Simplicity Cost Coverage Chronicle Backstory: a different approach to security analytics 8 a. Data ingestion b. Data analysis What is the threat? What is it doing? Does it matter? How to respond? c. Security and compliance Summary of capabilities and benefits 3 Chronicle Backstory is a global security telemetry platform for investigation, hunting and detection of threats within your enterprise network. Backstory makes security analytics instant, easy, and cost-effective. Understanding the salient needs and gaps in modern security analytics Threats and complexity Today’s security professionals face not only an ever-expanding list of threats, old and new, but also an excruciating choice of security approaches and tools. Nearly 2000 security vendors are trying to sell to large enterprises and small businesses. Most organizations have already invested heavily in cybersecurity solutions. From firewalls to proxies and endpoint protection to DLP, the average firm has more than 40 types of security technologies in place, each generating telemetry that grows every year. With employees, contractors, partners, and customers all accessing online business processes that were once hidden in a back office, corporate network traffic has also increased significantly. There is more noise than ever before, hiding more attacks than ever before -- with greater impacts than ever before. 4 How to make sense of it all? Security analytics promises to help analysts make sense of this data, to find useful signals in the noise before it’s too late.
    [Show full text]
  • Get Smarter, Be Safer Virustotal Enterprise Provides the Information Your Security Team Needs to Protect Your Network from Threats
    TECHNICAL DATA SHEET Get Smarter, Be Safer VirusTotal Enterprise provides the information your security team needs to protect your network from threats VirusTotal Enterprise enables you to research and hunt for malware, to investigate security incidents, to automate analysis, and to keep your investigations private and secure. STATIC THREAT INDICATORS Gather signals to trace your threat. VirusTotal tools extract suspicious signals such as OLE VBA code streams in Office document macros, invalid cross reference tables in PDFs, packer details in Windows Executables, intrusion detection system alerts triggered in PCAPs, Exif metadata, and authenticode signatures. BEHAVIOR AND RELATIONSHIP VISUALIZATION Understand the details of how malware files act and communicate. VirusTotal Graph visualizes relationships across malware files, domains, and IP addresses. With Private Graph, you can link enterprise assets, users, and other custom information to public information within a Graph. IN-THE-WILD INFORMATION Gain context on threat location and techniques used to propagate and disseminate malware. VirusTotal runs backend processes for sandboxing, inter-file relationships, extracting attachments from emails, relating URLs to files, and characterizing files coming from honeypots. FILE RELATIONSHIPS AND PATTERNS Hunt for new malware threats related to incoming files. Run YARA rules continuously for pattern matching on files and actors and use VirusTotal backend processes to build inter- file relationships, extract attachments from emails and build
    [Show full text]
  • YARA-L: a New Detection Language for Modern Threats
    WHITEPAPER YARA-L: A New Detection Language for Modern Threats SUMMARY Most enterprises use a SIEM to analyze security data, to detect threats and investigate incidents. However, most leading SIEM products were created more than a decade ago, and were designed for a different world. Today, the threat landscape and IT environment looks quite different: Data generated in petabytes, not terabytes; a mature public cloud infrastructure; new technologies such as EDR that generate useful but massive amounts of telemetry; and threats such as fileless malware that are either ephemeral or silent and persistent. We believe a new approach is required, and Chronicle offers that with YARA-L for threat detection. It is powerful, easily understood, and designed for threat analysis, not data query. INTRODUCTION Today, security operations and detection/response is largely about visibility and data — security telemetry data. Telemetry data allows us to know what is happening in our ever-expanding environments and ultimately enables much-sought-after situational awareness. While many assume that this means security naturally derives from hav- ing large amounts of data, telemetry on its own doesn’t provide visibility. More important is that data can be used for detection, alert triage, response, threat hunting, and other tasks. In essence, this means it’s not just the quantity of telemetry, but also the quality — consistency, structure, fidelity — of data that creates a clear signal about the attacker’s present and past behaviors. In fact, if more data translates into more noise, it is of no help. If more data translates into the user needing to run more searches, it is again of no help.
    [Show full text]
  • Real-Time Detection of Dictionary DGA Network Traffic Using Deep
    SN Computer Science (2021) 2:110 https://doi.org/10.1007/s42979-021-00507-w ORIGINAL RESEARCH Real‑Time Detection of Dictionary DGA Network Trafc Using Deep Learning Kate Highnam1 · Domenic Puzio2 · Song Luo3 · Nicholas R. Jennings1 Received: 1 August 2020 / Accepted: 6 February 2021 / Published online: 22 February 2021 © The Author(s) 2021 Abstract Botnets and malware continue to avoid detection by static rule engines when using domain generation algorithms (DGAs) for callouts to unique, dynamically generated web addresses. Common DGA detection techniques fail to reliably detect DGA variants that combine random dictionary words to create domain names that closely mirror legitimate domains. To combat this, we created a novel hybrid neural network, Bilbo the “bagging” model, that analyses domains and scores the likelihood they are generated by such algorithms and therefore are potentially malicious. Bilbo is the frst parallel usage of a convolutional neural network (CNN) and a long short-term memory (LSTM) network for DGA detection. Our unique F architecture is found to be the most consistent in performance in terms of AUC, 1 score, and accuracy when generalising across diferent dictionary DGA classifcation tasks compared to current state-of-the-art deep learning architectures. We validate using reverse-engineered dictionary DGA domains and detail our real-time implementation strategy for scoring real-world network logs within a large enterprise. In 4 h of actual network trafc, the model discovered at least fve potential command-and-control networks that commercial vendor tools did not fag. Keywords Domain generation algorithm · Deep learning · Malware · Botnets · Network security · Neural networks Introduction device.
    [Show full text]
  • 1.Optimiza-Moderniza Tu Ecommerce
    Tus primeros pasos en la nube Moderniza tu ecommerce Tus primeros pasos en la nube Etapa 2 - Optimiza Moderniza tu comercio electrónico La realidad en torno a la que construiste tu estrategia de comercio electrónico está cambiando a pasos acelerados. Conoce en esta guía cómo comenzar una etapa de transformación de tu negocio con las herramientas de Google Cloud para administrar la capacidad, controlar los costos y responder a las necesidades de los clientes. La nube puede ayudarte a acelerar la productividad y aumentar tus ventas. • Logra un aumento de los ingresos digitales y omnicanal • Transforma tu comercio para que se base en los datos y se centre en los clientes • Impulsa las mejoras operativas Moderniza tu plataforma de comercio electrónico con Google Cloud 1. Convierte tu tienda en una arquitectura en contenedores nativa de la nube que te permitirá dar un giro a la experiencia de los clientes en todos los canales. 2. Utiliza soluciones con funciones avanzadas de Inteligencia (como Product Search de Vision y Recommendations AI) para ofrecer a tus clientes experiencias dinámicas y personalizadas. 3. Integra sistemas y canales comerciales en nuestra plataforma de gestión de APIs (Apigee) para ofrecer una experiencia de compra más 4. Aprovecha nuestros componentes de front/datos, o suscríbete a soluciones comerciales desde nuestro Marketplace. 5. Impulsa tu proceso de modernización con nuestra oferta de migración de almacenes de datos. 6. Minimiza riesgos de seguridad o la pérdida de alguna venta con nuestra red de alta velocidad, tecnología y experiencia operativa. 1 Tus primeros pasos en la nube 7. Implementación sencilla y en poco tiempo: desde 5-7 días hasta 10 días.
    [Show full text]
  • Acquisitions of Startups by Digital Firms and Merger Policy
    –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– Philipps Universität Marburg Acquisitions of Startups by Digital Firms and Merger Policy Name: Marinell E. Falcón G. ABSTRACT The rise of the digital economy has brought significant challenges to competition authorities around the world. When it comes to merger control, the authorities have realized that there is an increasing trend in acquisitions of startups by digital firms such as Google, Amazon, Facebook, Apple, and Microsoft (GAFAM). The latest research and reports on this area suggest that the main problem with the acquisition of startups in digital markets is that due to the low-turnover characteristic of the acquired companies, the transactions are not detected by competition authorities for a pre-merger assessment. As a result, it is challenging to distinguish anti-competitive from pro- or neutral competitive acquisitions. The purpose of this research is to contribute to the discussion of the challenges of merger control in the digital economy by addressing the following question: what are the factors that can be considered in the assessment of startup acquisitions by digital firms to identify anti-competitive acquisitions better? Through a literature research and descriptive analysis of the acquisitions of startups undertaken by GAFAM within the last decade, the present research considers that a better assessment of startup acquisitions should take into consideration the characteristics of the digital economy, the incentives of the startups and firms, as well as trends and characteristics of past acquisitions. ACQUISITIONS OF STARTUPS BY DIGITAL FIRMS AND MERGER POLICY TABLE OF CONTENTS 1. Introduction ................................................................................................................... 1 2. Competition challenges in the digital economy .............................................................. 5 2.1 Distinctive characteristics of the digital economy and market concentration ........................
    [Show full text]