261 Paper V1.Pub

Total Page:16

File Type:pdf, Size:1020Kb

261 Paper V1.Pub Semi-Supervised Learning on Email Characteristics for Novel Worm Detection Steve Martin and Anil Sewani {steve0, anil}@cs.berkeley.edu University of California, Berkeley A major drawback of unsupervised learning for worm tion among vulnerable hosts can already occur. To detection is the possibility of false negatives. Previous make matters worse, contemporary worms spread at work copes with this problem by increasing the sensi- extremely fast rates; it has been shown that it is rea- tivity of the unsupervised classification algorithms. sonably trivial to create self-propagating internet vi- This, in turn, creates many more false positives. Our ruses that can infect up to a million hosts in about focus is narrowed to worms propagating through thirty seconds [19]. email. It is clear that the key to stopping a novel worm We present the following contributions. First, from becoming widespread is to choke off its avenues we examine a wide range of features calculated on for infection as quickly as possible. One general ap- email traffic to determine indicators that discriminate proach is to place specific restrictions on the network between infected from normal email behavior. Using activity a machine can conduct over a given length of these features, we next present a new method that uses time. This idea, called a virus throttle, works well in semi-supervised learning for adaptive virus detection certain scenarios, but is also overly restrictive and that leverages system administrator feedback to im- inflexible to changes in network utilization [5, 8]. prove classification. Our approach combines the An alternate idea is to learn on network transmis- strengths of sensitive novelty detection with a para- sions to attempt to discover and isolate infected ma- metric classifier to drastically reduce the false posi- chines before an epidemic can set in. Previous work tives. has used unsupervised learning on network behavior to attempt to detect worm propagation. However, because false negatives are highly undesirable in virus 1 Introduction detection, these systems are in general purposefully configured to be overly sensitive. This trades off ad- One of the most prevalent security problems in com- ditional false negatives for excessive amounts of false puting today is the rampant proliferation of malicious, positives. self-propagating computer viruses known as worms. To this end, we present the following contribu- As networks become increasingly ubiquitous, these tions. First, we examine a wide range of features cal- programs can infect more machines than ever before, culated on email traffic to determine what indicators with each new outbreak causing staggering amounts best separate virus from normal email behavior. Us- of damage. As an example, in 2001, two worms ing these features, we next present a new method for named Nimda and Code Red spread rapidly through- doing semi-supervised learning that leverages system out the internet, with cost estimates for lost productiv- administrator involvement to improve classification. ity in the billions of dollars [3]. Last year, the My- This is done via an approach that combines the Doom and MS Blaster worms combined for estimated strengths of sensitive novelty detection with a para- damages in the tens of billions of dollars in the United metric classifier that drastically reduces the false posi- States alone [2]. These recent events serve to high- tives. light a disturbing trend: as industry, governments, and This paper presents the results of our work. Sec- militaries grow more reliant on computer networks, tion 2 gives a brief overview of previous work related the potential for a truly crippling virus attack is be- to this paper. Next we discuss the overall structure of coming immense. our application in section 3, followed by a description While protection against worms continues to be of the numerical features we calculate on email traffic an area of intense research, traditional antivirus de- in section 4. Section 5 describes the parametric classi- fenses deployed in the field have not changed signifi- fier. Section 6 gives some preliminary results and cantly for many years. Recent worms such as MS discussion, and we close with some conclusions and Blaster and Sapphire have demonstrated that in the ideas for future research. time it takes for an administrator to reconfigure a fire- wall and update antivirus scanners, widespread infec- 1 2 Previous Work trained over consecutive byte sequences in email at- tachments to detect malicious executables [9]. They Current work on containing worms (including email later extended their work to include printable strings worms) has largely been based on automatic detection in executables as another feature to train their models of abnormal network behavior. The La Brea project, [10]. Maloof et al have further explored this area of for example, attempts to slow the growth of TCP work by using models other than naïve Bayes based worms by slowing probes to unallocated ad- (including decision trees, Support Vector Machines, dresses [21]. This is accomplished by blocking the k-nearest-neighbors and Term Frequency Inverse thread making the probe. This technique however can Document Frequency (TFIDF) models) [6]. In gen- be easily circumvented by running the virus asynchro- eral, tracking malicious email by exclusively analyz- nously. ing attachments tends to ignore a certain type of email Williamson et al proposed per-host TCP throttling worms, such as those that spread via HTML embed- by restricting the rate of new connections a host ded scripts or links in emails. A glaring example of makes in a given time [5]. A similar approach has such a worm is MyDoom. The techniques mentioned been proposed for constraining email virus propaga- above can also be easily fooled by using standard code tion by restricting the frequency at which email can be obfuscation techniques. sent to new email recipients [8]. Apart from requiring Social network analysis of email has been used universal deployment to be effective, this technique for detecting spam as well as virus emails [13, 7]. In involves the difficult task of determining the threshold these models, users within a network are considered as used to consider a TCP connection or an email to be nodes of a graph, and communication between any malicious. A fixed setting of the threshold is also two nodes is indicated via an edge between the nodes. likely to delay legitimate traffic occasionally. Clusters of nodes linked to one another form a social Several previously published methods of network network, indicating common communication patterns intrusion detection involve variants of signature detec- among users. Communication that violates these be- tion [12]. Signature detection uses libraries of past havioral patterns is considered suspect of spam or attacks and rule-learning techniques to identify attacks virus email. To circumvent this technique, an email on the network. Vern Paxon's work on Bro provides a virus can trick the model by intelligently choosing its strongly-typed language for implementing policies to recipient list (e.g. by using recipient information from deal with abnormal events detected on network recent emails in the ‘Sent Email’ folder). Hence, such streams at a TCP/UDP level [15]. However, we be- techniques alone can not provide a good defense lieve this technique might be inadequate because mod- against email worms. ern virus attacks can overwhelm network resources Stolfo et al created an email data mining system before rules can be manually updated to provide pro- that used social network analysis along with other tection against new threats. features indicative of user behavior to identify viral Singh et al. recently proposed a mechanism for propagations [16, 17]. The authors maintained ‘user automated fingerprinting of worms [20]. The authors cliques’ for every user in the system. User cliques are implemented an efficient distributed system that de- basically clusters of email accounts that participate tects invariant substrings in the network traffic to fin- with each other in common email communication. gerprint novel worms. The system aggregates this Other features considered by the authors included information across different source and destination IP variance in number of distinct recipients, sending rate addresses to determine if a worm attack is underway. of email and the number of emails with attachments Even though the system is shown to work well for over a sliding window of emails. The social network new and known worms, there are some serious limita- analysis done here is vulnerable to the type of attacks tions on its effectiveness. Polymorphic worms (e.g. mentioned earlier. The classification mechanism we those that can make use of per-session encryption) can describe in this paper includes all other features used evade such a system completely by changing the pay- by the authors, along with several others that we be- load for every infection. The attacker can also exploit lieve are useful in discriminating normal user behavior the limited state information maintained by the system from viral behavior. to perform efficiently. For example, as mentioned in the paper, worms seen less frequently than 60 seconds are never registered by the system. 3 System Architecture Early attempts at using machine learning models for detection of viruses used Artificial Neural Net- The overall architecture for our system consists of a works for detecting boot sector viruses [4]. More re- modular pipeline. Each segment encapsulates a sepa- cently, Schultz et al used a naïve Bayes classifier rate stage in the process of classifying email behavior 2 Figure 1. The basic architecture for the classification system presented in this paper. as infected or normal. labels, allowing the parametric classifier to be re- Figure 1 gives an overview of our basic architec- trained in a semi-supervised manner for increased ture. In the first module of our system, email is gath- accuracy. In our planned deployable system, a ma- ered into a data corpus on an ongoing basis.
Recommended publications
  • Combatting Spam Using Mimedefang, Spamassassin and Perl
    Combating Spam Using SpamAssassin, MIMEDefang and Perl Copyright 2003 David F. Skoll Roaring Penguin Software Inc. (Booth #23) Administrivia Please turn off or silence cell phones, pagers, Blackberry devices, etc... After the tutorial, please be sure to fill out an evaluation form and return it to the USENIX folks. 2 Overview After this tutorial, you will: Understand how central mail filtering works. Know how to use MIMEDefang to filter mail. Be able to integrate SpamAssassin into your mail filter. Know how to implement mail filtering policies with MIMEDefang and Perl. Know how to fight common spammer tactics. 3 Outline Introduction to Mail Filtering Sendmail's Milter API MIMEDefang Introduction, Architecture Writing MIMEDefang Filters SpamAssassin Integration Advanced Filter Writing Fighting Common Spammer Tactics Advanced Topics Policy Suggestions 4 Assumptions I assume that you: Are familiar with Sendmail configuration. You don't need to be a sendmail.cf guru, but should know the basics. Are familiar with Perl. Again, you don't need to be able to write an AI program in a Perl one- liner, but should be able to read simple Perl scripts. Are running the latest version of Sendmail 8.12 on a modern UNIX or UNIX-like system. 5 Why Filter Mail? The old reason: to stop viruses. The new reason: to stop spam and inappropriate content. Blocking viruses is easy. Block .exe and similar files, and test against signature databases. Blocking spam is hard, but becoming increasingly important. Organizations can even face lawsuits over inappropriate content. 6 Mail filtering is required for many reasons. In addition to the reasons given on the slide, you might need to filter outgoing mail as well to prevent virus propagation, dissemination of sensitive information, etc.
    [Show full text]
  • Canit-PRO User's Guide
    CanIt-PRO User’s Guide for Version 10.2.5 AppRiver, LLC 13 September 2018 2 CanIt-PRO — AppRiver, LLC Contents 1 Introduction 13 1.1 Organization of this Manual.............................. 13 1.2 Definitions........................................ 14 2 The Simplified Interface 19 3 The My Filter Page 21 3.1 Sender Rules...................................... 21 3.2 The Quarantine..................................... 22 3.3 Online Documentation................................. 22 4 The CanIt-PRO Quarantine 23 4.1 Viewing the Quarantine................................. 23 4.1.1 Message Summary Display........................... 23 4.1.2 Sort Order.................................... 24 4.1.3 Message Body Display............................. 25 4.1.4 Summary of Links............................... 25 4.2 Message Disposition.................................. 25 4.2.1 Quick Spam Disposal.............................. 26 4.3 Reporting Phishing URLs................................ 27 4.4 Viewing Incident Details................................ 27 4.4.1 Basic Details.................................. 28 4.4.2 Address Information.............................. 29 4.4.3 History..................................... 29 4.4.4 Spam Analysis Report............................. 29 4.5 Viewing Other Messages................................ 30 4.6 Viewing Specific Incidents............................... 30 CanIt-PRO — AppRiver, LLC 3 4 CONTENTS 4.7 Searching the Quarantine................................ 30 4.8 Closed Incidents....................................
    [Show full text]
  • Canit-Domain-PRO Administration Guide for Version 10.2.9 Appriver, LLC 11 December 2020 2
    CanIt-Domain-PRO Administration Guide for Version 10.2.9 AppRiver, LLC 11 December 2020 2 CanIt-Domain-PRO — AppRiver, LLC Contents 1 Introduction 19 1.1 Principles of Operation................................. 19 1.2 Handling False-Positives................................ 19 1.2.1 Spam-Control Delegation........................... 20 1.3 Organization of this Manual.............................. 20 1.4 Definitions........................................ 21 2 Operation 27 2.1 Principles of Operation................................. 27 2.2 Interaction between Allow Rules and Block Rules................... 28 2.2.1 RCPT TO: Actions............................... 28 2.2.2 Post-DATA Actions............................... 30 2.3 Streaming........................................ 32 2.4 How Addresses are Streamed.............................. 32 2.5 How Streaming Methods are Chosen.......................... 33 2.6 Status of Messages................................... 35 2.6.1 Secondary MX Relays............................. 36 2.7 The Database...................................... 36 2.8 Remailing Messages.................................. 37 3 Realms 39 3.1 Introduction to Realms................................. 39 3.2 Realm Names...................................... 40 3.2.1 The base Realm................................ 40 3.3 Creating Realms..................................... 40 3.4 Realm Mappings.................................... 41 3.5 Determining the Realm................................. 42 CanIt-Domain-PRO — AppRiver, LLC 3 4 CONTENTS
    [Show full text]
  • Clam Antivirus 0.88.2 User Manual Contents 1
    Clam AntiVirus 0.88.2 User Manual Contents 1 Contents 1 Introduction 6 1.1 Features.................................. 6 1.2 Mailinglists................................ 7 1.3 Virussubmitting.............................. 7 2 Base package 7 2.1 Supportedplatforms............................ 7 2.2 Binarypackages.............................. 8 2.3 Dailybuiltsnapshots ........................... 10 3 Installation 11 3.1 Requirements ............................... 11 3.2 Installingonashellaccount . 11 3.3 Addingnewsystemuserandgroup. 12 3.4 Compilationofbasepackage . 12 3.5 Compilationwithclamav-milterenabled . .... 12 4 Configuration 13 4.1 clamd ................................... 13 4.1.1 On-accessscanning. 13 4.2 clamav-milter ............................... 14 4.3 Testing................................... 14 4.4 Settingupauto-updating . 15 4.5 Closestmirrors .............................. 16 5 Usage 16 5.1 Clamdaemon ............................... 16 5.2 Clamdscan ................................ 17 5.3 Clamuko.................................. 17 5.4 Outputformat............................... 18 5.4.1 clamscan ............................. 18 5.4.2 clamd............................... 19 6 LibClamAV 20 6.1 Licence .................................. 20 6.2 Features.................................. 20 6.2.1 Archivesandcompressedfiles . 20 6.2.2 Mailfiles ............................. 21 Contents 2 6.3 API .................................... 21 6.3.1 Headerfile ............................ 21 6.3.2 Databaseloading . .. .. .. .. .. .
    [Show full text]
  • Spamassassin
    < Day Day Up > • Table of Contents • Index • Reviews • Reader Reviews • Errata • Academic SpamAssassin By Alan Schwartz Publisher: O'Reilly Pub Date: July 2004 ISBN: 0-596-00707-8 Pages: 256 Sys admins can field scores of complaints and spend months testing software suites that turn out to be too aggressive, too passive, or too complicated to setup only to discover that SpamAssassin (SA), the leading open source spam-fighting tool, is free, flexible, powerful, highly-regarded, and remarkably effective. The drawback? Until now, it was SpamAssassin's lack of published documentation. This clear, concise new guide provides the expertise you need to take back your inbox. "Detailed, accurate and informative--recommended for spam-filtering beginners and experts alike." -- Justin Mason, SpamAssassin development team < Day Day Up > < Day Day Up > • Table of Contents • Index • Reviews • Reader Reviews • Errata • Academic SpamAssassin By Alan Schwartz Publisher: O'Reilly Pub Date: July 2004 ISBN: 0-596-00707-8 Pages: 256 Copyright Preface Scope of This Book Versions Covered in This Book Conventions Used in This Book Using Code Examples Comments and Questions Acknowledgments Chapter 1. Introducing SpamAssassin Section 1.1. How SpamAssassin Works Section 1.2. Organization of SpamAssassin Section 1.3. Mailers and SpamAssassin Section 1.4. The Politics of Scanning Chapter 2. SpamAssassin Basics Section 2.1. Prerequisites Section 2.2. Building SpamAssassin Section 2.3. Invoking SpamAssassin with procmail Section 2.4. Using spamc/spamd Section 2.5. Invoking SpamAssassin in a Perl Script Section 2.6. SpamAssassin and the End User Chapter 3. SpamAssassin Rules Section 3.1. The Anatomy of a Test Section 3.2.
    [Show full text]
  • Sample Chapter
    Haskins_03.fm Page 29 Tuesday, November 23, 2004 9:19 AM SpamAssassin3 In this chapter, we introduce SpamAssassin, which is a widely used interface to other anti- spam mechanisms as well a spam classifier in its own right. SpamAssassin has its own rules base, which is used to assign a “score” to each mail message. The methods Spam- Assassin uses to classify whether email is spam are as follows: • Header analysis—SpamAssassin can analyze these headers of an email message and generate a score based on them. • Body analysis—The body of a spam message often contains phrases (i.e., “Reduce your debt!”) that can easily identify it as spam. • Bayesian analysis—Bayes is a statistical methodology where both the headers and body of a message are compared against a known database of phrases. This book dedi- cates several chapters to Bayesian analysis due to its effectiveness. • Distributed checksums (Vipul’s Razor and DCC)—In this process, a message is check- summed and put into a distributed database along with a count. The higher the count for the checksum associated with the message, the more likely the message is spam. • Blackhole listing checking (MAPS RBL, etc.)—Blackhole lists are ranges of IP addresses where spam originates. If a message comes from such a network, the message score can be adjusted accordingly. • Automatic whitelisting/blacklisting (AWL)—SpamAssassin can automatically add email addresses to databases of whitelists or blacklists. • Manual whitelisting/blacklisting—The software can accept/reject known good/bad email addresses. 29 Haskins_03.fm Page 30 Tuesday, November 23, 2004 9:19 AM CHAPTER 3SPAMASSASSIN SpamAssassin rules can be defined by the administrator and by the user if certain con- ditions are met.
    [Show full text]
  • Bladecenter, Linux, and Open Source Blueprint for E-Business on Demand
    Front cover IBM Eserver BladeCenter, Linux, and Open Source Blueprint for e-business on demand Discover open source projects to reduce cost and improve reliability Install and configure Linux and critical open source network services Learn best practices to implement reliable services George Dolbier Peter Bogdanovic Dominique Cimafranca Yessong Johng Rufus Credle Jr. ibm.com/redbooks International Technical Support Organization IBM ^ BladeCenter, Linux, and Open Source: Blueprint for e-business on demand July 2003 SG24-7034-00 Note: Before using this information and the product it supports, read the information in “Notices” on page vii. First Edition (July 2003) This edition applies to Red Hat Advanced Server 2.1. © Copyright International Business Machines Corporation 2003. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . vii Trademarks . viii Preface . ix The team that wrote this redbook. ix Become a published author . xi Comments welcome. xi Chapter 1. About the book: Blueprint for building an e-business application for BladeCenter. 1 1.1 Building an e-business infrastructure . 2 1.1.1 Materials . 2 1.1.2 Objectives . 3 1.2 IBM eServer™ BladeCenter . 3 1.3 FAStT SAN storage. 3 1.4 BladeCenter business value . 4 1.5 Linux business value. 4 1.6 Open source business value. 4 1.7 Other references . 5 Chapter 2. Architecture: Solution overview . 7 2.1 Open source e-business infrastructure a modular approach . 8 2.2 All construction projects start with a pattern . 8 2.2.1 Industry standard e-business pattern: A three-tier infrastructure .
    [Show full text]
  • Clam Antivirus 0.70 User Manual by Tomasz Kojm Contents 1
    Clam AntiVirus 0.70 User Manual by Tomasz Kojm Contents 1 Contents 1 Introduction 4 1.1 Features . 4 1.2 Mailing lists . 4 1.3 Virus submitting . 5 2 Installation 5 2.1 Supported platforms . 5 2.2 Binary packages - stable versions . 6 2.3 Binary packages - snapshots . 7 2.4 Requirements . 7 2.5 New system user and group . 8 2.6 Compilation . 8 2.7 Configuration . 9 2.8 Testing . 10 2.9 freshclam: Setting up auto-updating . 10 2.10 Database mirrors . 11 3 Usage 13 3.1 Clam daemon . 13 3.2 Clamdscan . 14 3.3 Clamuko . 15 3.4 Archives and compressed files . 16 3.5 Mail files . 17 3.6 Output format . 17 3.7 Signature Tool . 19 4 Problem solving 21 4.1 Return codes . 21 5 ClamAV-certified software 22 5.1 clamav-milter . 22 5.2 IVS Milter . 23 5.3 smtp-vilter . 23 5.4 mod clamav . 23 5.5 TrashScan . 23 5.6 AMaViS - ”Next Generation” . 24 5.7 amavisd-new . 24 5.8 Qmail-Scanner . 24 Contents 2 5.9 Sagator . 24 5.10 ClamdMail . 25 5.11 BlackHole . 25 5.12 MailScanner . 25 5.13 MIMEDefang . 25 5.14 exiscan . 25 5.15 scanexi . 26 5.16 Mail::ClamAV . 26 5.17 OpenAntiVirus samba-vscan . 26 5.18 Sylpheed Claws . 26 5.19 nclamd . 26 5.20 cgpav . 27 5.21 j-chkmail . 27 5.22 qscanq . 27 5.23 clamavr . 27 5.24 DansGuardian Anti-Virus Plugin . 27 5.25 ClamAssassin . 27 5.26 Gadoyanvirus .
    [Show full text]
  • Jeffrey Goldberg
    Jeffrey Goldberg Personal Information Jeffrey Paul Goldberg Mailing address 5225 Canyon Crest Drive Suite 71-439 Riverside, California, 92507 Net Address [email protected] http://www.goldmark.org/jeff/ (Further technical contact information is listed on page 6) Birth year: 1961 Citizenship/Visas: US Citizen Education 1984–87 Graduate studies in Linguistics, Stanford University. PhD degree not com- pleted. 1979–84 Bachelor Degree (1984) with honors in the major awarded in Linguistics by Crown College, University of California, Santa Cruz. 1979 Completed high school. Long Beach Polytechnic, Long Beach, California. Non-academic work 2003–2004 Various projects and tasks for Slauson Transmission Parts. Including: over- hall of email services, spam and virus filtering, setting up mailing list server, and taking on postmaster role; establishing LDAP directory services; con- figuring and training on SSH usage; installing and managing DNS; Main- taining firewall; NFS and SMB file sharing; back-up regime; security policy; Other systems maintanence tasks. 2004 March. Network and email consulting for the California Council on Science and Technology. 2003 August. Network restructuring for Wi-Fi network at Coffee Roasters (River- side, CA). 2003 June. Consulted on mail configuration for www.rockfortots.org. Writing sendmail M4 configuration file. 2001 May–August. Temporary assistant for Riverside County Workforce Devel- opment Center. Part-time. Curriculum vita Jeffrey Goldberg Worked as part of team surveying Riverside county businesses concerning the electricity situation. The job involved designing and setting up a Mi- crosoft Access database along with data entry forms and report. 2001 March. Consultant for kruzin.net, resolving mail access problem to their POP server (qpop on Linux).
    [Show full text]
  • Canit-Domain-PRO API Guide for Version 10.2.9 Appriver, LLC 11 December 2020 2
    CanIt-Domain-PRO API Guide for Version 10.2.9 AppRiver, LLC 11 December 2020 2 CanIt-Domain-PRO — AppRiver, LLC Contents 1 Introduction 11 1.1 Overview........................................ 11 1.2 REST Basics...................................... 11 1.2.1 GET....................................... 12 1.2.2 POST...................................... 12 1.2.3 PUT....................................... 12 1.2.4 DELETE.................................... 13 1.3 Standard URIs...................................... 13 1.4 Data Serialization Formats............................... 14 1.4.1 YAML..................................... 14 1.4.2 JSON...................................... 14 1.5 Authentication...................................... 15 1.6 Special Values in URIs................................. 15 1.7 Special Characters in URIs............................... 15 1.8 Response Codes..................................... 16 1.8.1 Success Codes................................. 16 1.8.2 Client Failure Codes.............................. 17 1.8.3 Server Failure Codes.............................. 17 2 API Reference 19 2.1 Authenticating to the API................................ 19 2.1.1 Logging in................................... 19 2.1.2 Logging out................................... 19 2.1.3 Switching Users................................ 19 2.2 Basic Information.................................... 20 2.3 Time Zones....................................... 20 2.4 Address Mappings................................... 21 CanIt-Domain-PRO — AppRiver,
    [Show full text]
  • Secure Content Distribution Using Untrusted Servers Kevin Fu
    Secure content distribution using untrusted servers Kevin Fu MIT Computer Science and Artificial Intelligence Lab in collaboration with M. Frans Kaashoek (MIT), Mahesh Kallahalla (DoCoMo Labs), Seny Kamara (JHU), Yoshi Kohno (UCSD), David Mazières (NYU), Raj Rajagopalan (HP Labs), Ron Rivest (MIT), Ram Swaminathan (HP Labs) For Peter Szolovits slide #1 January-April 2005 How do we distribute content? For Peter Szolovits slide #2 January-April 2005 We pay services For Peter Szolovits slide #3 January-April 2005 We coerce friends For Peter Szolovits slide #4 January-April 2005 We coerce friends For Peter Szolovits slide #4 January-April 2005 We enlist volunteers For Peter Szolovits slide #5 January-April 2005 Fast content distribution, so what’s left? • Clients want ◦ Authenticated content ◦ Example: software updates, virus scanners • Publishers want ◦ Access control ◦ Example: online newspapers But what if • Servers are untrusted • Malicious parties control the network For Peter Szolovits slide #6 January-April 2005 Taxonomy of content Content Many-writer Single-writer General purpose file systems Many-reader Single-reader Content distribution Personal storage Public Private For Peter Szolovits slide #7 January-April 2005 Framework • Publishers write➜ content, manage keys • Clients read/verify➜ content, trust publisher • Untrusted servers replicate➜ content • File system protects➜ data and metadata For Peter Szolovits slide #8 January-April 2005 Contributions • Authenticated content distribution SFSRO➜ ◦ Self-certifying File System Read-Only
    [Show full text]
  • Manipulating Email with Mimedefang
    Manipulating Email with MIMEDefang perl -pe 's/xxx/xxx/magic' <your email> Sysadmin Miniconf, LCA 2006 Monday, 23 January 2006 Mark Suter, Miju Systems <[email protected]> Copyright 2006 Mark Suter Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Section, with no Front-Cover Texts, and with no Back-Cover Texts. The "Spartan" Swiss Army Knife image is used with the kind permission of Victorinox. Slides @ http://zwitterion.org/talks/ Ethics of Filtering Email Hopefully, fairly standard stuff: Breaks the gentleman's agreement over email Have a written policy (often, just one page) Let it be known what you're doing and why www.sage-au.org.au/ethics.html IANAL, YSSARL Filtering email Filtering is an instrument of policy. Our policy might require dealing with viri dealing with UBE/UCE adding disclaimers removing "inappropriate content" whatever else the organisation needs Email Overview - where to filter? POP/ Mail IMAP MUA MUA Store SMTP LDA MTA MTA SMTP IMAP Internet Mail Access Protocol LDA Local Delivery Agent MTA Mail Transport Agent MUA Mail User Agent POP Post Office Protocol SMTP Simple Mail Transfer Protocol Filtering in the MTA Often done by adding an extra MTA Once per message, not once per recipient (compare to LDA like procmail) Can filter even when just relaying (no need to deliver) Very powerful SMTP transaction manipulation Milter (Mail fiLTER) Protocol+library
    [Show full text]