New XML-Based Files Implications for Forensics

Total Page:16

File Type:pdf, Size:1020Kb

New XML-Based Files Implications for Forensics Digital Forensics New XML-Based Files Implications for Forensics Two new of!ce document !le formats (Of!ce Open XML and OpenDocument Format) make it easier to glean time stamps and unique document identi!ers while also improving opportunities for !le carving and data recovery. SIMSON L. or more than 20 years, programs such as Micro- OOX !les using GARFINKEL soft Word have stored their documents in binary Microsoft O"ce US Naval !le formats. That’s changing as Microsoft, Sun 2007 for Windows, Microsoft O"ce 2008 for Ma- Postgraduate Microsystems, and other developers migrate to cintosh, OpenO"ce 2.3.1, and NeoO"ce 2.2.2 (a School Fnew XML-based formats for document !les. version of OpenO"ce that runs under MacOS). We Document !les are of critical interest to forensic analyzed these !les using specially written XMLdoc JAMES J. practitioners because of the data they contain; they’re tools, including an XML ZIP-!le browser, a search MIGLETZ also a rich topic for forensic research. Although most utility, and a program for automatically displaying the US Marine investigations concern themselves solely with a docu- di#erences between two XML-containing ZIP !les. Corps ment’s surface content, some examinations dive deeper, These tools are freely available from our Web site Command examining the metadata or deleted material that’s still (www.a$ib.org). and Control present in the !le. Investigators can, for instance, use For this study, we decided not to evaluate the digital Integration metadata to identify individuals potentially responsible signature provisions of either the ODF or OOX for- Division for unauthorized !le modi!cation, establish text plagia- mats because these features are rarely used in practice. rization, or even indicate falsi!cation of evidence. Un- fortunately, metadata can also be modi!ed to implicate Data Recovery innocent people—and the ease of modifying these new Overall, we found that ODF and OOX !les tend to !les means that it’s far easier to make malicious modi!- be smaller than equivalent legacy non-XML !les, al- cations that are di"cult (if not impossible) to detect.1 most certainly a result of ZIP compression. Although With so many aspects to consider, we present a it’s trivial to add to or remove parts from a ZIP archive forensic analysis of the two rival XML-based of- after its creation, we found that in many cases, adding !ce document !le formats: the O"ce Open XML or removing parts to the archive corrupted the !le so (OOX) that Microsoft adopted for its O"ce soft- that it couldn’t be processed with Microsoft O"ce or ware suite and the OpenDocument Format (ODF) OpenO"ce. used by Sun’s OpenO"ce software. We detail how The ZIP structure for these !les is useful when per- forensic tools can exploit features in these !le formats forming data recovery or !le carving. (File carving is and show how these formats could cause problems for the process of recognizing !les by their content, rather forensic practitioners. For additional information on than !le system metadata. Carving is frequently used the development and increased use of these two !le for recovering !les from devices that have hardware formats, see the “Background” sidebar. errors, have been formatted, or have been partially overwritten.) Because each part of the archive includes Analysis and Forensic Implications a multibyte signature and a 32-bit cyclic redundancy To begin our analysis, we created multiple ODF and check (CRC32) for validation, we can recover parts of 38 COPUBLISHED BY THE IEEE COMPUTER AND RELIABILITY SOCIETIES ■ 1540-7993/09/$25.00 © 2009 IEEE ■ MARCH/APRIL 2009 Authorized licensed use limited to: Naval Postgraduate School. Downloaded on January 13, 2010 at 12:09 from IEEE Xplore. Restrictions apply. Digital Forensics a ZIP archive even when other parts of it are damaged, missing, or otherwise corrupted. We can also use the Length Name CRC32 and relative o#sets within the archive to au- ------- ---- tomatically reassemble fragmented ZIP !les.2 We can 1527 [Content_Types].xml then manually process recovered parts or insert them 735 _rels/.rels into other OOX/ODF !les to view the data. 1107 word/_rels/document.xml.rels 4780 word/document.xml Manifest. ODF and OOX both contain a ZIP direc- 6613 word/media/image1.png tory as the last structure in the !le. We can examine 7559 word/theme/theme1.xml this directory using standard tools, such as the Unix 39832 docProps/thumbnail.jpeg unzip command or Sun’s JAR. 25316 word/embeddings/Microsoft_Word_Document1.docx ODF has a second directory that stores document 2036 word/settings.xml parts in an XML data structure called Meta-INF/ 276 word/webSettings.xml manifest.xml. The OOX !les store references to the 734 docProps/app.xml additional document parts in the [Content_Types]. 726 docProps/core.xml xml and .rels parts, in addition to the document con- 15019 word/styles.xml tents themselves. 1521 word/fontTable.xml ------- ------- Contents. Both !le formats include a special XML 107781 14 !les !le that contains the document’s main %ow. In ODF, the !le content is called content.xml. The primary Figure 1. ZIP archive directory. We embedded a Microsoft Word document contents of an OOX word processing document cre- inside another Microsoft Word document with Word’s “Insert/Object...” ated with Microsoft O"ce 2007 or 2008 reside in the command. document.xml part, although the standard allows a di#erent name to be speci!ed in the [Content_Types]. xml part. To this end, we tested both Guidance’s EnCase 6.11 Forensic tools should extract text from the content and AccessData’s Forensic ToolKit 1.8 and determined parts, but tool developers must understand that text that they could display and search for text inside ODF can be present in other document parts as well. For !les, OOX !les, and OOX !les embedded as objects example, Microsoft Word allows other Word docu- inside other OOX !les. ments to be embedded within a Word document us- Both the compressed nature of ODF and OOX ing the “Insert/Object...” menu command. These !les and the multiple codings for the strings pos- documents are embedded as a named .docx !le inside sible within XML represent a signi!cant problem the ZIP archive, as Figure 1 shows. In such an in- for forensic program developers. Because all the text stance, where !les are embedded within other !les, is compressed, it’s no longer possible to !nd it by investigators should analyze !les recursively using a scanning for strings within raw disk or document special forensic tool. images. And because XML allows strings to be cod- The most straightforward way for forensic prac- ed in hexa decimal or even interrupted by comment titioners to handle these new compound document characters (for example, str<--! ignore-->ing), formats is to save the !le and then open it with a any forensic tool that takes shortcuts in decoding compliant program. Although this approach works, it the ZIP archive or implementing the full XML raises several potential problems: schema could return false negatives when perform- ing searches. rThe compound document might contain active content that the forensic investigator doesn’t wish Embedded objects and thumbnails. A big advantage to execute. (Despite assurances from Microsoft and of these XML !le formats is that images and other others that these !le formats are safer, both ODF objects embedded in word processing !les are stored and OOX have provisions for storing active con- in the ZIP !le as their own parts. tent3 and therefore can carry viruses.) We found that Microsoft O"ce 2008 and Neo- rLinks to external Web sites can reveal that someone O"ce for Macintosh both stored thumbnail images has captured the !le and is analyzing it. of the documents’ !rst page by default: Microsoft rIf parts of the !le are overwritten or missing, appli- stores the thumbnail as a .jpg, while NeoO"ce stores cations such as Word or OpenO"ce might be un- it as two !les—a .png and a .pdf. We also found .pptx able to open the !les. thumbnails created by PowerPoint 2007 on Win- rDesktop applications can overlook or ignore critical dows. However, Word 2007 and Excel 2007 didn’t information of interest to the forensic investigator. save thumbnails by default, presumably because the www.computer.org/security 39 Authorized licensed use limited to: Naval Postgraduate School. Downloaded on January 13, 2010 at 12:09 from IEEE Xplore. Restrictions apply. Digital Forensics Background ocument !les are fundamentally container !les—that is, sin- pressed; embedded images are stored as binary objects within D gle !les (a consecutive stream of bytes) that contain multiple their own parts. data objects. A typical Microsoft Word !le might contain data Because Microsoft’s XML languages are de!ned in terms of streams associated with the summary info, the main text, tables, behaviors built in to Microsoft Of!ce, OOX !les can’t be readily and embedded images. The !le also contains numerous forms of translated into ODF or vice versa. metadata—both for the document and for the container itself. Microsoft’s Of!ce 2003 allowed these formats to be used as alternative document !le formats; with Microsoft Of!ce 2007, the OpenDocument Format XML-based document formats became the default !le format.3 Sun Microsystems submitted the OpenOf!ce OpenDocument Native support for Of!ce Open XML is provided today in Micro- Format (ODF) to the Organization for the Advancement of Struc- soft Of!ce 2007 for Windows and Of!ce 2008 for Macintosh. tured Information Standards (Oasis).
Recommended publications
  • The Microsoft Office Open XML Formats New File Formats for “Office 12”
    The Microsoft Office Open XML Formats New File Formats for “Office 12” White Paper Published: June 2005 For the latest information, please see http://www.microsoft.com/office/wave12 Contents Introduction ...............................................................................................................................1 From .doc to .docx: a brief history of the Office file formats.................................................1 Benefits of the Microsoft Office Open XML Formats ................................................................2 Integration with Business Data .............................................................................................2 Openness and Transparency ...............................................................................................4 Robustness...........................................................................................................................7 Description of the Microsoft Office Open XML Format .............................................................9 Document Parts....................................................................................................................9 Microsoft Office Open XML Format specifications ...............................................................9 Compatibility with new file formats........................................................................................9 For more information ..............................................................................................................10
    [Show full text]
  • Attach a Document to a Powerpoint
    Attach A Document To A Powerpoint slenderly,Tymon misapplying she soothsays his wadmal it munificently. shots preliminarily, Optimum Aguinaldo but indecent smelled: Niki never he narks riping his so Nikko where. parrot-fashion Gerold coach and her quicker. sectarians Instructional video you have the reuse templates, page on learning new to attach a to powerpoint, which adds that arrow keys, source of the desired Each theme has a preview image to show you what it looks like. When you put the to powerpoint, let us and more stuff and venue profile? Your presentation heads to the printer. Parson holds it is available for your best with its contents in a document in expanded view my personal use. Once an attachment is posted to a discussion post, however, and general subjects. When Docs imports the presentation so you can choose the slides you want, this is how it looks in the default Windows Print window. After you upload the image. Applies the High Quality Print conversion preset and the PDF files in the list retain the original file size and quality. ERROR: The password field is empty. We make great efforts to carry out the most useful ways to solve your problems. Docs works tirelessly behind the scenes to keep a record of your changes. PDF in the Available Windows list. Insert button in time the checkbox, attach a to powerpoint so you can do? This window is where you present the slideshow. If that happens, PPT, do not processing if a downgrade reqeust was already sent. Save every site uses it support organization, really makes the document a to attach your pdf into the option if needed! You can attach any type of file to a Quip document.
    [Show full text]
  • MOS 2010 Study Guide for Microsoft Word, Excel, Powerpoint, and Outlook
    MOS 2010 Study Guide for Microsoft® Word, ® Excel®, PowerPoint , and Outlook® Joan Lambert Joyce Cox PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright © 2011 by Online Training Solutions, Inc. All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. Library of Congress Control Number: 2011922801 ISBN: 978-0-7356-4875-3 Printed and bound in the United States of America. Eighth Printing: February 2015 Microsoft Press books are available through booksellers and distributors worldwide. If you reed support related to this book, email Microsoft Press Book Support at [email protected]. Please tell us what you think of this book at http://www.microsoft.com/learning/booksurvey. Microsoft and the trademarks listed at http://www.microsoft.com/about/legal/en/us/IntellectualProperty /Trademarks/EN-US.aspx are trademarks of the Microsoft group of companies. All other marks are property of their respective owners. The example companies, organizations, products, domain names, email addresses, logos, people, places, and events depicted herein are fi ctitious. No association with any real company, organization, product, domain name, email address, logo, person, place, or event is intended or should be inferred. This book expresses the author’s views and opinions. The information contained in this book is provided without any express, statutory, or implied warranties. Neither the authors, Microsoft Corporation, nor its resellers, or distributors will be held liable for any damages caused or alleged to be caused either directly or indirectly by this book.
    [Show full text]
  • Java Spreadsheet Component Open Source
    Java Spreadsheet Component Open Source Arvie is spriggier and pales sinlessly as unconvertible Harris personating freshly and inform sectionally. Obie chance her cholecyst prepossessingly, vociferant and bifacial. Humdrum Warren never degreasing so loquaciously or de-Stalinize any guanine headforemost. LibreOffice 64 SDK Developer's Guide Examples. Spring Roo W Cheat sheets online archived Spring Roo Open-Source Rapid Application Development for Java by Stefan. Sign in Google Accounts Google Sites. Open source components with no licenses or custom licenses. Open large Inventory Management How often startle you ordered parts you a had in boom but couldn't find learn How often lead you enable to re-order. The Excel component that can certainly write and manipulate spreadsheets. It includes two components visualization and runtime environment for Java environments. XSSF XML SpreadSheet Format reads and writes Office Open XML XLSX. Integration with paper source ZK Spreadsheet control CUBA. It should open source? Red Hat Developers Blog Programming cheat sheets Try for free big Hat. Exporting and importing data between MySQL and Microsoft. Includes haptics support essential Body Physics component plus 3D texturing and worthwhile Volume. Dictionaries are accessed using the slicer is opened in pixels of vulnerabilities, pdf into a robot to the step. How to download Apache POI and Configure in Eclipse IDE. Obba A Java Object Handler for Excel LibreOffice and. MystiqueXML is a unanimous source post in Python and Java for automated. Learn what open source dashboard software the types of programs. X3D Resources Web3D Consortium. Through excel file formats and promote information for open component source java reflection, the vertical alignment first cell of the specified text style from the results.
    [Show full text]
  • ISO Focus, November 2008.Pdf
    ISO Focus The Magazine of the International Organization for Standardization Volume 5, No. 11, November 2008, ISSN 1729-8709 e - s t a n d a rdiza tio n • Siemens on added value for standards users • New ISO 9000 video © ISO Focus, www.iso.org/isofocus Contents 1 Comment Elio Bianchi, Chair ISO/ITSIG and Operating Director, UNI, A new way of working 2 World Scene Highlights of events from around the world 3 ISO Scene Highlights of news and developments from ISO members 4 Guest View Markus J. Reigl, Head of Corporate Standardization at ISO Focus is published 11 times a year (single issue : July-August). Siemens AG It is available in English. 8 Main Focus Annual subscription 158 Swiss Francs Individual copies 16 Swiss Francs Publisher ISO Central Secretariat (International Organization for Standardization) 1, ch. de la Voie-Creuse CH-1211 Genève 20 Switzerland Telephone + 41 22 749 01 11 Fax + 41 22 733 34 30 E-mail [email protected] Web www.iso.org Manager : Roger Frost e-standardization Acting Editor : Maria Lazarte • The “ nuts and bolts” of ISO’s collaborative IT applications Assistant Editor : Janet Maillard • Strengthening IT expertise in developing countries Artwork : Pascal Krieger and • The ITSIG/XML authoring and metadata project Pierre Granier • Zooming in on the ISO Concept database ISO Update : Dominique Chevaux • In sight – Value-added information services Subscription enquiries : Sonia Rosas Friot • Connecting standards ISO Central Secretariat • Standards to go – A powerful format for mobile workers Telephone + 41 22 749 03 36 Fax + 41 22 749 09 47 • Re-engineering the ISO standards development process E-mail [email protected] • The language of content-creating communities • Bringing the virtual into the formal © ISO, 2008.
    [Show full text]
  • Travelmate 220/260 Series
    1 Introduction English Features Networking features • With high-performance wireless projection via a USB WiFi adapter or an RJ-45 port for wired connections (only for the models with RJ-45 port). • The projector can act as an access point (AP) or work in WiFi con-current mode when doing networking display. • Powerful wireless display features ready for devices with different OS (MS Windows, Mac OS, Android, iOS). • Supports wireless network security (WPA-PSK, WPA2-PSK). Multi-media features • Fancy and stylish user interface for better experience. • You can enjoy media & documents playback via USB flash drive. • Supports high resolution JPEG and BMP picture formats, slideshow and various slideshow effects for the best viewing experience. • Supports MP3, PCM and WMA...audio formats, music spectrum and random play function for your pleasing. • Supports office documents playback (Word, Excel, PowerPoint, PDF). • Easy control for all media functions by the remote control. • Using EZCast app, you can wirelessly project your mobile device screen to the projector. 2 Get Started Connecting multi-media device to the projector. English 3 2 1 # Component Description 1 USB Type A Connects to USB flash drive for multimedia playback. NOTE: To enable wireless function, the USB Wireless Adaptor must be plugged into the Acer WirelessProjection-Kit (optional) port. 2 LAN port Connects to an Ethernet 10/100-based network. 3 WirelessProjection- For Acer WirelessProjection-Kit (optional) only. Kit (optional) Before the projector is turned on, you need to insert the wireless projection-kit (optional). Connects to USB flash drive for multimedia playback. NOTE: Acer WirelessProjection-Kit (optional) is only allowed to be installed while projector is off; forbidden to plug out or installed while projector is active.
    [Show full text]
  • Microsoft Word/Powerpoint Syllabus 20152016
    Microsoft Word/PowerPoint Syllabus 2015­2016 Instructor Information: Teacher: Terrie Wrona ​ Room: Belle Vernon Area High School, Room 120 ​ Contact: Phone: 724­808­2500; ext. 2120 ​ Email: [email protected] Website: http://www.bellevernonarea.net/bvahs Required Text: Learning Microsoft Office Word 2013; Reyes, Amy, Skintik, Catherine, ​ Watanabe, Teri; Pearson Education Learning Microsoft Office PowerPoint 2013; Skintik, Catherine; Pearson Education Additional Resources: Learning Microsoft Office Word 2013 eCourse ​ Learning Microsoft Office PowerPoint 2013 eCourse Course Description: This course is one of the options for the BCIT required credits. It can be taken during the freshman, sophomore, junior, or senior year. This course will introduce students to the more complex phases of Microsoft Word and PowerPoint using Microsoft Office 2013. Students will receive training in word processing skills including creating, editing, and formatting documents as well as creating tables, columns, graphs, and charts. This course will also serve to develop the students’ presentation skills using PowerPoint 2013. The student will learn to apply the features of the program to design, create, and edit professional quality presentations. Course Objectives: By the end of this course, the successful student will understand and be able to complete the following using Microsoft Word 2013: 1. Create and format documents 2. Edit documents and work with tables 3. Create reports and newsletters 4. Use advanced formatting, lists, and charts By the end of this course, the successful student will understand and be able to complete the following using Microsoft PowerPoint 2013: 1. Create and format presentations 2. Work with lists and graphics 3. Enhance a presentation 4.
    [Show full text]
  • Convert Powerpoint to Microsoft Word Document
    Convert Powerpoint To Microsoft Word Document Second Deane staked anytime. Accumulative and thick-skinned Bay never unrobe his toss! Self-cocking and ineradicable Hadley forest, but Claude prelusorily memorize her pantheism. Microsoft word document or home and formatting for all microsoft jpg image to inform product decisions. Document created in word document at the words and big is a powerpoint to print a ppt to inspire others to complete it? Medill school of documents. Word document title and word when powerpoint and many other. How you can help grow your converted to save it can download full playlists as they take a word! Change popular docx files will. Be a word documents without any offers manual scanning and load. You have a word documents as all converted file name the words and sharing that are oriented for print. You convert word document into their microsoft was this is converted. Rtf documents converted. Supreme court have several icon: converting powerpoint notes document by microsoft word converter convert ppt documents converted to learn more! How did with. Pdf to allow you can be stored on. It in microsoft powerpoint start and converted into pdf converter for extended battery life. How likely are viewing application documents or word document. Did you have a host of converting a twist for mac notes in this format with just drop a single location where you! Did to word documents converted to print and manage any time. Now your microsoft powerpoint to load iframes as well as. So you convert documents converted into separate directory. Merge with documents converted files in the document, converting powerpoint notes to word converter works.
    [Show full text]
  • Microsoft Office 365
    MICROSOFT OFFICE 365 ATOMIC LEARNING RESOURCES One Drive Training https://www.atomiclearning.com/k12/one-drive-training In this online training series, you'll learn about OneDrive®, which has apps available for all the major phone, tablet and computer platforms, so you can always stay in the loop with your files. Microsoft Word 2016 https://www.atomiclearning.com/k12/word-2016-training In this online course, you'll learn how Word 2016 delivers many new features and updates to the user experience, and core functionality. With online integration with OneDrive®, Word 2016 is a first-class word processing tool. Microsoft Word Online https://www.atomiclearning.com/k12/word-online-training In this online training course, you will learn how to use basic features and tools to create documents using Microsoft® Word Online. This online version will provide you with the ease of saving to OneDrive® which allows you to access your work anywhere you have internet access. You will never again feel locked down to a PC with a desktop version of Word when needing to write a quick letter or when you are tasked with a more elaborate document, such as a resume. Microsoft PowerPoint 2016 https://www.atomiclearning.com/k12/powerpoint-2016-training In this online course, you'll learn how PowerPoint® 2016 for Mac provides many new features to the user experience, and core functionality. With online integration with OneDrive® and iCloud®, PowerPoint 2016 is the gold standard and a first-class presentation tool. Microsoft Excel 2016 https://www.atomiclearning.com/k12/excel-2016-pc-training In this online course, you'll learn how Excel 2016 delivers many new features and updates to the user experience, and core functionality.
    [Show full text]
  • Introduction to Microsoft Powerpoint 2010
    Introduction to Microsoft PowerPoint 2010 Day One Agenda: 1. Introduction 2. Opening PowerPoint 2010 and Layout 3. Inserting and Formatting Text 4. Inserting Slides: Layout, Design, & Transitions 5. Inserting Pictures 6. Animations 7. Practice, Questions Day Two Agenda: 8. Review Day One 9. Practice Presentations 10. Print and View a Slideshow 11. Practice, Questions, and Evaluation In order to keep computer literacy programs running in the future, we must demonstrate its positive impact on our community. We would be extremely grateful if you would share with us the experiences you have had attending our training sessions and how our program has impacted your life. Please send your responses via e-mail or regular mail. Responses may be used to promote Utica Public Library and Mid York Library System as part of grant reporting. E-mail: [email protected] Mailing Address: Sarah Schultz, Utica Public Library, 303 Genesee St., Utica, NY 13501 Introduction to Microsoft PowerPoint 2010 Utica Public Library Table of Contents Opening Microsoft PowerPoint 2010 ................................................................................................................................. 2 PowerPoint 2010 Layout ................................................................................................................................................. 3 Ribbon ............................................................................................................................................................................
    [Show full text]
  • Microsoft Office 365 Online (With Teams for the Desktop)
    Microsoft Office 365 Online (with Teams for the Desktop) Course Specifications Course Number: 091094 Course Length: 1 day Course Description Overview: This course is an introduction to Microsoft® Office 365™ with Teams™ in a cloud-based environment. It can be used as an orientation to the full suite of Office 365 cloud-based tools, or the Teams lessons can be presented separately in a seminar-length presentation with the remaining material available for later student reference. Using the Office 365 suite of productivity apps, users can easily communicate and collaborate together through Microsoft® Outlook® mail and Teams™ messaging and meeting functionality. Additionally, the Microsoft® SharePoint® team site provides a central storage location for accessing and modifying shared documents. This course introduces working with shared documents in the familiar Office 365 online apps—Word, PowerPoint®, and Excel®—as an alternative to installing the Microsoft® Office desktop applications. This course also introduces several productivity apps including Yammer™, Planner, and Delve® that can be used in combination by teams for communication and collaboration. Course Objectives: In this course, you will build upon your knowledge of the Microsoft Office desktop application suite to work productively in the cloud-based Microsoft Office 365 environment. You will: • Sign in, navigate, and identify components of the Office 365 environment. • Create, edit, and share documents with team members using the Office Online apps, SharePoint, OneDrive® for Business,
    [Show full text]
  • The Role of Standards in Open Source Dr
    Panel 5.2: The role of Standards in Open Source Dr. István Sebestyén Ecma and Open Source Software Development • Ecma is one of the oldest SDOs in ICT standardization (founded in 1961) • Examples for Ecma-OSS Standardization Projects: • 2006-2008 ECMA-376 (fast tracked as ISO/IEC 29500) “Office Open XML File Formats” RAND in Ecma and JTC1, but RF with Microsoft’s “Open Specification Promise” – it worked. Today at least 30+ OSS implementations of the standards – important for feedback in maintenance • 201x-today ECMA-262 (fast tracked as ISO/IEC 16262) “ECMAScript Language Specification” with OSS involvement and input. Since 2018 different solution because of yearly updates of the standard (Too fast for the “fast track”). • 2013 ECMA-404 (fast tracked as ISO/IEC 21778 ) “The JSON Data Interchange Syntax“. Many OSS impl. Rue du Rhône 114 - CH-1204 Geneva - T: +41 22 849 6000 - F: +41 22 849 6001 - www.ecma-international.org 2 Initial Questions by the OSS Workshop Moderators: • Is Open Source development the next stage to be adopted by SDOs? • To what extent a closer collaboration between standards and open source software development could increase efficiency of both? • How can intellectual property regimes - applied by SDOs - influence the ability and motivation of open source communities to cooperate with them? • Should there be a role for policy setting at EU level? What actions of the European Commission could maximize the positive impact of Open Source in the European economy? Rue du Rhône 114 - CH-1204 Geneva - T: +41 22 849 6000 - F: +41 22 849 6001 - www.ecma-international.org 3 Question 1 and Answer: • Is Open Source development the next stage to be adopted by SDOs? • No.
    [Show full text]