Protection and Communication Abstractions for Web Browsers in Mashupos

Total Page:16

File Type:pdf, Size:1020Kb

Protection and Communication Abstractions for Web Browsers in Mashupos Protection and Communication Abstractions for Web Browsers in MashupOS Helen J. Wang Xiaofeng Fan Jon Howell Collin Jackson Microsoft Research Microsoft Research Microsoft Research Stanford University Redmond, WA, USA Redmond, WA, USA Redmond, WA, USA Palo Alto, CA, USA [email protected] [email protected] [email protected] [email protected] ABSTRACT evolved to be a multi-principal operating environment where mu- Web browsers have evolved from a single-principal platform on tually distrusting Web sites (as principals) interact programmati- which one site is browsed at a time into a multi-principal plat- cally in a single page on the client side, sharing the underlying form on which data and code from mutually distrusting sites in- browser resources. This resembles the PC operating environment teract programmatically in a single page at the browser. Today’s where mutually distrusting users share host resources. “Web 2.0” applications (or mashups) offer rich services, rivaling However, unlike PCs that utilize multi-user operating systems for those of desktop PCs. However, the protection and communication resource sharing, protection, and management, today’s browsers do abstractions offered by today’s browsers remain suitable only for not employ any operating system abstractions, but provide just a a single-principal system—either no trust through complete isola- limited all-or-nothing trust model and protection abstractions suit- tion between principals (sites) or full trust by incorporating third able only for a single-principal system: There is either no trust party code as libraries. In this paper, we address this deficiency across principals through complete isolation or full trust through by identifying and designing the missing abstractions needed for incorporating third party code as libraries. Consequently, Web pro- a browser-based multi-principal platform. We have designed our grammers are forced to make tradeoffs between security and func- abstractions to be backward compatible and easily adoptable. We tionality, and oftentimes sacrifice security for functionality. have built a prototype system that realizes almost all of our abstrac- In the MashupOS project, we aim to design and build a browser- tions and their associated properties. Our evaluation shows that our based multi-principal operating system. Among the myriad of op- abstractions make it easy to build more secure and robust client- erating system issues, we focus on the most imminent needs of side Web mashups and can be easily implemented with negligible today’s browsers: abstractions for protection and communication. performance overhead. The goal of protection is to prevent one principal from compro- mising the confidentiality and integrity of other principals, while communication allows them to interact in a controlled manner. Categories and Subject Descriptors We follow the principles below in designing our abstractions for D.4.6 [Operating Systems]: Security and Protection Web programmers: • Match all common trust levels: We must understand all the General Terms common trust levels between Web content providers and in- Design, Security, Standardization tegrators and aim to provide abstractions matching these lev- els of trust. Otherwise, Web programmers would face mak- Keywords ing tradeoffs among trust levels, either trusting more, and sacrificing security, or trusting less, and losing functionality. Browser, Web, same-origin policy, protection, communications, se- curity, multi-principal OS, abstractions • Strike a balance between ease-of-use and security: One might argue that a system is either secure or insecure and 1. INTRODUCTION there should be no middle ground. This may be true for designing a security system like an authentication system, Web browsers are becoming the single stop for everyone’s com- but not true when designing abstractions for programmers. puting needs including information access, personal communica- A rigid set of abstractions that tie programmers’ hands and tions, office tasks, and e-commerce. Today’s Web applications syn- limit flexibility for the purpose of better security often has thesize the world of data and code, offering rich services through a short life span, since programmers can build up libraries Web browsers and rivaling those of desktop PCs. Browsers have on the rigid interfaces to make their lives easy, resulting in a de facto abstraction for all programmers. It would be bet- ter for abstraction designers to design those abstractions with security in mind. Our goal here is to provide a full set of ab- 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 stractions and enable programmers to build robust and secure not made or distributed for profit or commercial advantage and that copies services that match their trust expectations (see above bullet), bear this notice and the full citation on the first page. To copy otherwise, to rather than to make it impossible for programmers to shoot republish, to post on servers or to redistribute to lists, requires prior specific themselves in the foot. permission and/or a fee. SOSP’07, October 14–17, 2007, Stevenson, Washington, USA. • Easy adoption and no unintended behaviors: Allowing easy Copyright 2007 ACM 978-1-59593-591-5/07/0010 ...$5.00. adoption is paramount in our abstraction design. We must ensure that our abstractions allow programmers to provide then describe a new access control policy that mashup authors are fallback mechanisms when Web pages using them are ren- demanding through existing proposals. dered by legacy browsers. We also must ensure that there are no undesirable interactions between new services and old 2.1 The Same-Origin Policy and the services in the new browser environment where our abstrac- All-or-Nothing Trust Model tions are supported. The same-origin Policy (SOP) governs the access control on to- day’s browsers. The SOP prevents documents or scripts loaded By analyzing the trust relationship between content providers from one origin from getting or setting properties of documents and integrators, we identify four types of content that require sup- from a different origin [38]. (The origin that a script is loaded is port from the Web and browsers: (1) isolated content that is in- the origin of the document that contains the script rather than the tended to be completely isolated from other sites (domains), (2) origin that hosts the script.) Two pages have the same origin if access-controlled content that is isolated but allows message pass- the protocol, port (if given), and host are the same for both pages. ing across domains to give mediated access to the content, (3) open Each browser window, <frame>, or <iframe> is a separate doc- content that allows any domain to access and integrate as the do- ument, and each document is associated with an origin. The SOP main’s own content, and (4) unauthorized content that assumes no policy concerns three browser resources: cookies, the HTML doc- privileges of any domain. Existing browser abstractions support ument tree, and remote store access. In more detail, a site can only only isolated content with the <frame> abstraction and open con- sets its own cookie and a cookie is sent to only the site that sets tent with the <script> abstraction, resulting in an all-or-nothing the cookie along with HTTP requests to that site. Two documents trust model. from different origins cannot access each other’s HTML document We propose abstractions for the missing content types and trust using the Document Object Model (DOM) which is a platform- relationships. We advocate unauthorized content to be a funda- and language-neutral interface that will allow programs and scripts mental addition to today’s Web content provisioning. We introduce to dynamically access and update the content, structure and style <Sandbox> and <OpenSandbox> abstractions and a provider- of documents [13]. A script can access its document origin’s re- browser protocol to enable content providers to publish and in- mote data store using the XMLHttpRequest object, which issues tegrators to consume unauthorized content without liability and an asynchronous HTTP request to the remote server [43]. (XML- overtrusting, providing both security and ease in creating client HttpRequest is the cornerstone of the AJAX programming.) The mashups. Such support can also fundamentally combat Cross Site SOP requires a script to issue XMLHttpRequest to only its docu- Scripting attacks (a prominent threat in today’s Web and a con- ment origin. sequence of the all-or-nothing trust model) while allowing the For example, an <iframe> sourced with ØØÔ»»º Ó Ñ can- richest possible third party content. We have also proposed the not access any HTML DOM elements from another <iframe> <ServiceInstance> abstraction for isolation, fault containment, sourced with ØØÔ»» Ó Ñ and vice versa. a.com’s scripts can and as the unit of resource allocation and CommRequest for cross- issue XMLHttpRequests to only a.com, but not to b.com. HTTP domain communications unifying recent proposals. requests to a.com send only cookies that are set by a.com. We have designed these new abstractions to be backward com- A document may contain <script> elements from different patible and free of undesirable interactions with legacy browsers domains. Such third party scripts are treated as libraries that run as and legacy content. Our prototype implementation and evaluation the document’s origin rather than the scripts’ origins and can access demonstrate that the abstractions can be practically integrated into all of the document’s resources. For example, ×ÖÚ º modern browser software with negligible overhead. ØÑÐ may contain the markup <script src=‘http://b.com/lib.js’>, For the rest of the paper, we first give background in Section 2. which allows Ðº× to access a.com’s HTML DOM objects, In Section 3, we describe browser resources and define MashupOS cookies and data through XMLHttpRequest.
Recommended publications
  • Administrator's Guide
    Trend Micro Incorporated reserves the right to make changes to this document and to the product described herein without notice. Before installing and using the product, review the readme files, release notes, and/or the latest version of the applicable documentation, which are available from the Trend Micro website at: http://docs.trendmicro.com/en-us/enterprise/scanmail-for-microsoft- exchange.aspx Trend Micro, the Trend Micro t-ball logo, Apex Central, eManager, and ScanMail are trademarks or registered trademarks of Trend Micro Incorporated. All other product or company names may be trademarks or registered trademarks of their owners. Copyright © 2020. Trend Micro Incorporated. All rights reserved. Document Part No.: SMEM149028/200709 Release Date: November 2020 Protected by U.S. Patent No.: 5,951,698 This documentation introduces the main features of the product and/or provides installation instructions for a production environment. Read through the documentation before installing or using the product. Detailed information about how to use specific features within the product may be available at the Trend Micro Online Help Center and/or the Trend Micro Knowledge Base. Trend Micro always seeks to improve its documentation. If you have questions, comments, or suggestions about this or any Trend Micro document, please contact us at [email protected]. Evaluate this documentation on the following site: https://www.trendmicro.com/download/documentation/rating.asp Privacy and Personal Data Collection Disclosure Certain features available in Trend Micro products collect and send feedback regarding product usage and detection information to Trend Micro. Some of this data is considered personal in certain jurisdictions and under certain regulations.
    [Show full text]
  • (12) United States Patent (10) Patent No.: US 7,921.461 B1 Golchikov Et Al
    USOO7921461B1 (12) United States Patent (10) Patent No.: US 7,921.461 B1 Golchikov et al. (45) Date of Patent: Apr. 5, 2011 (54) SYSTEMAND METHOD FOR ROOTKIT S.8. 53 A. : SS Eyrdseter . et. al.. ............... 7 1. DETECTION AND CURE 2004/O181561 A1 9, 2004 Knox et al. 2005, 0021994 A1 1/2005 Barton et al. (75) Inventors: Andrey V. Golchikov, Moscow (RU); 2005/0278788 A1 12/2005. Jindal et al. Andrey V. Sobko, Moscow (RU) 2006/0031673 A1 2/2006 Becket al. .................... T13, 164 2006.0053270 A1* 3, 2006 Dunn et al. 712/13 (73) Assignee: Kaspersky Lab, ZAO, Moscow (RU) 2.99. A. : 29: RSU ca.tal. ... 2. (*) Notice: Subject to any disclaimer, the term of this 2008.0034429 A1 ck 2/2008 Schneider ....................... T26/23 patent is extended or adjusted under 35 OTHER PUBLICATIONS U.S.C. 154(b) by 1115 days. Simon Baker et al. "Checking Microsoft Windows(R) Systems for (21) Appl. No.: 11/623,364 Signs of Compromise', Oct. 28, 2005, version 1.3.4, pp. 1-18.* y x- - - 9 * cited by examiner (22) Filed: Jan. 16, 2007 Primary Examiner — Farid Homayoumehr (51) Int. Cl. Assistant Examiner — Michael Guirguis ge. 5.b4. 3:08: (74) Attorney, Agent, or Firm — Bardmesser Law Group GSB 23/00 (2006.01) (57) ABSTRACT (52) U.S. Cl. ................... 726/23: 726/24; 726/25; 713/2 ASVstem. method and computer program product for SVStem (58) Field of Classification Search .................... 726/26, ystem, computer program pr ySt. 726/23 25: 713/2 for detecting a rootkit on a computer having an operating S lication file f let h his s system, including a native application in ring 0 which, when ee appl1cauon Ille Ior complete searcn n1Story.
    [Show full text]
  • Groove Gfs Browser Helper Grooveshellextensions.Dll
    Groove gfs browser helper grooveshellextensions.dll Continue Equipment Info maakt gebruik van biscuits Equipment Information onderdeel van DPG Media. Onze sites en applications gebruiken cookies, JavaScript en vergelijkbare technologie onder andere om je een optimale gebruikerservaring te bieden. Ook kunnen we hierdoor het gedrag van bezoekers vastleggen en analyseren, en deze informatie toevoegen aan bezoekersprofielen. Biscuits kunnen worden gebruikt om Op Equipment Advertising information those Tonen en artikelen aan te bevelen die aansluiten op je interesses. Ook derden kunnen je internetgedrag volgen, zoals bijvoorbeeld het geval - is a bij built-in video van YouTube. Biscuits kunnen gebruikt worden om op sites van derden relevantenties te tonen. Dankzij cookies van derde partijen kun je daarnaast informatie delen via social media, zoals Twitter en Facebook. Meer informatie hierover vind je op hardware.info/extra/cookies. Om pagina's op Hardware Info te kunnen bekijken, moet je de cookies accepteren door op 'Ja, ik accepteer cookies' te klikken. The original GrooveShellExtensions.dll file is a software component of Microsoft Office 2007 at Microsoft. GrooveShellExtensions.dll is an addition to Microsoft Browser Helper Object (BHO) for Microsoft Internet Explorer. Known as Groove Folder Sync, this allowed Office 2007 users to access Groove files in the IE web browser window and helped synchronize updated files. It included a contextual menu. His location was C: Files of the Microsoft Office-Office12-GrooveShellExtensions.dll. No reference to Office14 or above can be found, indicating that it has not been installed since Office 2010 or later. The Groove in Office 2007 product allows users to collaborate by sharing workspaces synchronized through relay servers with any other user they're invited to join the workspace.
    [Show full text]
  • ERNW Newsletter 31 / June 2010 Secure Configuration of Microsoft
    ERNW Newsletter 31 / June 2010 Dear Partners, dear Colleagues, Welcome to the 31th edition of the ERNW Newsletter with the title: Secure Configuration of Microsoft Internet Explorer, Version 8 Version 1.0, 11th of June 2010 By: Enno Rey ([email protected]) Christopher Werny ([email protected]) Oliver Röschke ([email protected]) Abstract This newsletter evaluates configuration options, reflecting security and possible usability impact, incorporating typical large scale enterprise usage of browser based content. The evaluation was done for a globally operating enterprise. Note We provide some supporting files, namely: some regfiles containing the settings we recommended for the given environment. Use at your own risk and only if you fully understand the impact! an XLS with the recommended settings, based on the Microsoft XLS doc on GPO settings. miscellaneous stuff, e.g. an XLS with some documentation on potentially needed CLSIDs. A ZIP file with these can be found at http://www.ernw.de/download/ernw_nl_31_ie8config_supporting_docs.zip Disclaimer: the recommended settings are deployed in a sufficiently large global network. So they "work in production". Still, your mileage might vary. Please use the stuff cautiously. Any use is at your own risk. Definition – Umsetzung – Kontrolle 1 1 INTRODUCTION ............................................................................................. 5 1.1 Project Goals ............................................................................................................ 5 1.2 Technical goals ........................................................................................................
    [Show full text]
  • Building Anti-Phishing Browser Plug-Ins: an Experience Report
    Building Anti-Phishing Browser Plug-Ins: An Experience Report Thomas Raffetseder, Engin Kirda, and Christopher Kruegel Secure Systems Lab, Technical University of Vienna {tr,ek,chris}@seclab.tuwien.ac.at Abstract stolen. These credentials are typically used to login into the online banking web site and to transfer money to the at- Phishing is an online identity theft that aims to steal tacker’s bank account. Although phishing is a simple social sensitive information such as user names, passwords, and engineeringattack, it has provento be surprisingly effective. credit card numbers. Although phishing is a simple social Hence, the number of phishing scams is continuing to grow, engineering attack, it has proven to be surprisingly effec- and the costs of the resulting damages is increasing. For tive. Hence, the number of phishing scams is continuing example, the Anti-Phishing Working Group received over to grow, and the costs of the resulting damages is increas- 35,000 unique phishing reports in November 2006, com- ing. Researchers as well as the IT industry have identified pared to around 7,000 in November of the year before [2]. the urgent need for anti-phishing solutions and recently, a Figure 1 shows a phishing email that targets the cus- number of solutions to mitigate phishing attacks have been tomers of a U.S. bank. The attackers have imitated the look proposed. Several of these approaches are browser plug- and feel of the Bank of America online banking web site ins. with the aim of fooling users into believing that the mail In 2005, we implemented a Firefox anti-phishing is authentic.
    [Show full text]
  • Security Analysis of Browser Extension Concepts
    Saarland University Faculty of Natural Sciences and Technology I Department of Computer Science Bachelor's thesis Security Analysis of Browser Extension Concepts A comparison of Internet Explorer 9, Safari 5, Firefox 8, and Chrome 14 submitted by Karsten Knuth submitted January 14, 2012 Supervisor Prof. Dr. Michael Backes Advisors Raphael Reischuk Sebastian Gerling Reviewers Prof. Dr. Michael Backes Dr. Matteo Maffei Statement in Lieu of an Oath I hereby confirm that I have written this thesis on my own and that I have not used any other media or materials than the ones referred to in this thesis. Saarbr¨ucken, January 14, 2012 Karsten Knuth Declaration of Consent I agree to make both versions of my thesis (with a passing grade) accessible to the public by having them added to the library of the Computer Science Department. Saarbr¨ucken, January 14, 2012 Karsten Knuth Acknowledgments First of all, I thank Professor Dr. Michael Backes for giving me the chance to write my bachelor's thesis at the Information Security & Cryptography chair. During the making of this thesis I have gotten a deeper look in a topic which I hope to be given the chance to follow up in my upcoming academic career. Furthermore, I thank my advisors Raphael Reischuk, Sebastian Gerling, and Philipp von Styp-Rekowsky for supporting me with words and deeds during the making of this thesis. In particular, I thank the first two for bearing with me since the release of my topic. My thanks also go to Lara Schneider and Michael Zeidler for offering me helpful advice.
    [Show full text]
  • Protecting Browsers from Extension Vulnerabilities
    Protecting Browsers from Extension Vulnerabilities Adam Barth Adrienne Porter Felt Prateek Saxena Aaron Boodman Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2009-185 http://www.eecs.berkeley.edu/Pubs/TechRpts/2009/EECS-2009-185.html December 18, 2009 Copyright © 2009, by the author(s). All rights reserved. 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 for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission. Acknowledgement We would like to thank Nick Baum, Erik Kay, Collin Jackson, Matt Perry, Dawn Song, David Wagner, and the Google Chrome Team. This work is partially supported by the Air Force Office of Scientific Research under MURI Grant No. 22178970-4170. Protecting Browsers from Extension Vulnerabilities Adam Barth, Adrienne Porter Felt, Prateek Saxena Aaron Boodman University of California, Berkeley Google, Inc. fabarth, afelt, [email protected] [email protected] Abstract browser’s full privileges. If an attacker can exploit an ex- tension vulnerability, the attacker can usurp the extension’s Browser extensions are remarkably popular, with one in broad privileges and install malware on the user’s machine. three Firefox users running at least one extension. Although At this year’s DEFCON, Liverani and Freeman presented well-intentioned, extension developers are often not security attacks against a number of popular Firefox extensions [23].
    [Show full text]
  • Netiq Securelogin 8.5 Service Pack 3 Release Notes September 2017
    NetIQ SecureLogin 8.5 Service Pack 3 Release Notes September 2017 NetIQ SecureLogin 8.5 Service Pack 3 (SP3) enhances the product capability and resolves several previous issues. Many of these improvements were made in direct response to suggestions from our customers. We thank you for your time and valuable input. We hope you continue to help us ensure that our products meet all your needs. You can post feedback in the NetIQ SecureLogin forum on NetIQ Communities, our online community that also includes product information, blogs, and links to helpful resources. The documentation for this product and the latest Release Notes are available on the NetIQ website in HTML and PDF formats on a page that does not require you to log in. If you have suggestions for documentation improvements, click comment on this topic at the bottom of any page in the HTML version of the documentation posted at the NetIQ SecureLogin documentation page. To download this product, see the NetIQ Downloads website. Section 1, “What’s New?,” on page 1 Section 2, “System Requirements,” on page 3 Section 3, “Installing or Upgrading,” on page 3 Section 4, “Known Issues,” on page 3 Section 5, “Legal Notices,” on page 5 1 What’s New? This release includes the following: Section 1.1, “Software Fixes,” on page 1 1.1 Software Fixes This release includes the following software fixes: Section 1.1.1, “Smart Card Pin Auto-fill Does Not Work For Second Application,” on page 2 Section 1.1.2, “Performance Issue During Smart Card Pin Auto-fill While Using .Net Applications,”
    [Show full text]
  • Atc Proceedings
    Behavior-based Spyware Detection Engin Kirda and Christopher Kruegel Secure Systems Lab Technical University Vienna {ek,chris}@seclab.tuwien.ac.at Greg Banks, Giovanni Vigna, and Richard A. Kemmerer Department of Computer Science University of California, Santa Barbara {nomed,vigna,kemm}@cs.ucsb.edu Abstract damage or to spread to other systems. Instead, spyware Spyware is rapidly becoming a major security is- programs monitor the behavior of users and steal private sue. Spyware programs are surreptitiously installed on a information, such as keystrokes and browsing patterns. user’s workstation to monitor his/her actions and gather This information is then sent back to the spyware dis- private information about a user’s behavior. Current anti- tributors and used as a basis for targeted advertisement spyware tools operate in a way similar to traditional anti- (e.g., pop-up ads) or marketing analysis. Spyware pro- virus tools, where signatures associated with known spy- grams can also “hijack” a user’s browser and direct the ware programs are checked against newly-installed ap- unsuspecting user to web sites of the spyware’s choos- plications. Unfortunately, these techniques are very easy ing. Finally, in addition to the violation of users’ privacy, to evade by using simple obfuscation transformations. spyware programs are also responsible for the degrada- This paper presents a novel technique for spyware de- tion of system performance because they are often poorly tection that is based on the characterization of spyware- coded. like behavior. The technique is tailored to a popular A number of anti-spyware products, whose goal is the class of spyware applications that use Internet Explorer’s identification and removal of unwanted spyware, have Browser Helper Object (BHO) and toolbar interfaces to been developed.
    [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]
  • Behavior-Based Spyware Detection
    Behavior-based Spyware Detection Engin Kirda and Christopher Kruegel Secure Systems Lab Technical University Vienna {ek,chris}@seclab.tuwien.ac.at Greg Banks, Giovanni Vigna, and Richard A. Kemmerer Department of Computer Science University of California, Santa Barbara {nomed,vigna,kemm}@cs.ucsb.edu TECHNICAL REPORT Abstract Spyware is rapidly becoming a major security issue. Spyware programs are surreptitiously installed on a user’s workstation to monitor his/her actions and gather private information about a user’s behavior. Current anti-spyware tools operate in a way similar to traditional anti-virus tools, where signatures associated with known spyware programs are checked against newly-installed applications. Unfortunately, these techniques are very easy to evade by using simple obfuscation transformations. This paper presents a novel technique for spyware detection that is based on the characterization of spyware-like behavior. The technique is tailored to a popular class of spyware applications that use Internet Ex- plorer’s Browser Helper Object (BHO) and toolbar interfaces to monitor a user’s browsing behavior. Our technique uses a composition of static and dynamic analysis to determine whether the behavior of BHOs and toolbars in response to simulated browser events is to be considered mali- cious. The evaluation of our technique on a representative set of spyware samples shows that it is possible to reliably identify malicious components using an abstract behavioral characterization. Keywords: spyware, malware detection, static analysis, dynamic analy- sis. 1 Introduction Spyware is rapidly becoming one of the major threats to the security of Inter- net users [16, 19]. A comprehensive analysis performed by Webroot (an anti- spyware software producer) and Earthlink (a major Internet Service Provider) 1 showed that a large portion of Internet-connected computers are infected with spyware [1], and that, on average, each scanned host has 25 different spyware programs installed [6].
    [Show full text]
  • Open Mobile for Windows Ipass Open Mobile™ Makes Secure, Simple and Effective Network Access a Reality
    2013/12/11 18:37 1/87 om_windows_admin_guide Open Mobile for Windows iPass Open Mobile™ makes secure, simple and effective network access a reality. No matter where work takes you, iPass Open Mobile provides on-demand global connectivity to the corporate network through Mobile Broadband (3G), Wi-Fi, Ethernet, and dial-up around the world. Open Mobile administrators can centrally manage policies for access and security, allowing IT staff to enforce different actions based on specific events occurring on a user’s system and control how users connect. iPass Open Mobile can be customized to automatically launch and monitor other programs such as VPNs, personal firewalls, anti-virus applications, and Web browsers. This functionality ensures a secure and controlled session to address the critical requirements of today’s IT departments. As an administrator, you will use the Open Mobile Portal to configure your Open Mobile profiles, test, and then deploy clients to your user base. For more information on the Open Mobile Portal, see the Open Mobile Portal Guide. You can also use Open Mobile Portal to run reports on your user base, usage patterns, and client deployment. Topics ● Architecture ● Installation ● Profiles ● User Interface ● Connectivity ● Account Definitions ● Branding ● VPN Integration ● Usage Policies ● Endpoint Security ● Event Actions ● Quick Launch ● News and Messaging ● Windows Logon Processing ● Connect Before Logon ● Login Assist ● Run Once Packaging ● Custom Profile Attachments ● Connection Quality Test ● ODF Wizard ● Updating ● Support Open Mobile Help - http://help-dev.ipass.com/ Last update: 2013/02/05 22:21 wiki:ebook http://help-dev.ipass.com/doku.php?id=wiki:ebook Latest Release Documents ● Open Mobile 2.4.x for Windows Quick Start Guide ● Open Mobile 2.4.2 for Windows Release Notes ● List of Supported Mobile Broadband Devices Previous Release Documents Open Mobile for Windows Printable Admin Guide The Open Mobile for Windows Printable Admin Guide is not an interactive PDF.
    [Show full text]