See No Evil: Evasions in Honeymonkey Systems

Total Page:16

File Type:pdf, Size:1020Kb

See No Evil: Evasions in Honeymonkey Systems See No Evil: Evasions in Honeymonkey Systems Brendan Dolan-Gavitt & Yacin Nadji May 7, 2010 Abstract tacks can no longer be found by using honeypots that host vulnerable network services and moni- Client-side attacks have emerged in recent years tor for signs of compromise. Instead, researchers to become the most popular means of propagat- have proposed using honeyclients, which actively ing malware. In order to keep up with this new seek out malicious content on the web, to find wave of web-based malware, companies such as previously unknown client-side attacks. Google routinely crawl the web, feeding suspi- We note in passing that, like detection of mali- cious pages into virtual machines that emulate cious software, detection of malicious web pages client systems (known as honeymonkeys or hon- is theoretically undecidable. We provide a proof eyclients). In this paper, we will demonstrate of this fact, in the spirit of Fred Cohen [1], in that although this approach has been successful Appendix A. However, such theoretical impos- to date, it is vulnerable to evasion by attackers: sibility need not deter us; just as a large indus- by guarding exploit code with client-side checks try has grown up around virus detection, hon- to determine whether a visitor is a human or eyclients are in widespread use today, and it is an automated system, attackers can ensure that both useful and necessary to consider practical only human users are exploited, causing the page evasions against them. to look benign when viewed by a honeyclient. Just as honeypots can be classified as high- or Our 13 evasions, which include both observa- low- interaction, so too can honeyclients be cat- tional and interactive proofs of humanity, are egorized based on the extent to which they em- able to easily distinguish between honeyclients ulate a full end user system. HoneyMonkey [14] and human victims. We evaluate the strengths and the MITRE Honeyclient [8], which are both and weaknesses of these evasions, and speculate high-interaction honeyclients, use a full virtual on even more powerful attacks and defenses. machine with a web browser to visit potentially malicious sites; if the visit results in a persis- 1 Introduction tent change to the state of the VM outside the browser, one can conclude that a successful at- Attacks against end users have undergone a dra- tack has occurred. By contrast, low-interaction matic shift in the past several years, moving from honeyclients such as honeyc [13] merely emulate attacks against listening network services to at- a full browser, and use heuristics to detect at- tacks on client software such as browsers and tacks rather than monitoring for changes in the document viewers. These changes have created state of the OS. a need for new defensive tactics. Many new at- Honeyclients have recently gained wide use in 1 the Google Safe Browsing API [3]. As Google on the attacker, or run the risk of alerting the crawls the web, it uses heuristics to detect poten- user. By contrast, many of the evasions we de- tially malicious web sites. These sites are then scribe are transparent to the user and do not fed to a custom honeyclient to verify that they harm the attacker's chances of success. are, in fact, malicious [11]. If a web page is found to host attack code, users who attempt to visit the page from Google's search results are pre- 3 Methodology sented with the warning shown in Figure 1. The Honeyclients and honeypots are two similar so- user must ignore this warning to view the poten- lutions to fundamentally different problems. A tially malicious page. honeypot attempts to capture push-based infec- Due to the prevalence of client-side attacks tion, malware that is forced onto unsuspecting and the increasing use of honeyclients to de- servers. Once a server becomes infected, it fur- tect them, a likely next step for attackers is thers the campaign by pushing its infection on to to consider honeyclient evasions | techniques other hosts. A honeyclient, however, attempts to that cause a web page to exhibit benign behavior capture pull-based infection, which requires some when visited by a honeyclient while still exploit- human involvement. ing real users. In this project, we will present a By detecting whether a client is a human or number of such evasions, assess their utility to a honeyclient we can mount attacks on humans attackers, and consider possible defenses honey- only, nullifying honeyclients as a tool for analy- clients can use to counter our attacks. sis. To demonstrate these attacks, we have de- signed and implemented a reverse Turing test 2 Related Work that looks for a variety of features that would most likely be present in a true human client. In Honeypots have long been used to detect and the interest of a conservative analysis, we have analyze novel attacks. Efforts such as the Hon- limited ourselves to ourselves to legal constructs eynet Project [12] and numerous academic pa- in common languages seen on the web, such as pers [10, 6] have described the use of both real HTML, JavaScript, Flash and Java. Our ap- and virtual machines to pick up on network- proach precludes, for example, the use of a secu- based attacks on vulnerable services. As the rity flaw in Flash to implement our reverse Tur- use of honeypots became more common, evasion ing test. This conservative approach also means techniques were developed [5, 7] that used tech- that our evasions cannot be countered by patch- niques such as virtual machine detection to pre- ing known client-side flaws. If our features deter- vent executing in a honeypot environment. As mine a client is a human, the exploit is launched. attacks shifted to the client side, honeyclients Otherwise, the site executes only benign code. were proposed as a means of detecting attacks. We have ranked our features by considering Systems such as Strider HoneyMonkey [14] use the following categories: virtual machines running a vulnerable version In- 1. How difficult is the feature to counter? ternet Explorer to detect malicious sites. Despite the widespread use of honeyclients, 2. How noticeable is the feature to a human honeyclient evasion has received little attention client? in academic literature. Although Wang et al. discusses evasions, the attacks they consider are 3. How costly is the feature's implementation either easy to counter, impose a significant cost for an attacker? 2 Figure 1: Google Malicious Site Warning { Does the attack incur false positives by 4 Attacks rejecting real humans? { Does it increase the time required to Our attacks fall into two different categories: execute the attack? state-based and behavior-based. State-based at- tacks query the client's state to infer information This ranking can be used by an attacker to de- about the user. For example, if the browser has termine the features to be used, and the order recently visited sites like Facebook and Twitter, in which they should be executed to detect hon- it makes it more likely that the client is an actual eyclients. A subset of the features can be used human, rather than a browser instance spawned depending on the attacker's needs. For example, from a VM snapshot. Behavior-based attacks if it is more important to prevent missed attacks interact with the user directly. CAPTCHA is on humans than defeating honeyclient analysis, a a well known technique for differentiating hu- feature that introduces some false positives may mans and computers. Here, we use it in a similar be left out. fashion; if the CAPTCHA is properly solved, we For each feature, we have created pages that know a human is in control of the browser and demonstrate the evasion. When loaded by a hu- we can deliver our exploit safely. These two at- man, client-side code on the page tests for some tack categories are shown in Figure 2. Both at- feature that indicates the presence of a human, tacks occasionally rely on a predefined timeout and then performs an XMLHttpRequest back to or threshold that must be crossed to determine if the server with the test result. In a real attack, an exploit should be launched or not. This values the server could then examine the result and, if are in no way static, and will change as further the test indicates that the client is human, send testing is done to determine the \best" possible the exploit code to the client. Thus, an attacker values. An overview of our attacks is presented can avoid leaking valuable exploit code to a hon- in Table 1, with explanations of the intuition be- eyclient, while remaining effective against human hind them presented in the subsequent sections. users. We can evaluate our approach by comparing It is important to note that all the attacks are page execution behavior between the MITRE written entirely in Javascript or Flash. All major Honeyclient and a human client. browsers support Javascript and 99% of Internet- 3 Behavior-based Stimulus User Interaction Launch Attack Yes Decide: user is human? Data collection History No example.com cnn.com twitter.com Do Nothing facebook.com goatse.cx ... State-based Figure 2: The two categories of evasions we describe. Behavior-based evasions use user interaction to distinguish between humans and honeyclients, while state-based evasions use only data gathered from the browser and operating system. enabled computers have Flash installed1, making user intervention. If a camera is connected, we these suitable languages to perform honeyclient launch the exploit. evasion. Connection Speed Large companies who 4.1 State-based Attacks would benefit from honeyclient testing e.g., google.com generally have high throughput In- State-based attacks infer if a client is a honey- ternet connections to deliver fast and reliable ser- client based on information harvested from the vices.
Recommended publications
  • Strider Web Security
    Adversarial Web Crawling with Strider Monkeys Yi-Min Wang Director, Cyber-Intelligence Lab Internet Services Research Center (ISRC) Microsoft Research Search Engine Basics • Crawler – Crawling policy • Page classification & indexing • Static ranking • Query processing • Document-query matching & dynamic ranking – Diversity • Goals of web crawling – Retrieve web page content seen by browser users – Classify and index the content for search ranking • What is a monkey? – Automation program that mimics human user behavior Stateless Static Crawling • Assumptions – Input to the web server: the URL • Stateless client – Output from the web server: page content in HTML • Static crawler ignores scripts Stateful Static Crawling • We all know that Cookies affect web server response • HTTP User-Agent field affects response too – Some servers may refuse low-value crawlers – Some spammers use crawler-browser cloaking • Give crawlers a page that maximizes ranking (=traffic) • Give users a page that maximizes profit Dynamic Crawling • Simple crawler-browser cloaking can be achieved by returning HTML with scripts – Crawlers only parse static HTML text that maximizes ranking/traffic – Users’ browsers additionally execute the dynamic scripts that maximize profit • Usually redirect to a third-party domain to server ads • Need browser-based dynamic crawlers to index the true content Search Spam Example: Google search “coach handbag” Spam Doorway URL = http://coach-handbag-top.blogspot.com http://coach-handbag-top.blogspot.com/ script execution led to redirection
    [Show full text]
  • Escape from Monkey Island: ? Evading High-Interaction Honeyclients
    Escape from Monkey Island: ? Evading High-Interaction Honeyclients Alexandros Kapravelos1, Marco Cova2, Christopher Kruegel1, Giovanni Vigna1 1 UC Santa Barbara {kapravel,chris,vigna}@cs.ucsb.edu 2 University of Birmingham, UK {m.cova}@cs.bham.ac.uk Abstract. High-interaction honeyclients are the tools of choice to detect mali- cious web pages that launch drive-by-download attacks. Unfortunately, the ap- proach used by these tools, which, in most cases, is to identify the side-effects of a successful attack rather than the attack itself, leaves open the possibility for malicious pages to perform evasion techniques that allow one to execute an at- tack without detection or to behave in a benign way when being analyzed. In this paper, we examine the security model that high-interaction honeyclients use and evaluate their weaknesses in practice. We introduce and discuss a number of possible attacks, and we test them against several popular, well-known high- interaction honeyclients. Our attacks evade the detection of these tools, while successfully attacking regular visitors of malicious web pages. 1 Introduction In a drive-by-download attack, a user is lured into visiting a malicious web page, which contains code that exploits vulnerabilities in the user’s browser and/or its environment. If successful, the exploits can execute arbitrary code on the victim’s machine [33]. This ability is typically used to automatically download and run malware programs on the compromised machine, which, as a consequence, often becomes part of a botnet [31]. Drive-by-download attacks are one of the most pervasive threats on the web, and past measurements have found millions of malicious web pages [3, 32].
    [Show full text]
  • Tracking and Mitigation of Malicious Remote Control Networks
    Tracking and Mitigation of Malicious Remote Control Networks Inauguraldissertation zur Erlangung des akademischen Grades eines Doktors der Naturwissenschaften der Universität Mannheim vorgelegt von Thorsten Holz aus Trier Mannheim, 2009 Dekan: Prof. Dr. Felix Christoph Freiling, Universität Mannheim Referent: Prof. Dr. Felix Christoph Freiling, Universität Mannheim Korreferent: Prof. Dr. Christopher Krügel, University of California, Santa Barbara Tag der mündlichen Prüfung: 30. April 2009 Abstract Attacks against end-users are one of the negative side effects of today’s networks. The goal of the attacker is to compromise the victim’s machine and obtain control over it. This machine is then used to carry out denial-of-service attacks, to send out spam mails, or for other nefarious purposes. From an attacker’s point of view, this kind of attack is even more efficient if she manages to compromise a large number of machines in parallel. In order to control all these machines, she establishes a malicious remote control network, i.e., a mechanism that enables an attacker the control over a large number of compromised machines for illicit activities. The most common type of these networks observed so far are so called botnets. Since these networks are one of the main factors behind current abuses on the Internet, we need to find novel approaches to stop them in an automated and efficient way. In this thesis we focus on this open problem and propose a general root cause methodology to stop malicious remote control networks. The basic idea of our method consists of three steps. In the first step, we use honeypots to collect information.
    [Show full text]
  • Hakin9 Extra Followers, We [email protected] Are Giving You the Latest Fruit of Our Labour
    Szukaj nas takze na www.ashampoo.com Pwn Plug. The Industry’s First Commercial Air Freshener? Pentesting Drop Box. Printer PSU? ...nope FEATURES: % Covert tunneling % SSH access over 3G/GSM cell networks % NAC/802.1x bypass % and more! Discover the glory of Universal Plug & Pwn @ pwnieexpress.com t) @pwnieexpress e) [email protected] p) 802.227.2PWN pwnplug - Dave-ad3-203x293mm.indd 1 1/5/12 3:32 PM To hack or not to hack Managing: Michał Wiśniewski – that is [email protected] the question Senior Consultant/Publisher: Paweł Marciniak Editor in Chief: Grzegorz Tabaka ear Hakin9 Extra Followers, we [email protected] are giving you the latest fruit of our labour. Honeypots are our le- Art Director: itmotiv this month. Especially for Marcin Ziółkowski Dyou, our dear followers, we have selected the choicest articles within the topic of Ho- DTP: neypots/Honeynets. I sincerely hope that we Marcin Ziółkowski sufficiently expanded on the topic to satisfy www.gdstudio.pl your needs and we quenched your appetite for Hakin9 knowledge. I am also very happy Production Director: that we managed to have an exclusive inte- Andrzej Kuca rview with Dr. Fred Cohen – the „father” of [email protected] computer viruses and that, once again, our respected authors helped us with their con- Marketing Director: tributions. This month: Jeremiah Brott will, Grzegorz Tabaka in great detail, tell you about different ty- [email protected] pes of honeypots and their use. Roberto Saia is going to present you „Proactive Network Proofreadres: Defence Through Simulated Networks”. Hari Bob Folden, I.
    [Show full text]
  • A Multidimensional Analysis of Malicious and Compromised Websites Davide Canali
    A multidimensional analysis of malicious and compromised websites Davide Canali To cite this version: Davide Canali. A multidimensional analysis of malicious and compromised websites. Cryptography and Security [cs.CR]. Télécom ParisTech, 2014. English. NNT : 2014ENST0009. tel-01361433 HAL Id: tel-01361433 https://pastel.archives-ouvertes.fr/tel-01361433 Submitted on 7 Sep 2016 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 2014-ENST-0009 EDITE - ED 130 Doctorat ParisTech T H È S E pour obtenir le grade de docteur délivré par TELECOM ParisTech Spécialité « Informatique et Réseaux » présentée et soutenue publiquement par Davide CANALI le 12 Février 2014 Plusieurs Axes d’Analyse de sites web compromis et malicieux Directeur de thèse : Davide BALZAROTTI Jury M. Levente BUTTYÁN , Professeur, CrySyS Lab, Budapest University of Technology and Economics Rapporteur M. Michael Donald BAILEY , Professeur, Network and Security Research Group, University of Michigan Rapporteur M. Guillaume URVOY-KELLER , Professeur, Laboratoire I3S, Université de Nice Examinateur M. Marc DACIER , Professeur Associé, Département Réseaux et Sécurité, EURECOM Examinateur M. William ROBERTSON , Maitre de Conferences, Systems Security Lab, Northeastern University Examinateur M. Refik MOLVA , Professeur, Département Réseaux et Sécurité, EURECOM Examinateur TELECOM ParisTech école de l’Institut Télécom - membre de ParisTech 2014-ENST-0009 EDITE - ED 130 ParisTech Ph.D.
    [Show full text]
  • Computational Resource Abuse in Web Applications
    Computational Resource Abuse in Web Applications Juan David Parra Rodriguez Dissertation eingereicht an der Fakult¨atf¨ur Informatik und Mathematik der Universit¨at Passau zur Erlangung des Grades eines Doktors der Naturwissenschaften A dissertation submitted to the faculty of computer science and mathematics in partial fulfillment of the requirements for the degree of doctor of natural sciences Betreuer: Prof. Dr. rer. nat. Joachim Posegga Passau, Germany, April 2019 Abstract Internet browsers include Application Programming Interfaces (APIs) to support Web applications that require complex functionality, e.g., to let end users watch videos, make phone calls, and play video games. Meanwhile, many Web applications employ the browser APIs to rely on the user's hardware to execute intensive computation, access the Graphics Processing Unit (GPU), use persistent storage, and establish network connections. However, providing access to the system's computational resources, i.e., processing, storage, and networking, through the browser creates an opportunity for attackers to abuse resources. Principally, the problem occurs when an attacker compromises a Web site and includes malicious code to abuse its visitor's computational resources. For example, an attacker can abuse the user's system networking capabilities to perform a Denial of Service (DoS) attack against third parties. What is more, computational resource abuse has not received widespread attention from the Web security community because most of the current specifications are focused on content and session properties such as isolation, confidentiality, and integrity. Our primary goal is to study computational resource abuse and to advance the state of the art by providing a general attacker model, multiple case studies, a thorough anal- ysis of available security mechanisms, and a new detection mechanism.
    [Show full text]
  • Towards Detection and Prevention of Malicious Activities Against Web Applications and Internet Services
    Towards Detection and Prevention of Malicious Activities Against Web Applications and Internet Services Dissertation zur Erlangung des Grades eines Doktor-Ingenieurs der Fakult¨at fur¨ Elektrotechnik und Informationstechnik an der Ruhr-Universit¨at Bochum vorgelegt von Apostolos Zarras aus Athen, Griechenland Bochum, August 2015 Tag der mundlichen¨ Prufung:¨ 27.08.2015 Gutachter: Prof. Dr. Thorsten Holz, Ruhr-Universit¨at Bochum Zweitgutachter: Prof. Dr. Herbert Bos, Vrije Universiteit Amsterdam Abstract The Internet has witnessed a tremendous growth the last years. Undoubtedly, its services and mostly the World Wide Web have become an integral part in the lives of hundreds of millions of people, who use it in daily basis. Unfortunately, as the Internet's popularity increases, so does the interest of attackers who seek to exploit vulnerabilities in users' machines. What was primary meant to be mainly a competition among computer experts to test and improve their technical skills has turned into a multi-billion dollar business. Nowadays, attackers try to take under their control vulnerable computers that will allow them to perform their nefarious tasks, such as sending spam emails, launching distributed denial-of-service (DDoS) attacks, generate revenue from online advertisements by performing click-frauds, or stealing personal data like email accounts and banking credentials. In this dissertation, we address the security issues online users face every day from two points of view. First, we investigate how infected computers that constitu- te a botnet|network of compromised machines which are remotely controlled by an entity, known as botmaster|perform their malicious activities and we propose countermeasures against them. We study two of the most fundamental Internet pro- tocols, SMTP and HTTP, and leverage the fact that numerous entities, including cybercriminals, implement these protocols with subtle but perceivable differences, which we can accurately detect.
    [Show full text]
  • A Solution for the Automated Detection of Clickjacking Attacks
    A Solution for the Automated Detection of Clickjacking Attacks Marco Balduzzi Manuel Egele Institute Eurecom Technical University Vienna Sophia-Antipolis [email protected] [email protected] Engin Kirda Davide Balzarotti Christopher Kruegel Institute Eurecom Institute Eurecom University of California Sophia-Antipolis Sophia-Antipolis Santa Barbara [email protected] [email protected] [email protected] ABSTRACT 1. INTRODUCTION Clickjacking is a web-based attack that has recently received Web applications have evolved from simple collections of a wide media coverage. In a clickjacking attack, a malicious static HTML documents to complex, full-fledged applica- page is constructed such that it tricks victims into clicking tions containing hundreds of dynamically generated pages. on an element of a different page that is only barely (or not The combined use of client and server-side scripting allows at all) visible. By stealing the victim’s clicks, an attacker developers to provide highly sophisticated user interfaces could force the user to perform an unintended action that is with the look-and-feel and functionalities that were previ- advantageous for the attacker (e.g., initiate an online money ously only reserved to traditional desktop applications. At transaction). Although clickjacking has been the subject the same time, many web applications have evolved into of many discussions and alarming reports, it is currently mesh-ups and aggregation sites that are dynamically con- unclear to what extent clickjacking is being used by attackers structed by combining together content and functionalities in the wild, and how significant the attack is for the security provided by different sources.
    [Show full text]
  • Automated Web Patrol with Strider Honeymonkeys: Finding Web Sites That Exploit Browser Vulnerabilities
    Automated Web Patrol with Strider HoneyMonkeys: Finding Web Sites That Exploit Browser Vulnerabilities Yi-Min Wang, Doug Beck, Xuxian Jiang, Roussi Roussev, Chad Verbowski, Shuo Chen, and Sam King Microsoft Research, Redmond Abstract these analyses provide very useful and detailed information about which vulnerabilities are exploited and Internet attacks that use malicious web sites to install which malware programs are installed, such efforts are not malware programs by exploiting browser vulnerabilities scalable, do not provide a comprehensive picture of the are a serious emerging threat. In response, we have problem, and are generally ineffective at efficiently developed an automated web patrol system to finding new malicious sites. automatically identify and monitor these malicious sites. To address these issues, we developed a system that We describe the design and implementation of the Strider uses a pipeline of active, client-side, Virtual Machine HoneyMonkey Exploit Detection System, which consists of (VM)-based honeypots [H,HC], called Strider a pipeline of “monkey programs” running possibly HoneyMonkeys, to perform large-scale, systematic and vulnerable browsers on virtual machines with different automated web patrol. The HoneyMonkey system uses patch levels and patrolling the Web to seek out and monkey programs1 that run within virtual machines with classify web sites that exploit browser vulnerabilities. OS’s of various patch levels to drive web browsers in an Within the first month of utilizing this system, we attempt to mimic human web browsing. Our approach identified 752 unique URLs hosted on 288 web sites that adopts a state-management methodology to cybersecurity: could successfully exploit unpatched Windows XP instead of directly detecting the acts of vulnerability machines.
    [Show full text]
  • IEEE Paper Template in A4 (V1)
    International Journal of Engineering Inventions ISSN: 2278-7461, www.ijeijournal.com Volume 1, Issue 8 (October2012) PP: 01-06 AUTOMATED WEB PATROLING WITH EXPLOIT DETECTION OF MALICIOUS SITES 1 2 Ms. Rajashree C. Sonawane , Prof. Mrs. S.M.Jaybhaye 1,2Department of Information TechnologySinhgad College of Engineering, University of Pune, Pune Abstract:––Client-side attacks are on the rise malicious websites that exploit vulnerabilities in the visitor’s browser are posing a serious threat to client security, compromising innocent users who visit these sites without having a patched web browser. Malicious websites are websites which have any kind of content that could be a threat for the security of the clients requesting particular sites. Currently, there is neither a freely available comprehensive database of threats on the Web nor sufficient freely available tools to build such a database. The purpose of an exploit is almost always to introduce some piece of arbitrary code on the victim machine, as a way to achieve a larger attack goal. It is not uncommon to see a malicious web page attempting to exploit multiple browser vulnerabilities in order to maximize the chance of a successful attack. Hence Honey Monkeys, introduce the Monkey-Spider project. Utilizing it as a client honey pot, the portray the challenge in such an approach and evaluate system as a high-speed, Internet scale analysis tool to build a database of threats found in the wild. Furthermore, it evaluates the system by analysing different crawls performed. I. INTRODUCTION Internet attacks that use a malicious or hacked web site to exploit unpatched client-side vulnerabilities of visiting browsers are on the rise.
    [Show full text]
  • Tamper-Resilient Methods for Web-Based Open Systems
    TAMPER-RESILIENT METHODS FOR WEB-BASED OPEN SYSTEMS A Thesis Presented to The Academic Faculty by James Caverlee In Partial Fulfillment of the Requirements for the Degree Doctor of Philosophy in the College of Computing Georgia Institute of Technology August 2007 Copyright c 2007 by James Caverlee TAMPER-RESILIENT METHODS FOR WEB-BASED OPEN SYSTEMS Approved by: Ling Liu, Advisor Sham Navathe College of Computing College of Computing Georgia Institute of Technology Georgia Institute of Technology William B. Rouse, Co-Advisor Sushil K. Prasad Tennenbaum Institute, Industrial & Department of Computer Science Systems Engineering (Joint Appointment Georgia State University with College of Computing) Georgia Institute of Technology Jonathon Giffin Calton Pu College of Computing College of Computing Georgia Institute of Technology Georgia Institute of Technology Date Approved: 18 June 2007 For Sherry iii ACKNOWLEDGEMENTS I am pleased to acknowledge the generous support of the Tennenbaum Institute in providing me a Tennenbaum Fellowship for this research. In addition, I am grateful for the positive influence and the many contributions of a number of special people – people who have encouraged, guided, and inspired me. My parents are my foundation. Sam and Ellen Caverlee are two incredibly encouraging and supportive parents. They have been with me every step of the way, encouraging me to push myself to my limits and supporting me when I fall short. They are an inspiration to me and provide a blueprint for how to live a moral life. I love you, Mom and Dad. My brother John has always been there for me. John has a way of grounding me, so that I maintain my focus and don’t float off into a self-imposed nerd orbit.
    [Show full text]
  • John R. Vacca
    Network and System Security This page intentionally left blank Network and System Security Editor John R. Vacca AMSTERDAM • BOSTON • HEIDELBERG • LONDON NEW YORK • OXFORD • PARIS • SAN DIEGO SAN FRANCISCO • SINGAPORE • SYDNEY • TOKYO Syngress is an imprint of Elsevier Syngress is an imprint of Elsevier 30 Corporate Drive, Suite 400, Burlington, MA 01803, USA The Boulevard, Langford Lane, Kidlington, Oxford, OX5 1GB, UK Network and System Security # 2010 Elsevier Inc. All rights reserved. Material in the work originally appeared in the Computer and Information Security Handbook, edited by John R. Vacca (Elsevier, Inc. 2009). No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or any information storage and retrieval system, without permission in writing from the publisher. Details on how to seek permission, further information about the Publisher’s permissions policies and our arrangements with organizations such as the Copyright Clearance Center and the Copyright Licensing Agency, can be found at our website: www.elsevier.com/permissions. This book and the individual contributions contained in it are protected under copyright by the Publisher (other than as may be noted herein). Notices Knowledge and best practice in this field are constantly changing. As new research and experience broaden our understanding, changes in research methods, professional practices, or medical treatment may become necessary. Practitioners and researchers must always rely on their own experience and knowledge in evaluating and using any information, methods, compounds, or experiments described herein. In using such information or methods they should be mindful of their own safety and the safety of others, including parties for whom they have a professional responsibility.
    [Show full text]