Efficient Approach to Fuzzing Interpreters

Total Page:16

File Type:pdf, Size:1020Kb

Efficient Approach to Fuzzing Interpreters Efficient approach to fuzzing interpreters Marcin Dominiak Wojciech Rauner Samsung R&D Institute Poland Samsung R&D Institute Poland [email protected] [email protected] Abstract ten fuzzers utilize multiple approaches, algorithms and heuristics in order to achieve high effectiveness. Fuzzing has started to gain more recognition over the Fuzzing, as a technique, has been proven to be past years. The basic concept behind it is passing ran- highly efficient at discovering bugs and security vul- dom or otherwise procedurally generated data as in- nerabilities. As an example, Zalewski | author of put to the tested software. Multiple fuzzers emerged American Fuzzy Lop (AFL) [1] and Vyukov | au- which have an impressive number of bugs discovered. thor of syzkaller [2], display an impressive number However, their applicability in fuzzing targets requiring of issues discovered by their tools. A wide range of highly structured yet arbitrarily nuanced input data, programs is continuously fuzzed by OSS-fuzz [3] | such as interpreters, is questionable. At the same time, an initiative by Google which allows maintainers of an interpreter's input is often untrusted. This, coupled open source projects to integrate their codebase with with their widespread usage, makes them a high prior- the ClusterFuzz, which then automatically synchro- ity target for security research, especially considering nizes and tests the software using Google's infrastruc- the interpreter's large codebase and high complexity. ture. As of writing this paper, more than 8000 bugs In this paper, we introduce the concept of combining were reported by the OSS-fuzz project. coverage guided fuzzing with synthesizing code given Interpreters of various languages are commonly found arbitrary input data. We will discuss the implemen- in modern software as they allow developers to create a tation of this idea in the Fluff project and describe more engaging and interactive user experience. One of its integration with American Fuzzing Lop | an the most prominent uses of interpreters are JavaScript open-source fuzzer. We show that by using Fluff execution engines embedded in web browsers. As of we can achieve larger code coverage than with current, March 2019, TIOBE [4], which measures popularity state of the art solutions. of programming languages, has ranked JavaScript as the 7th most popular technology. Other popular in- terpreted technologies include Python, PHP and Ruby. 1 Introduction All of those technologies are not only widely used, but also highly complex and constantly developed, which 1.1 Overview makes them perfect security research targets. Interpreters are a class of software which is difficult Fuzzing is a technique used to automatically test soft- to fuzz. The reason for that is the ease with which they ware. A basic fuzzer could generate random data and reject invalid inputs. On one hand interpreters perform pass it as input to the target. Modern fuzzers often uti- multiple validations on the input in order to reject any lize automatic analysis of the program source code or erroneous source codes, on the other they accept and instrumentation in order to gather information about execute a very wide range of valid codes. This results in the program and control flow. They use that informa- a situation where most test cases generated by a fuzzer tion as a feedback in order to improve the quality of the are quickly rejected, thus yielding low test coverage. test cases. A common metric to measure the quality of an input is, is checking whether the target program be- haved in a way which has not yet been observed (for ex- 1.2 Attack scenarios ample the program reached a location in the code which has not been visited before, or it crashed). Fuzzers Exploiting vulnerabilities in an interpreter is especially which track executed branches visited across runs and interesting as it can change the scope of an attack by try to maximize this value are called coverage guided. escaping the restricted execution environment. To vi- Fuzzers can utilize mutators, which modify either pre- sualize the risks connected with security vulnerabilities viously used inputs or a seed provided by a user launch- present in this class of software, we will enumerate sev- ing the tool, in order to generate new test cases. Of- eral possible attack scenarios: 1 • Web browsers Grey-box fuzzing is a technique of incorporating If a malicious entity controls a website (either by information about the target to the fuzzer. In the case legitimately owning it or by compromising an ex- of fuzzing interpreters, this can be done by providing isting service) it can craft JavaScript code which keywords or whole code snippets which the fuzzer in- will be executed by default in the browser of each corporates into the generated test cases. AFL can work user visiting the webpage. Exploiting the execu- in this way if a user provides it with a list of keywords. tion engine and browser could lead to the attackers Another well known tool in this category is jsfunfuzz gaining complete control over the visitor's system. [10], which works by constructing JavaScript code snip- pets and executing them. Those snippets are gen- • Online execution services erated using predefined templates, magic values, key- Some online services offer a functionality to ex- words and hard-coded randomness. This project does ecute code provided by the user (for example not use any instrumentation nor symbolic execution. It ideone [5]). Such services can be used to quickly is also tightly coupled with JavaScript and in particu- test, share code or explain certain features. While lar, with Mozilla's SpiderMonkey engine. Langfuzz those services take great measures to make sure [11] is another fuzzer in this category, which utilizes that executing arbitrary code does not compro- both generative and mutative approaches in order to mise their safety, exploiting one of the interpreters create new test cases. It is however a Mozilla internal might allow an attacker to gain control of the sys- tool. This approach can be effective, as it is easier for tem or gather more information about its internals. this type of fuzzers to create a valid program and pass parser, thus reaching backend of the interpreter. Unfor- • Continuous integration systems tunately, fuzzers in this category share the downsides of Those systems are integrated with version control both grammar based approaches and generic mutative software and allow developers to define tasks which fuzzers, as they are either limited by the hardcoded val- are to be executed periodically. A common task ues and snippets (as is the case with jsfunfuzz), or is building the application and running tests. A not limited enough and can't reliably pass parser (like malicious user could craft code specifically to ex- AFL with dictionary). ploit the execution engine in order to take control csmith [12] is a tool which synthesizes completely or otherwise attack the system itself, or even the valid C programs and passes them for compilation and machines running it. execution in multiple compilers. The outputs are then executed and the behavior of generated files is moni- • Social engineering tored in order to spot errors in logic. Any crashes dur- An attacker could try to post malicious code to on- ing the compilation process are also stored for analysis. line developer forums (like StackOverflow [6]) and csmith is a mature and highly efficient tool, however, ask for help, or otherwise try to trick users to exe- it does not cooperate with any fuzzer, nor employ any cute his specifically crafted code, hoping to exploit mutative approach, which could increase its effective- and compromise systems of people thinking that ness. csmith focuses on finding bugs in logic, which they are helping someone. cause the compiler to generate incorrect machine code. It also supports only C language. 1.3 Related work Formal verification could allow to ensure, in a provable way, that a piece of software is secure and cor- Grammar based approaches require a user-provided rect. It is still difficult to perform formal verification formal grammar and generate a script which will out- of projects as big as interpreters and compilers due to put test cases compliant with that grammar. A sample the amount of required work and computational power, tool utilizing this approach is Grammarinator [7]. Al- however, there is an ongoing effort to create a fully ver- though this approach does not support any sort of feed- ified compiler | compcert [13]. We are not aware of back loop by design, it can be implemented in a way any ongoing effort aiming to formally verify any exist- which does. Vegard has described in his blog post [8] ing interpreter. his approach to fuzzing GCC [9] compiler, which is also grammar based but uses AFL as the backend and there- 1.4 Paper outline fore utilizes a feedback loop. This approach is flexible, because one can create an input grammar for many pro- Section 2 describes different levels of fuzz testing. Sec- gramming languages. However, it is impossible to en- tion 3 introduces Fluff, which is our contribution to force certain properties, which are sometimes desired, this field. That section contains description of its de- using context free grammars (further elaborated in ap- sign, implementation and limitations, as well as ex- pendix A.1). tensions and design choices. Section 4 describes the 2 methodology used to evaluate selected approaches to fuzzing. Section 5 presents results of our research and = += comparison of Fluff with other approaches to fuzzing interpreters. Finally, section 6 summarizes findings of x 5 x 7 our work, as well as presents several further research ideas. Figure 1: Decomposition of the sample program into AST 2 Fuzzing interpreters Apart from syntactical correctness we want to en- In fuzzing we can differentiate between multiple levels force semantical correctness, in order to make sure, that of increasing test case quality [14].
Recommended publications
  • Shared Source Licensing Program for the Windows Embedded Compact (Formerly Windows CE) Platform
    9/6/2020 Shared Source Initiative | Licensing Program for the Windows Embedded Compact Platform Search Microsoft.com PRODUCTS STORE DOWNLOADS SUPPORT United States Shared Source Initiative > Windows Embedded Compact Source Licensing Program Shared Source Licensing Program for the Windows® Embedded Compact (formerly Windows CE) Platform Shared Source Licensing Programs Overview Microsoft offers a Shared Source licensing program for the Windows Embedded Compact (formerly Windows CE) platform. This program is applicable to the Windows Embedded Compact and Windows Embedded CE products. The Windows Embedded Shared Source program helps OEMs and developers speed development, reduce troubleshooting and code debugging time, receive assistance in remote device support and gain a deeper technical understanding of Windows Embedded Compact software. Public/Sample Source code is built at no additional cost into the purchased copies of the Windows Embedded Compact Platform Builder toolkit and provides access to nearly 4 million lines of code. Depending on a partner’s needs and qualifications, deeper levels of Shared Source code access (Private and Premium) are available. How to Participate Public/Sample Shared Source Public/Sample Shared Source code is available at no additional cost with each purchased copy of the Windows Embedded Compact 7 Platform Builder toolkit. Private Shared Source Private Shared Source Code is an optional component of the Windows Embedded Compact 7 Platform Builder toolkit that can be installed during the setup process. The toolkit user must electronically accept the terms and conditions of the Shared Source licensing agreement (EULA) before the Private source code can be installed. Premium Derivatives Program Microsoft also offers Premium access to advanced Windows Embedded Compact 7 source code through the Premium Derivatives licensing program.
    [Show full text]
  • Open Source Mit Vorsicht Zu Geniessen
    Achim Patzner, Dr. Walter Speth, active BIT1, Bonn Open Source mit Vorsicht zu geniessen Seit Richard Stallman in den 80ern die Free Software Foundation ins Leben gerufen hat, geistert der Begriff der freien Software durch die Branche und wird allzu oft voreilig als lizenzfrei und/oder kostenfrei missverstanden. Das Gegenteil kann der Fall sein: Die Wahl für eine Open Source Plattform kann Herstellern ein Lizenzmodell aufoktroyieren, das mit den Unternehmenszielen nicht vereinbar ist. Zeit für eine Richtigstellung: Nach der "public domain software" und der bereits genannten "free software" kam im Siegeszug von Linux und mit der Veröffentlichung der Quellen des Netscape-Browsers im Mozilla-Projekt Anfang 1998 die "open source software" und mittlerweile aus dem Hause Microsoft auch noch den Begriff der "shared software" (man hat verstanden, dass derartige Campagnen durchaus Marketing-Charakter tragen). Die Free Software Foundation distanziert sich übrigens vom Begriff "open source Software"2. Allerdings steht gerade dieser Begriff für das kollektive Erstellen von Software-Projekten, aber weniger wegen eines speziellen philosophischen Ansatzes, sondern weil er zu einer Zeit geprägt wurde, in der die hohe Durchdringung der weltweiten Vernetzung die Kommunikation innerhalb der Entwicklergemeinschaft ermöglichte und weil Linux als augenscheinlicher Vertreter für Open-Source-Produkte den Kondensationskern für das Bewusstsein von kostenfreier Software darstellte. Richard Stallman wollte "Freiheit für Software", er wollte aber nicht Software im Sinne von Freibier (so seine eigene Formulierung). Die Freiheit besteht im wesentlichen darin, dass der Hersteller sein geistiges Erzeugnis, die Sourcen verfügbar macht. Deren Nutzung ist allerdings durchaus im rechtlichen Rahmen der mitgelieferten Lizenzvereinbarung zu sehen. Es geht also weder darum, Software - 2 - ohne lizenzrechtliche Einschränkungen nutzen zu können, noch geht es darum, die Anwender mit lizenzfreier Software zu versorgen.
    [Show full text]
  • Microsoft's Shared Source Initiative As an Alternative to Open
    How open is open? Microsoft’s Shared Source Initiative as an Alternative to Open Source Software Anne-Kathrin Kuehnel Department of Law and Criminology, University of Wales Aberystwyth Email: [email protected] Introduction: “Judging a Book by its Cover” There are few certainties in life: everybody is playing football but, in the end, Germany wins. The murderer is always the butler. Or the gardener. It never rains in “Midsomer Murders”. Until recently, one of these used to be “Open Source good, Microsoft bad.” But now, it would appear that times have, indeed, changed and nothing in the software industry is as perceived and traditional wisdom would have it: Microsoft is opening up some of its source code. Over the past few years, Microsoft has promoted a project called “Shared Source Initiative” which allows access to source code to certain customers (e.g. research institutions and independent software vendors) on a restricted basis. Furthermore, it has also introduced some licenses which appear to give unrestricted access to source code and seem to closely resemble ‘traditional’ Open Source licenses. Given that availability of source code is a prime characteristic of Open Source Software it could be argued that Microsoft has embraced the Open Source Software philosophy. And indeed, one of Microsoft’s sharpest critics, Lawrence Lessig, is openly praising Microsoft for its Shared Source Initiative for opening up some of their source code.1 Rumour also has it that Microsoft has at least been thinking about submitting some of their licenses to the Open Source Initiative for certification.2 Does this mean that Microsoft has (finally) seen the light and embraced the Open Source philosophy? If Open Source Software was only defined by the accessibility of source code, the availability of source code would equal open source.
    [Show full text]
  • Enabling Dynamic Analysis of Legacy Embedded Systems in Full Emulated Environment Ta-Lun Yen Txone Iot/ICS Security Research Labs (Trend Micro) $(Whoami)
    Enabling dynamic analysis of Legacy Embedded Systems in full emulated environment Ta-Lun Yen TXOne IoT/ICS Security Research Labs (Trend Micro) $(whoami) ● @evanslify ● Researcher @ TXOne Networks (Trend Micro), 2019/11-present ● Reverse Engineering, protocol analysis, wireless, hardware 2 2021-07-12 Outline ● Our goals & Background of Windows CE6 ● CE6 Bootloader & power-on initialization ● Inside CE6 Application Loader & Memory management ● Reconstructing extracted binaries to dynamic execution ● Conclusion 3 2021-07-12 Our goal ● Emulate CE6 image from device with QEMU ● We don’t want to buy every hardware for research – We ended up buying one actually (for comparison) ● Serial ports & debugger is not present on every hardware 4 2021-07-12 Background of Windows CE6 5 2021-07-12 Horrors from the ancient ● WinCE hasn’t been actively exploited (yet…) ● However, it runs everywhere – In cars, Parking meters, aircraft IFEs, subway turnstiles, medical devices, power plants... 6 2021-07-12 Difference between {NT, CE} ● Microsoft Shared Source Initiative: (partial) source code ● Loosely adheres to NT APIs and behavior ● Real-time OS 7 2021-07-12 Difference between {NT, CE} ● While having different APIs and behaviors between CE and NT... ● Some exploits and techniques might work on both CE & NT – ...with some efforts, e.g MS17-010 [1] [1] https://www.fracturelabs.com/posts/2017/exploiting-ms17-010-on-windows-embedded-7- devices/ 8 2021-07-12 Current methods to study CE6 firmware ● File extraction – https://github.com/nlitsme/eimgfs (was dumprom)
    [Show full text]
  • Incorporating the Commons: a Political Economic Analysis
    INCORPORATING THE COMMONS: A POLITICAL ECONOMIC ANALYSIS OF CORPORATE INVOLVEMENT IN FREE AND OPEN SOURCE SOFTWARE by BENJAMIN J. BIRKINBINE A DISSERTATION Presented to the School of Journalism and Communication and the Graduate School of the University of Oregon in partial fulfillment of the requirements for the degree of Doctor of Philosophy September 2014 DISSERTATION APPROVAL PAGE Student: Benjamin J. Birkinbine Title: Incorporating the Commons: A Political Economic Analysis of Corporate Involvement in Free and Open Source Software This dissertation has been accepted and approved in partial fulfillment of the requirements for the Doctor of Philosophy degree in the School of Journalism and Communication by: Dr. Janet Wasko Chairperson Dr. Biswarup Sen Core Member Dr. Gabriela Martinez Core Member Eric Priest, J.D. Institutional Representative and J. Andrew Berglund Dean of the Graduate School Original approval signatures are on file with the University of Oregon Graduate School. Degree awarded September 2014 ii DISSERTATION ABSTRACT Benjamin J. Birkinbine Doctor of Philosophy School of Journalism and Communication September 2014 Title: Incorporating the Commons: A Political Economic Analysis of Corporate Involvement in Free and Open Source Software Free (libre) and open source software (FLOSS) emerged in the 1980s as a radical alternative to proprietary software. Fighting back against what FLOSS enthusiasts viewed as overly restrictive intellectual property protections placed on proprietary software, FLOSS was designed with the intent of granting users the right to study, modify, adapt, or otherwise tinker with the source code of software. As such, FLOSS users were able to collaborate in producing software that could be distributed freely and widely to others, who could, in turn, make changes to the software.
    [Show full text]
  • Table of Contents
    Table of Contents Preface . ix 1. Open Source Licensing, Contract, and Copyright Law . 1 Basic Principles of Copyright Law 1 Contract and Copyright 3 Open Source Software Licensing 4 Issues with Copyrights and Patents 7 The Open Source Definition 8 Warranties 11 2. The MIT, BSD, Apache, and Academic Free Licenses . 14 The MIT (or X) License 14 The BSD License 15 The Apache License, v1.1 and v2.0 17 The Academic Free License 24 Application and Philosophy 30 3. The GPL, LGPL, and Mozilla Licenses . 34 GNU General Public License 35 GNU Lesser General Public License 49 The Mozilla Public License 1.1 (MPL 1.1) 62 Application and Philosophy 81 4. Qt, Artistic, and Creative Commons Licenses . 85 The Q Public License 85 Artistic License (Perl) 90 Creative Commons Licenses 98 vii 5. Non-Open Source Licenses . 114 Classic Proprietary License 114 Sun Community Source License 120 Microsoft Shared Source Initiative 144 6. Legal Impacts of Open Source and Free Software Licensing . 147 Entering Contracts 148 Statutory Developments Related to Software Contracts 150 The Self-Enforcing Nature of Open Source and Free Software Licenses 151 The Global Scope of Open Source and Free Software Licensing 153 The “Negative Effects” of Open Source and Free Software Licensing 154 Community Enforcement of Open Source and Free Software Licenses 158 Compatible and Incompatible Licensing: Multiple and Cross Licensing 159 7. Software Development Using Open Source and Free Software Licenses . 164 Models of Open Source and Free Software Development 164 Forking 171 Choosing an Open Source or Free Software License 174 Drafting Open Source Licenses 176 Appendix: Creative Commons Attribution-NoDerivs License .
    [Show full text]
  • Open Source Software: Risks and Rewards V2.0, 03 August 2005
    Open Source Software: Risks and Rewards v2.0, 03 August 2005 Author(s)Gary Hein Conclusion Open source software (OSS) brings new opportunities and risks to information technology (IT) vendors and customers. Software commoditization is being profoundly affected from the infrastructure layer and moving up to the application layer. As a result, OSS is changing the strategies and business models of hardware and software vendors and system integrators. Customers should understand the risks and rewards of OSS, and should formulate strategies that bring OSS benefits to their IT departments while mitigating the business and legal risks. Synopsis Open source software (OSS) is more than just free software. It’s a development process, a distribution model, and a set of new software licenses. And, as characterized by OSS proponents, it’s a movement. OSS projects, such as Linux and Apache HTTP server, are commoditizing enterprise and Internet infrastructure, and thus pose threats for some vendors while creating new market opportunities for others. OSS brings more to information technology (IT) than just free software. It grants freedom from vendor lock-in and application churn, freedom to inspect, modify, and improve source code, and the freedom to influence or contribute to projects key to a company’s survival. But these freedoms come at a price. Although OSS is free, it isn’t always less expensive to implement due to migration, support, training, and maintenance costs. OSS projects add new twists to business risks such as vendor viability and stability, and legal issues remain uncertain as many popular licenses have yet to be tested in a court of law.
    [Show full text]
  • The Paradox of Source Code Secrecy
    KATYAL FORMATTED 6/24/19 11:31 PM THE PARADOX OF SOURCE CODE SECRECY Sonia K. Katyal† INTRODUCTION ............................................................ 102 I. SOURCE CODE SECRECY AND COPYRIGHT ............... 109 A. Code: An Introductory (and Incomplete) History .................................................................. 111 B. The Birth of Source Code Secrecy ................ 114 C. The Copyrightability of Software .................. 117 1. Early Accommodations of Trade Secrecy ... 119 2. Copyrighting Code................................... 122 D. The Continuing Overlap Between Copyright and Trade Secrecy ............................................. 125 II. THE SHIFTING BOUNDARIES OF SOFTWARE PATENTABILITY ................................................... 129 A. Patentability vs. Secrecy .............................. 131 B. The Rise and Fall of Software Patentability ... 136 1. The Opening of the Window of Patentability .............................................................. 137 2. Narrowing the Window of Patentability ..... 141 III. TRADE SECRECY AS DESTINATION .......................... 145 A. The Lingering Monopoly of Trade Secrecy ..... 146 B. Judicial Accommodation in Kewanee ........... 149 C. Rethinking Complementarity in Software ..... 151 † Haas Distinguished Chair and Chancellor’s Professor of Law, University of California at Berkeley. Many, many thanks to the following for comments and conversation: Ken Bamberger, Ash Bhagwat, Andrew Bradt, Ari Chivikula, Ryan Calo, Christian Chessman, Danielle Citron,
    [Show full text]
  • Incorporating the Digital Commons:Corporate Involvement in Free and Open Source Software
    INCORPORATING THE DIGITAL COMMONS DIGITAL THE INCORPORATING INCORPORATING THE CDSMS DIGITAL COMMONS he concept of ‘the commons’ has been used as a framework to understand resources shared by a community rather than a private BENJAMIN J. BIRKINBINE T entity, and it has also inspired social movements working against the enclosure of public goods and resources. One such resource is free (libre) and open source software (FLOSS). FLOSS emerged as an alternative to proprietary software in the 1980s. However, both the products and production processes of FLOSS have become incorporated into capitalist INCORPORATING THE production. For example, Red Hat, Inc. is a large publicly traded company whose business model relies entirely on free software, and IBM, Intel, Cisco, Samsung, Google are some of the largest contributors to Linux, the DIGITAL COMMONS open-source operating system. This book explores the ways in which FLOSS has been incorporated into digital capitalism. Just as the commons have been used as a motivational frame for radical social movements, it has also Corporate Involvement in Free served the interests of free-marketeers, corporate libertarians, and states to expand their reach by dragging the shared resources of social life onto and Open Source Software digital platforms so they can be integrated into the global capitalist system. The book concludes by asserting the need for a critical political economic understanding of the commons that foregrounds (digital) labour, class struggle, and uneven power distribution within the digital commons as well as between FLOSS communities and their corporate sponsors. BENJAMIN J. BIRKINBINE J. BENJAMIN COMMUNICATION STUDIES | POLITICAL ECONOMY | MEDIA INDUSTRIES CDSMS CRITICAL DIGITAL AND SOCIAL MEDIA STUDIES THE AUTHOR Benjamin J.
    [Show full text]
  • Commercializing Open Source Software: Do Property Rights Still Matter?
    Columbia Law School Scholarship Archive Faculty Scholarship Faculty Publications 2006 Commercializing Open Source Software: Do Property Rights Still Matter? Ronald J. Mann Columbia Law School, [email protected] Follow this and additional works at: https://scholarship.law.columbia.edu/faculty_scholarship Part of the Computer Law Commons, and the Intellectual Property Law Commons Recommended Citation Ronald J. Mann, Commercializing Open Source Software: Do Property Rights Still Matter?, 20 HARV. J. L. & TECH. 1 (2006). Available at: https://scholarship.law.columbia.edu/faculty_scholarship/739 This Article is brought to you for free and open access by the Faculty Publications at Scholarship Archive. It has been accepted for inclusion in Faculty Scholarship by an authorized administrator of Scholarship Archive. For more information, please contact [email protected]. HarvardJournal of Law & Technology Volume 20, Number 1 Fall 2006 COMMERCIALIZING OPEN SOURCE SOFTWARE: Do PROPERTY RIGHTS STILL MATTER? Ronald J Mann* TABLE OF CONTENTS I. IN TRO DU CTIO N .................................................................................. 1 11. THE LANDSCAPE .......................................................................... 5 A. The ProprietarySoftware Model .............................................. 5 1. Formation and Maturation of the Proprietary Software Industry ......................................................................... 5 2. Software Licensing Under Proprietary Models .................... 8 3.
    [Show full text]
  • X41 D-SEC Gmbh Dennewartstr
    Browser Security White PAPER Final PAPER 2017-09-19 Markus VERVIER, Michele Orrù, Berend-Jan WEVER, Eric Sesterhenn X41 D-SEC GmbH Dennewartstr. 25-27 D-52068 Aachen Amtsgericht Aachen: HRB19989 Browser Security White PAPER Revision History Revision Date Change Editor 1 2017-04-18 Initial Document E. Sesterhenn 2 2017-04-28 Phase 1 M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 3 2017-05-19 Phase 2 M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 4 2017-05-25 Phase 3 M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 5 2017-06-05 First DrAFT M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 6 2017-06-26 Second DrAFT M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 7 2017-07-24 Final DrAFT M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 8 2017-08-25 Final PAPER M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER 9 2017-09-19 Public Release M. VERVIER, M. Orrù, E. Sesterhenn, B.-J. WEVER X41 D-SEC GmbH PAGE 1 OF 196 Contents 1 ExECUTIVE Summary 7 2 Methodology 10 3 Introduction 12 3.1 Google Chrome . 13 3.2 Microsoft Edge . 14 3.3 Microsoft Internet Explorer (IE) . 16 4 Attack Surface 18 4.1 Supported Standards . 18 4.1.1 WEB TECHNOLOGIES . 18 5 Organizational Security Aspects 21 5.1 Bug Bounties . 21 5.1.1 Google Chrome . 21 5.1.2 Microsoft Edge . 22 5.1.3 Internet Explorer . 22 5.2 Exploit Pricing . 22 5.2.1 ZERODIUM . 23 5.2.2 Pwn2Own .
    [Show full text]
  • 82103 QP Code:59232 Time : 2 ½ Hours Total Marks: 75
    F.Y.B.Sc. Computer Science Semester - I (C:75:25) Solution Set - December 2018 (03/12/2018) Subject Code: 82103 QP Code:59232 Time : 2 ½ Hours Total Marks: 75 Q1 Attempt All(Each of 5 marks) (15) a) Multiple Choice Questions 1) GPL stands for _______ i) Generle Public License ii) General Public License iii) Generic Public License iv) General Private License 2) Which of the following is not a phase of Life Cycle Paradigm / waterfall model? i) Analysis ii) Manufacturing iii) Design iv) Coding 3) _________ is the founder of FSF i) Richard Stallman ii) Denis Ritchie iii) Ken Thomson iv) All of these 4) __________ is a form of licensing in which an author surrenders some but not all rights under copyright law i) Copydown ii) License iii) Copyleft iv) Patent 5) The term BSD stands for ______________ i) Binary software distribution ii) Berkley software distribution iii) Binary software development iv) Berkley software development b) Fill in the blanks (Waterfall model, full, internationalization, Prototyping model, Firefox, localization, chrome, free hardware design, partial, open source software) 1) Waterfall model is a static, sequential and procedural approach in software engineering methodology. 2) full copyleft is when all parts of work can be modified by consecutive authors. 3) localization is the process of adapting software for a specific region or language by adding locale-specific components and translating text. 4) Firefox is a web browser project descended from Mozilla application suite. 5) free hardware design refers to design which can be freely copied, distributed, modified and manufactured. c) Short Answers: 1) What is free software? Ans: Free software or libre software is computer software distributed under terms that allow users to run the software for any purpose as well as to study, change, and distribute it and any adapted versions.
    [Show full text]