Malware, such as botnets, may include at least two fundamental components: a client agent, which may run on victim machines, and a control server application, which may be administered by the malware owner. Both components may employ code reuse, wherein new (polymorphic) malware releases may be created by simply re-packaging previous samples, or by augmenting previous versions with a few new functionalities. Moreover, it is not uncommon for the source code of successful malware to be sold or leaked on underground forums, and to be reused by other malware operators. Code reuse may result in many different malware samples sharing a common command-and-control (C&C) protocol, although control server instances owned by different malware operators may run on different C&C domains and IPs. A C&C protocol may be the set of specifications implemented to enable the malware control application logic, which is defined at a higher level of abstraction compared to the underlying transport (e.g., TCP or UDP) or application (e.g., HTTP) protocols that facilitate the C&C communications.
Systems and methods described herein may mine new, previously unknown C&C domain names from live enterprise network traffic. Starting from a seed list of known C&C communications and related domain names found in malware-generated network traces, new C&C domains may be discovered by taking advantage of the commonalties in the C&C protocol shared by different malware samples. Unique traits of a given C&C protocol may be automatically learned from the seed of known C&C communications to derive a control protocol template (CPT), which may in turn be deployed at the edge of a network to detect traffic destined for new C&C domains. For example, a seed of known C&C traffic used to learn the control protocol templates may be generated by leveraging blacklists of known C&C domain names. Adaptive templates that learn from the traffic profile of the network where the templates are to be deployed may also be built. Hybrid templates that can self-tune to each specific deployment scenario may be generated, which may be done to prevent excessive false positives. The templates may model the entire content of HTTP requests, rather than being limited to the URL string. The systems and methods described herein may detect C&C communications initiated by single malware infected machines with low false positive and high true positive rates, and may attribute the discovered new C&C domains to a known malware family name or malware operator (e.g., the name of the cybercriminal group behind the malware operation). Discovered C&C domain names may also be deployed in existing lightweight malware detection systems based on DNS traffic inspection, thus contributing to the detection and attribution of malware infections in very large networks (e.g., ISP networks) where monitoring all traffic may not be practically feasible.
Systems and methods described herein may comprise one or more computers. A computer may be any programmable machine or machines capable of performing arithmetic and/or logical operations. In some embodiments, computers may comprise circuits, integrated circuits, processors, memories, data storage devices, and/or other commonly known or novel components. These components may be connected physically or through network or wireless links. Computers may also comprise software which may direct the operations of the aforementioned components. Computers may be referred to with terms that are commonly used by those of ordinary skill in the relevant arts, such as servers, PCs, mobile devices, routers, switches, data centers, distributed computers, and other terms. Computers may facilitate communications between users and/or other computers, may provide databases, may perform analysis and/or transformation of data, and/or perform other functions. It will be understood by those of ordinary skill that those terms used herein are interchangeable, and any computer capable of performing the described functions may be used. For example, though the term “router” may appear in the following specification, the disclosed embodiments are not limited to routers.
Computers may be linked to one another via a network or networks. A network may be any plurality of completely or partially interconnected computers wherein some or all of the computers are able to communicate with one another. It will be understood by those of ordinary skill that connections between computers may be wired in some cases (e.g., via Ethernet, coaxial, optical, or other wired connection) or may be wireless (e.g., via Wi-Fi, WiMax, or other wireless connection). Connections between computers may use any protocols, including connection oriented protocols such as TCP or connectionless protocols such as UDP. Any connection through which at least two computers may exchange data can be the basis of a network.
For example, the following hypothetical scenario may illustrate the tailoring of a template to a specific network. Assume a template that matches an HTTP request in both networks NetA and NetB with a similarity score s when compared in 460 as described above. Assume the score s is the same for both NetA's traffic and NetB's traffic. Suppose also that the server's IP (or its /24 prefix) associated with the matching traffic is ipa for NetA and ipb for NetB. Also, suppose that ipa is popular in network NetA, whereas ipb has very low popularity in NetB because it has never been contacted by hosts in that network. Because ipa is very popular in NetA (e.g., more than 50% of the hosts in NetA have contacted the domain in the past), it may be likely that the template is matching benign traffic, thus potentially causing a large number of false positives in NetA. On the other hand, because ipb has very low popularity in NetB, it is more likely that the match is a true detection, or that in any case will generate very few (potentially only one) false positives in NetB. Consequently, as set forth above in 470, based on a model of recent traffic observed in NetA and NetB, confidence for the matches observed in NetA may be lowered, but may not be lowered for NetB. In other words, the system may to NetA to “tune down” the false positives. At the same time, keeping the confidence in high for NetB means that the system may still be able to detect C&C communications that match while keeping the risk of false positives low. This approach may be generalized to all other components of the templates (e.g, the structure of the URLs, the user-agent strings, the other request headers, etc.), in addition to the destination IPs. An HTTP request may be labeled as C&C if it matches a CPT with both high similarity and high specificity. Considering more than just URLs may enable detection of more malware than considering only URLs. For example, some malware (e.g., TDL4) may exchange information with the C&C by first encrypting it, encoding it (e.g., using base-64 encoding), and embedding it in the URL path. In another example, identifier strings may be embedded in fields such as user-agent (e.g., some malware samples use their MD5 hash as user-agent name), encoded in other request headers (e.g., in the referrer), or in the body of POST requests.
The following is a detailed example of a CPT generation process 500. To obtain CPTs, similar C&C requests may be grouped together. To this end, an appropriate similarity metric may be defined before clustering algorithms can be applied in 520. The system may use a set of heuristics to detect strings that represent data of a certain type, and may replace them accordingly using a placeholder tag containing the data type and string length. For example, “fa45e” may be identified as lowercase hexadecimal because it contains numeric characters and the alphabetic characters are all valid lowercase hexadecimal digits. Example data types which may be identified include integer, hexadecimal (upper, lower and mixed case), base64 (standard and URL safe), and string (upper, lower and mixed case). In addition, for integer, hexadecimal, and string, the system may identify the data type plus additional punctuation such as “:” or “.” (e.g., 192.168.1.1 may be identified as a data type of integer+period of length 11). Furthermore, the system may be extended to support data types such as IP address, MAC address, MD5 hash, and version number.
Similar C&C requests may be grouped together before extracting the templates, as set forth above in 520. This clustering step may assist the automatic CPT generation algorithm, improving efficiency and yielding templates that may be generic enough to match similar C&C communications in new traffic, and precise enough to generate very few or no false positives. C&C request clustering may be performed in two phases. During the first phase, C&C requests may be grouped based on their destination IPs. For example, two C&C requests may be grouped together if their destination IPs reside in /24 (or class C) networks that share a DNS-based relationship. In this example, two /24 networks may be related if there exists at least one domain name which resolved to different IP addresses residing in the two different networks. To find such relationships, a large passive DNS database may be used. In the second phase, one coarse-grained cluster at a time may be evaluated, and a cluster's C&C requests may be finely grouped according to a content similarity function. An agglomerative hierarchical clustering algorithm may be used group together C&C requests within a coarse-grained cluster that carry similar generalized URLs, similar user-agent strings, similar numbers of HTTP header fields and respective values, etc. When measuring the similarity between two requests, both the similarity and specificity of the requests' content may be considered, where the specificity (or low “popularity”) may be measured with respect to a dataset of traffic recently collected from different networks.
Once C&C requests have been clustered, a CPT may be generated from each cluster, as set forth above in 525. At this stage, only clusters that contain at least one HTTP request to a known C&C domain may be considered. Each template may represent a summary of all C&C requests in a cluster, and may contain the following components:
Median URL path: median path string that minimizes the sum of edit distances from all URL paths in the requests.
URL query component: stores the set of parameter names and value types and lengths observed in the query component of each of the URLs.
User-agent: the set of all different (generalized) user agent strings found in the requests.
Other headers: the set of other HTTP headers observed in the requests and responses. For each header, the length and value string may also be stored.
Dst. networks: the set of all destination /24 networks associated with the C&C requests in the cluster.
Request Content: the set of data-types, encodings and lengths for the content found in the requests.
Response Content: the set of data-types, encodings and lengths for the content found in the responses.
Malware family: the (set of) malware family name(s) associated to the known C&C requests in the cluster.
In addition, each CPT may include the following deployment related information:
URL regex: to increase the efficiency of the template matching phase, each template includes a regular expression automatically generated from the set of URL strings in the requests. The URL regex may be built to be fairly generic, and is used during deployment to filter out traffic that is unlikely to closely match the entire template, thus reducing the cost of computing the similarity between HTTP requests in live traffic and the template.
Background traffic profile: information derived from the traffic observed in the deployment environment within the past W days (where W is a system parameter). This is used for computing the specificity of the CPT components, thus allowing to adapt the CPT to the deployment network.
Once the CPTs are deployed, the traffic classification process 400 may label an HTTP request as C&C if it matches a CPT with both high similarity and specificity, as set forth above in 450. To this end, a specificity score may be computed for each element of a component, which indicates how “unpopular” that element is with respect to the traffic profile in the deployment network. Computing URL, specificity may rely on a supervised classification approach. For example, given a dataset of traffic collected from a large network, all URLs may be extracted. A map of URL word frequencies may be generated, where the “words” are extracted by tokenizing the URLs (e.g., extracting elements of the URL path, filename, query string, etc.). Then, if there is a new URL, it may be translated into a feature vector in which the statistical features measure things such as the average frequency of single “words” in the tokenized URL, the average frequency of word bigrams, the average frequency of the query parameters, the frequency of the file name, etc. (to extract the frequency values for each word found in the URL, previously learned maps of word frequencies may be looked up).
After a large set of “background traffic URLs” has been translated into feature vectors, an SVM classifier that can label new URLs as either popular or unpopular may be trained. First, the “background URLs” may be ranked according to their domain based popularity (i.e., URLs that appear on requests to multiple sites on different domain names may be considered more popular). Then, a sample of URLs may be obtained from the top and from the bottom of this ranking, which may be labeled as popular and unpopular, respectively. This labeled dataset may be used to train the SVM classifier, and the max margin approach used by the SVM may produce a model that can generalize to URLs not seen during training. The trained classifier may then be used in the traffic classification process 400 (e.g., to measure specificity in 450).
During the operational phase (once the SVM classifier is trained and deployed), a URL may be translated into its corresponding feature vector, which may be fed to the SVM classifier. The classifier can then label the URL as either popular or unpopular. In some embodiments, only the classification score (or confidence) associated with the popular class may be considered. Therefore, the SVM's output can be interpreted as follows: the higher the score, the more the URL “looks like” a popular URL, when compared to the large set of URLs observed in the background traffic. Finally a specificity score for the URL may be computed.
Template matching, as set forth in 450, may be performed in two phases. Each template may contain an URL regular expression automatically derived from the C&C requests in a cluster. An HTTP request may be tested for template matching by comparing its URL to the template's URL regex. As noted above, the URL regex may be intentionally built to be fairly generic, and may be used to efficiently filter out traffic that is very unlikely to match the entire template. Furthermore, the destination IP may be checked to determine whether it resides within any of the /24 prefixes in the template. If neither the URL regex nor the destination IP have a match, the HTTP request may be assumed to not match. Otherwise, the entire content of the request may be considered, including transforming the request according to the request generalization process and measuring the overall matching score between the generalized request and the template.
Similarity between data being analyzed, such as an HTTP request, and a CPT may be determined as follows: To determine if a new HTTP request r matches a CPT, a matching score may be computed using a similarity function that compares each element of a request with its respective counterpart in a template using a dynamic weighting function. The dynamic weighting function may be a function of both the similarity and the specificity of the component of the CPT. For example, given an HTTP request r and a CPT t, a matching score S(r,t) may be determined according to Equation 1: S(r,t)=(Σkωk(sk,σk)*sk(rk,tk))/(Σkωk(sk,σk))*σd, where sk is a similarity function that compares each element tk of t with its respective counterpart rk of r, and where ωk is a dynamic weight that is a function of both the similarity sk and the specificity σk of the k-th component of t. The denominator may scale S(r,t) between zero and one.
The factor σd may be the specificity of the destination domain d of request r, which may be computed as σd=1−(md/(maxi{mdi})) where md is the number of hosts in the deployment network's traffic that queried domain d and maxi{mdi} is the number of hosts that queried the most popular domain in the traffic. Accordingly, σd may be used to decrease the matching score S(r,t) for low-specificity domains (i.e., domains queried by a large number of hosts), because infections of a specific malware family may affect a relatively limited fraction of all hosts in an enterprise network, as modern malware may propagate relatively “slowly” via drive-by downloads or social engineering attacks. In turn, it may be unlikely that a new C&C domain will be queried by a very large fraction (e.g., >50%) of all hosts in the monitored network within a limited amount of time (e.g., one day).
The details of the similarity functions sk ( ) used in Equation 1, and the selections of their specificity values, may be as follows. In addition, we further
s1—Given the path of the URL associated to r, the normalized edit distance between the path and the CPT's median URL path t1 may be measured. The URL path specificity σ1 may be computed as discussed above.
s2a —A Jaccard similarity between the set of parameter names in the URL query-string of r and the set of names in t2 may be measured. The specificity of the parameter names σ2a may be equal to σ2.
s2b—The data types and lengths of the values in the generalized URL query-string parameters may be compared. For each element of the query string, a score of one may be assigned if its data type in r matches the data type recorded in t2. Furthermore, the ratio between the value length in r and in t2 may be computed. Finally, s2b may be computed by averaging all these scores, wherein the more data types and lengths that match, the higher the similarity score. As in s2a, σ2b may be equal to σ2.
s3—The normalized edit distance between the (generalized) user-agent string in r and each of the strings in the set t3 may be computed. Let dm be the smallest of such distances, where m is the closets of the template's user-agent strings. Define s3=1−dm and set the specificity σ3=σ3;m.
s4—Given the remaining request header fields in r, the similarity may be measured from different perspectives. First, a Jaccard similarity j between the set of headers in r and the set t4 may be computed. Furthermore, the order of the headers as they appear in r and in the requests from which t was derived may be considered. If the order matches, a variable o=1 may be set, otherwise o=0. Finally, for each header, the ratio between the length of its value as it appears in r and in t5, respectively, may be compared. The similarity s4 may be defined as the average of all these partial similarity scores (i.e., of j, o, and the length ratios). The specificity score may be set as σ5=min1{σ5,hdi} where the hdl are the request headers.
s5—Let p be the destination IP of request r. If p resides within any of the /24 network prefixes in t5, s5=1, otherwise s5=0. Assume p is within prefix net5 (in which case s5=1). In this case, the specificity may be set as σ5=σ5,n.
The dynamic weights wk( ) may be computed according to Equation 2: ωk (sk,σk)={acute over (ω)}k(I+(1/(2−sk*σk)n)), where {acute over (ω)}k is a static weight (i.e., it takes a fixed value), and n is a configuration parameter. Notice that ωkϵ({acute over (ω)}k(1+1/2n),2{acute over (ω)}k), and that these weights are effectively normalized by the denominator of Equation 1, thus resulting in S(r,t)ϵ[0,1].
The dynamic weights may be used to give higher weight to components of a request r that match their respective counterpart in a CPT with both high similarity and high specificity. In fact, the weight may be maximum when both the similarity and specificity are equal to one, and may tend to the minimum when either the similarity or specificity (or both) tend to zero.
While various embodiments have been described above, it should be understood that they have been presented by way of example and not limitation. It will be apparent to persons skilled in the relevant art(s) that various changes in form and detail can be made therein without departing from the spirit and scope. In fact, after reading the above description, it will be apparent to one skilled in the relevant art(s) how to implement alternative embodiments.
In addition, it should be understood that any figures which highlight the functionality and advantages are presented for example purposes only. The disclosed methodology and system are each sufficiently flexible and configurable such that they may be utilized in ways other than that shown.
Furthermore, although the term “at least one” may often be used in the specification, claims and drawings, the terms “a”, “an”, “the”, “said”, etc. also signify “at least one” or “the at least one” in the specification, claims and drawings. Additionally, the terms “including” and “comprising” in the specification, claims and drawings signify “including, but not limited to.”
Finally, it is the applicant's intent that only claims that include the express language “means for” or “step for” be interpreted under 35 U.S.C. 112, paragraph 6. Claims that do not expressly include the phrase “means for” or “step for” are not to be interpreted under 35 U.S.C. 112, paragraph 6.
This application claim the benefit of U.S. Provisional Patent Application No. 61/835,358, filed Jun. 14, 2014, which is incorporated by reference in its entirety as if fully set forth herein.
Number | Name | Date | Kind |
---|---|---|---|
4843540 | Stolfo | Jun 1989 | A |
4860201 | Stolfo et al. | Aug 1989 | A |
5363473 | Stolfo et al. | Nov 1994 | A |
5497486 | Stolfo et al. | Mar 1996 | A |
5563783 | Stolfo et al. | Oct 1996 | A |
5668897 | Stolfo | Sep 1997 | A |
5717915 | Stolfo et al. | Feb 1998 | A |
5748780 | Stolfo | May 1998 | A |
5920848 | Schultzer et al. | Jul 1999 | A |
6401118 | Thomas | Jun 2002 | B1 |
6738908 | Bonn | May 2004 | B1 |
6983320 | Thomas et al. | Jan 2006 | B1 |
7013323 | Thomas et al. | Mar 2006 | B1 |
7039721 | Wu et al. | May 2006 | B1 |
7043759 | Kaashoek | May 2006 | B2 |
7069249 | Stolfo et al. | Jun 2006 | B2 |
7093292 | Pantuso | Aug 2006 | B1 |
7136932 | Schneider | Nov 2006 | B1 |
7152242 | Douglas | Dec 2006 | B2 |
7162741 | Eskin et al. | Jan 2007 | B2 |
7185368 | Copeland, III | Feb 2007 | B2 |
7203959 | Nachenberg et al. | Apr 2007 | B2 |
7225343 | Honig et al. | May 2007 | B1 |
7277961 | Smith et al. | Oct 2007 | B1 |
7278163 | Banzhof et al. | Oct 2007 | B2 |
7290283 | Copeland, III | Oct 2007 | B2 |
7331060 | Ricciulli | Feb 2008 | B1 |
7372809 | Chen et al. | May 2008 | B2 |
7383577 | Hrastar et al. | Jun 2008 | B2 |
7424619 | Fan et al. | Sep 2008 | B1 |
7426576 | Banga et al. | Sep 2008 | B1 |
7448084 | Apap et al. | Nov 2008 | B1 |
7475426 | Copeland, III | Jan 2009 | B2 |
7483947 | Starbuck et al. | Jan 2009 | B2 |
7487544 | Schultz et al. | Feb 2009 | B2 |
7512980 | Copeland et al. | Mar 2009 | B2 |
7519818 | Levin et al. | Apr 2009 | B2 |
7519994 | Judge et al. | Apr 2009 | B2 |
7536360 | Stolfo et al. | May 2009 | B2 |
7549169 | Sobel et al. | Jun 2009 | B1 |
7634808 | Szor et al. | Dec 2009 | B1 |
7639714 | Stolfo et al. | Dec 2009 | B2 |
7644150 | Nucci et al. | Jan 2010 | B1 |
7644151 | Jerrim et al. | Jan 2010 | B2 |
7657935 | Stolfo et al. | Feb 2010 | B2 |
7665131 | Goodman et al. | Feb 2010 | B2 |
7698442 | Krishnamurthy | Apr 2010 | B1 |
7712132 | Ogilvie | May 2010 | B1 |
7712134 | Nucci et al. | May 2010 | B1 |
7752125 | Kothari et al. | Jul 2010 | B1 |
7752665 | Robertson et al. | Jul 2010 | B1 |
7779463 | Stolfo et al. | Aug 2010 | B2 |
7784097 | Stolfo et al. | Aug 2010 | B1 |
7809670 | Lee et al. | Oct 2010 | B2 |
7818797 | Fan et al. | Oct 2010 | B1 |
7882542 | Neystadt | Feb 2011 | B2 |
7886358 | Copeland, III | Feb 2011 | B2 |
7890627 | Thomas | Feb 2011 | B1 |
7895326 | Jerrim et al. | Feb 2011 | B2 |
7913306 | Apap et al. | Mar 2011 | B2 |
7930353 | Chickering et al. | Apr 2011 | B2 |
7962798 | Locasto et al. | Jun 2011 | B2 |
7979907 | Schultz et al. | Jul 2011 | B2 |
7996288 | Stolfo | Aug 2011 | B1 |
8015414 | Mahone et al. | Sep 2011 | B2 |
8019764 | Nucci | Sep 2011 | B1 |
8065722 | Barford et al. | Nov 2011 | B2 |
8074115 | Stolfo et al. | Dec 2011 | B2 |
8161130 | Stokes et al. | Apr 2012 | B2 |
8170966 | Musat et al. | May 2012 | B1 |
8180916 | Nucci et al. | May 2012 | B1 |
8200761 | Tevanian | Jun 2012 | B1 |
8224994 | Schneider | Jul 2012 | B1 |
8260914 | Ranjan | Sep 2012 | B1 |
8341745 | Chau et al. | Dec 2012 | B1 |
8347394 | Lee | Jan 2013 | B1 |
8402543 | Ranjan et al. | Mar 2013 | B1 |
8418249 | Nucci et al. | Apr 2013 | B1 |
8484377 | Chen et al. | Jul 2013 | B1 |
8516585 | Cao et al. | Aug 2013 | B2 |
8527592 | Gabe | Sep 2013 | B2 |
8566928 | Dagon et al. | Oct 2013 | B2 |
8578497 | Antonakakis et al. | Nov 2013 | B2 |
8631489 | Antonakakis et al. | Jan 2014 | B2 |
8667583 | Polyakov et al. | Mar 2014 | B2 |
8826438 | Perdisci et al. | Sep 2014 | B2 |
8832829 | Manni et al. | Sep 2014 | B2 |
8869269 | Ramzan et al. | Oct 2014 | B1 |
9166994 | Ward et al. | Oct 2015 | B2 |
9306969 | Dagon et al. | Apr 2016 | B2 |
9516058 | Antonakakis et al. | Dec 2016 | B2 |
9525699 | Antonakakis et al. | Dec 2016 | B2 |
9571511 | Nelms et al. | Feb 2017 | B2 |
9680861 | Ward et al. | Jun 2017 | B2 |
9686291 | Antonakakis et al. | Jun 2017 | B2 |
20010014093 | Yoda et al. | Aug 2001 | A1 |
20010044785 | Stolfo et al. | Nov 2001 | A1 |
20010052007 | Shigezumi | Dec 2001 | A1 |
20010052016 | Skene et al. | Dec 2001 | A1 |
20010055299 | Kelly | Dec 2001 | A1 |
20020021703 | Tsuchiya et al. | Feb 2002 | A1 |
20020066034 | Schlossberg et al. | May 2002 | A1 |
20020166063 | Lachman et al. | Nov 2002 | A1 |
20020178238 | Fletcher | Nov 2002 | A1 |
20030065926 | Schultz et al. | Apr 2003 | A1 |
20030065943 | Geis et al. | Apr 2003 | A1 |
20030069992 | Ramig | Apr 2003 | A1 |
20030145233 | Poletto | Jul 2003 | A1 |
20030167308 | Schran | Sep 2003 | A1 |
20030167402 | Stolfo et al. | Sep 2003 | A1 |
20030204621 | Poletto et al. | Oct 2003 | A1 |
20030236995 | Fretwell, Jr. | Dec 2003 | A1 |
20040002903 | Stolfo et al. | Jan 2004 | A1 |
20040039798 | Hotz et al. | Feb 2004 | A1 |
20040044791 | Pouzzner | Mar 2004 | A1 |
20040088346 | Yeager | May 2004 | A1 |
20040088348 | Yeager | May 2004 | A1 |
20040111636 | Baffes et al. | Jun 2004 | A1 |
20040181687 | Nachenberg et al. | Sep 2004 | A1 |
20040187032 | Geis et al. | Sep 2004 | A1 |
20040205474 | Eskin et al. | Oct 2004 | A1 |
20040215972 | Sung et al. | Oct 2004 | A1 |
20050021848 | Jorgenson | Jan 2005 | A1 |
20050036501 | Chung et al. | Feb 2005 | A1 |
20050039019 | Delany | Feb 2005 | A1 |
20050044406 | Stute | Feb 2005 | A1 |
20050050377 | Chan | Mar 2005 | A1 |
20050060643 | Glass et al. | Mar 2005 | A1 |
20050086523 | Zimmer et al. | Apr 2005 | A1 |
20050108407 | Johnson et al. | May 2005 | A1 |
20050108415 | Turk et al. | May 2005 | A1 |
20050210534 | Krishnamurthy | Sep 2005 | A1 |
20050257264 | Stolfo et al. | Nov 2005 | A1 |
20050261943 | Quarterman et al. | Nov 2005 | A1 |
20050265331 | Stolfo | Dec 2005 | A1 |
20050278540 | Cho et al. | Dec 2005 | A1 |
20050281291 | Stolfo et al. | Dec 2005 | A1 |
20060015630 | Stolfo et al. | Jan 2006 | A1 |
20060015722 | Rowan et al. | Jan 2006 | A1 |
20060026682 | Zakas | Feb 2006 | A1 |
20060031483 | Lund et al. | Feb 2006 | A1 |
20060067240 | Kim | Mar 2006 | A1 |
20060068806 | Nam | Mar 2006 | A1 |
20060075084 | Lyon | Apr 2006 | A1 |
20060075494 | Bertman et al. | Apr 2006 | A1 |
20060078096 | Poyhonen | Apr 2006 | A1 |
20060143711 | Huang et al. | Jun 2006 | A1 |
20060146816 | Jain | Jul 2006 | A1 |
20060150249 | Gassen et al. | Jul 2006 | A1 |
20060156402 | Stone et al. | Jul 2006 | A1 |
20060168024 | Mehr | Jul 2006 | A1 |
20060174345 | Flanagan et al. | Aug 2006 | A1 |
20060176822 | Doyle et al. | Aug 2006 | A1 |
20060178994 | Stolfo et al. | Aug 2006 | A1 |
20060200539 | Kappler et al. | Sep 2006 | A1 |
20060212925 | Shull | Sep 2006 | A1 |
20060212942 | Barford et al. | Sep 2006 | A1 |
20060224677 | Ishikawa et al. | Oct 2006 | A1 |
20060230039 | Shull | Oct 2006 | A1 |
20060247982 | Stolfo et al. | Nov 2006 | A1 |
20060253581 | Dixon et al. | Nov 2006 | A1 |
20060253584 | Dixon | Nov 2006 | A1 |
20060259967 | Thomas et al. | Nov 2006 | A1 |
20060265436 | Edmond | Nov 2006 | A1 |
20060288415 | Wong | Dec 2006 | A1 |
20070050708 | Gupta et al. | Mar 2007 | A1 |
20070056038 | Lok | Mar 2007 | A1 |
20070064617 | Reves | Mar 2007 | A1 |
20070076606 | Olesinski | Apr 2007 | A1 |
20070083931 | Spiegel | Apr 2007 | A1 |
20070118669 | Rand et al. | May 2007 | A1 |
20070136455 | Lee et al. | Jun 2007 | A1 |
20070162587 | Lund et al. | Jul 2007 | A1 |
20070198679 | Duyanovich et al. | Aug 2007 | A1 |
20070209074 | Coffman | Sep 2007 | A1 |
20070239999 | Honig et al. | Oct 2007 | A1 |
20070253377 | Janneteau et al. | Nov 2007 | A1 |
20070274312 | Salmela et al. | Nov 2007 | A1 |
20070294339 | Ala-Kleemola et al. | Dec 2007 | A1 |
20070294419 | Ulevitch | Dec 2007 | A1 |
20080005555 | Lotem et al. | Jan 2008 | A1 |
20080016570 | Capalik | Jan 2008 | A1 |
20080028073 | Trabe et al. | Jan 2008 | A1 |
20080060054 | Srivastava | Mar 2008 | A1 |
20080060071 | Hennan et al. | Mar 2008 | A1 |
20080098476 | Syversen | Apr 2008 | A1 |
20080133300 | Jalinous | Jun 2008 | A1 |
20080155694 | Kwon et al. | Jun 2008 | A1 |
20080177736 | Spangler | Jul 2008 | A1 |
20080177755 | Stern et al. | Jul 2008 | A1 |
20080178293 | Keen et al. | Jul 2008 | A1 |
20080184371 | Moskovitch | Jul 2008 | A1 |
20080195369 | Duyanovich et al. | Aug 2008 | A1 |
20080201779 | Tahan et al. | Aug 2008 | A1 |
20080222729 | Chen et al. | Sep 2008 | A1 |
20080229415 | Kapoor et al. | Sep 2008 | A1 |
20080262985 | Cretu et al. | Oct 2008 | A1 |
20080263659 | Alme | Oct 2008 | A1 |
20080276111 | Jocoby et al. | Nov 2008 | A1 |
20090055929 | Lee et al. | Feb 2009 | A1 |
20090083855 | Apap et al. | Mar 2009 | A1 |
20090106304 | Song et al. | Apr 2009 | A1 |
20090138590 | Lee et al. | May 2009 | A1 |
20090171871 | Zhang et al. | Jul 2009 | A1 |
20090193293 | Stolfo et al. | Jul 2009 | A1 |
20090193497 | Kikuchi | Jul 2009 | A1 |
20090198997 | Yeap et al. | Aug 2009 | A1 |
20090210417 | Bennett | Aug 2009 | A1 |
20090222922 | Sidiroglou et al. | Sep 2009 | A1 |
20090241190 | Todd et al. | Sep 2009 | A1 |
20090241191 | Keromytis et al. | Sep 2009 | A1 |
20090254658 | Kamikura et al. | Oct 2009 | A1 |
20090254989 | Achan et al. | Oct 2009 | A1 |
20090254992 | Schultz et al. | Oct 2009 | A1 |
20090265777 | Scott | Oct 2009 | A1 |
20090282479 | Smith et al. | Nov 2009 | A1 |
20090327487 | Olson et al. | Dec 2009 | A1 |
20100011243 | Locasto et al. | Jan 2010 | A1 |
20100011420 | Drako et al. | Jan 2010 | A1 |
20100017487 | Patinkin | Jan 2010 | A1 |
20100023810 | Stolfo et al. | Jan 2010 | A1 |
20100031358 | Elovici et al. | Feb 2010 | A1 |
20100034109 | Shomura et al. | Feb 2010 | A1 |
20100037314 | Perdisci et al. | Feb 2010 | A1 |
20100043047 | Archer et al. | Feb 2010 | A1 |
20100054278 | Stolfo et al. | Mar 2010 | A1 |
20100064368 | Stolfo et al. | Mar 2010 | A1 |
20100064369 | Stolfo et al. | Mar 2010 | A1 |
20100071068 | Bauschert et al. | Mar 2010 | A1 |
20100074112 | Derr | Mar 2010 | A1 |
20100077481 | Polyakov et al. | Mar 2010 | A1 |
20100077483 | Stolfo et al. | Mar 2010 | A1 |
20100082758 | Golan | Apr 2010 | A1 |
20100138919 | Peng et al. | Jun 2010 | A1 |
20100146615 | Locasto et al. | Jun 2010 | A1 |
20100153785 | Keromytis et al. | Jun 2010 | A1 |
20100169970 | Stolfo et al. | Jul 2010 | A1 |
20100235915 | Memon et al. | Sep 2010 | A1 |
20100269175 | Stolfo et al. | Oct 2010 | A1 |
20100274970 | Treuhaft et al. | Oct 2010 | A1 |
20100275263 | Bennett et al. | Oct 2010 | A1 |
20100281539 | Burns et al. | Nov 2010 | A1 |
20100281541 | Stolfo et al. | Nov 2010 | A1 |
20100281542 | Stolfo et al. | Nov 2010 | A1 |
20100319069 | Granstedt et al. | Dec 2010 | A1 |
20100332680 | Anderson et al. | Dec 2010 | A1 |
20110040706 | Sen et al. | Feb 2011 | A1 |
20110041179 | Stahlberg | Feb 2011 | A1 |
20110055123 | Kennedy | Mar 2011 | A1 |
20110067106 | Evans et al. | Mar 2011 | A1 |
20110167493 | Song et al. | Jul 2011 | A1 |
20110167494 | Bowen et al. | Jul 2011 | A1 |
20110185423 | Sallam | Jul 2011 | A1 |
20110185428 | Sallam | Jul 2011 | A1 |
20110214161 | Stolfo et al. | Sep 2011 | A1 |
20110225644 | Pullikottil | Sep 2011 | A1 |
20120079101 | Muppala | Mar 2012 | A1 |
20120084860 | Cao et al. | Apr 2012 | A1 |
20120102568 | Tarbotton | Apr 2012 | A1 |
20120117641 | Holloway et al. | May 2012 | A1 |
20120143650 | Crowley et al. | Jun 2012 | A1 |
20120151585 | Lamastra et al. | Jun 2012 | A1 |
20120215909 | Goldfarb | Aug 2012 | A1 |
20130054802 | Donzis et al. | Feb 2013 | A1 |
20130174253 | Thomas et al. | Jul 2013 | A1 |
20130191915 | Antonakakis et al. | Jul 2013 | A1 |
20130232574 | Carothers | Sep 2013 | A1 |
20140059216 | Jerrim | Feb 2014 | A1 |
20140068763 | Ward et al. | Mar 2014 | A1 |
20140074838 | Akoglu | Mar 2014 | A1 |
20140090058 | Ward et al. | Mar 2014 | A1 |
20140289854 | Mahvi | Sep 2014 | A1 |
20150026808 | Perdisci et al. | Jan 2015 | A1 |
20150222654 | Crowley et al. | Aug 2015 | A1 |
20160156660 | Dagon et al. | Jun 2016 | A1 |
20160285894 | Nelms et al. | Sep 2016 | A1 |
Number | Date | Country |
---|---|---|
WO2002037730 | May 2002 | WO |
WO2002098100 | Dec 2002 | WO |
WO2007050244 | May 2007 | WO |
Entry |
---|
AAS et al. “Text Categorisation: A Survey” (Jun. 1999) Norwegian Computing Center, pp. 1-38. |
Abad et al. “Log Correlation for Intrusion Detection: A Proof of Concept” (2003) In Proceedings of the 19th Annual Computer Security Application Conference (ACSAC '03) (11 pages). |
Adamic et al. “Zipf's Law and the Internet” (2002) Glottometrics 3:143-150. |
Akritidis et al. “Efficient Content-Based Detection of Zero-Day Worms” (May 2005) IEEE International Conference in Communications 2:837-843. |
Alam et al. “Webinar: Intel Virtualization Technology of Embedded Applications” (2010) Intel (34 pages). |
Alexa “Alexa Search—Beta” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 25, 2006) http://www.alexa.com, pp. 1-3. |
Alliance “Collaborative Malware Collection and Sensing” (retrieved from Internet Archive on May 23, 2013, Archived Jan. 7, 2007) https://alliance.mwcollect.org, pp. 1-2. |
Anagnostakis et al. “Detecting Targeted Attacks Using Shadow Honeypots” (2005) Proceedings of the 14th USENIX Security Symposium pp. 129-144. |
Anderson et al. “Spamscatter: Characterizing Internet Scam Hosting Infrastructure” (Aug. 6-10, 2007) Proceedings of the USENIX Security Symposium, Article 10 (14 pages). |
Andrews “Negative Caching of DNS Queries (DNS NCACHE)” (Mar. 1998) http://tools.ietf.org/html.rfc2308 (20 pages). |
Antonakakis e tal. “Building a Dynamic Reputation System for DNS” (Aug. 11-13, 2010) 19th USENIX Security Symposium, Washington, DC (17 pages). |
Antonakakis et al. “Detecting Malware Domains in the Upper DNS Hierarchy” (Aug. 8-12, 2011) Proceedings of the 20th USENIX Security Symposium, Washington, DC pp. 1-16. |
Antonakakis et al. “From Throw-Away Traffic to Bots: Detecting the Rise of DGA-Based Malware” (2012) Proceedings of the 21st USENIX Conference on Security Symposium, Washington, DC (16 pages). |
Antonakakis et al. “The Command Structure of the Aurora Bonet” (2010) http://www.damballa.com/downloads/r_pubs/Aurora_Botnet_Command_Structure.pdf (31 pages). |
Antonakakis et al. “Unveiling the Network Criminal Infastructure of TDSS/TDL4” (undated) http://www.damballa.com/downloads/r_pubs/Damballa_tdss_td14_case_study_public.pdf (16 pages). |
Anubis “Analyzing Unknown Binaries” (retrieved from Internet Archive on May 23, 2013, Archived Apr. 9, 2008) http://anubis.seclab.tuwien.ac.at, pp. 1-2. |
Arends et al. “DNS Security Introduction and Requirements” (Mar. 2005) http://www.ietf.org/rfc/rfc4033.txt (20 pages). |
Arends et al. “Protocol Modifications for the DNS Security Extensions” (Mar. 2005) http://www.ietf.org/rfc/rfc4035.txt (50 pages). |
Arends et al. “Resource Records for the DNS Security Extensions” (Mar. 2005) http://www.ietf.org/rfc/rfc4034.txt (20 pages). |
Avira “More than security” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 29, 2006) http://www.avira.com, pp. 1-13. |
Axelsson “The Base-Rate Fallacy and the Difficulty of Intrusion Detection” (Aug. 2000) ACM Transactions on Information and System Security 3(3):186-205. |
Bacher et al. “Know Your Enemy: Tracking Botnets: Using Honeynets to Learn More About Bots” (Mar. 13, 2005) http://www.honeynet.org/papers/bots (8 pages). |
Baecher et al. “The Nepenthes Platform: An Efficient Approach to Collect Malware” (Sep. 2006) Proceedings of Recent Advances in Intrusion Detection (RAID 2006) LNCS 4219, pp. 165-184. |
Bailey et al. “Automated Classification and Analysis of Internet Malware” (Apr. 26, 2007) RAID 2007, LNCS 4637, pp. 178-197. |
Barford et al. “An Inside Look at Botnets” (2006) Special Workshop on Malware Detection, Advances in Information Security, Spring Verlag, pp. 171-192. |
Barham et al. “Xen and the Art of Virtualization” (Oct. 19-22, 2003) Proceedings of the 19th AMC Symposium (SOSP'03) pp. 164-177. |
Bayer et al. “Scalable, Behavior-Based Malware Clustering” (Feb. 10, 2009) Network and Distributed System Security Symposium (18 pages). |
Bayer et al. “TTAnalyze: A Tool for Analyzing Malware” (2006) Proceedings of the 15th Annual Conference European Institute for Computer Antivirus Research (EICAR), pp. 180-192. |
Bellard “QEMU, A Fast and Portable Dynamic Translator” (2005) USENIX Annual Technical Conference, pp. 41-46. |
Berger et al. “Assessing the Real-World Dynamics of DNS” (2012) Lecture Notes in Computer Science 7189:1-14. |
Berk et al. “Using Sensor Networks and Data Fusion for Early Detection of Active Worms” (2003) Sensors, and Command, Control, Communications, and Intelligence (C3il) Technologies for Homeland Defense and Law Enforcement II, Proceedings of SPIE 5071:92-104. |
Berners-Lee et al. “RFC3986—Uniform Resource Identifier (URI): Generic Syntax” (Jan. 2005) http://www.hjp.at/doc/rfc/rfc3986.html (62 pages). |
Biles “Detecting the Unknown with Snort and Statistical Packet Anomaly Detecting Engine” (2003) www.cs.luc.edu/˜pld/courses/447/sum08/class6/biles.spade.pdf pp. 1-9. |
Bilge et al. “Exposure: Finding Malicious Domains Using Passive DNS Analysis” (Feb. 6-9, 2011) 18th Annual Network and Distributed System Security Symposium (17 pages). |
Binkley et al. “An Algorithm for Anomaly-Based Botnet Detection” (Jul. 7, 2006) 2nd Workshop on Steps to Reducing Unwanted Traffic on the Internet (SRUTI '06), pp. 43-48. |
Bishop “Computer Security: Art and Science” (2003) Addison-Wesley Longman Publishing, Boston, MA. |
Bishop “Pattern Recognition and Machine Learning” (2006) Springer-Verlag New York, Inc., Secauscus, NJ. |
Bleedingsnort “Bleeding Edge Snort” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 26, 2006) http://www.bleedingsnort.com, pp. 1-3. |
Borders et al. “Protecting Confidential Data on Personal Computers With Storage Capsules” (2009) 18th USENIX Security Symposium, pp. 367-382. |
Borders et al. “Siren: Catching Evasive Malware (Short Paper)” (May 21-24, 2006) IEEE Symposium on Security and Privacy, pp. 78-85. |
Breiman “Bagging Predictors” (1996) Machine Learning 24:123-140. |
Brumley et al. “Automatically Identifying Trigger-Based Behavior in Malware: Botnet Detection” (2008) pp. 1-24. |
Brumley et al. “Tracking Hackers on IRC” (Dec. 8, 1999) http://www.doomded.com/texts.ircmirc/TrackingHackersonIRC.com.htm pp. 24-29. |
Caballero et al. “Measuring Pay-Per-Install: The Commoditization of Malware Distribution” (2011) Proceedings of the 20th USENIX Conference on Security (SEC'11) pp. 1-16. |
Caballero et al. “Polyglot: Automatic Extraction of Protocol Message Format Using Dynamic Binary Analysis” (Oct. 2007) Proceedings of ACM Conference on Computer and Communication Security pp. 1-15. |
Canavan “Symantec Security Response: W32.Bobax.D” (May 26, 2004) http://www.sarc.com/avcent/venc/data/w32.bobax.d.html, pp. 1-6. |
Chang et al. “LIBSVM: A Library for Support Vector Machines” (Jun. 14, 2007) ACM Transactions on Intelligent Systems and Technology, pp. 1-26. |
Cheung et al. “Modeling Multistep Cyber Attacks for Scenario Recognition” (Apr. 22-24, 2003) Proceedings of the Third DARPA Information Survivability Conference and Exposition (DISCEX III) 1:284-292. |
Christodorescu et al. “Mining Specifications on Malicious Behavior” (Sep. 3-7, 2007) ESEC/FSE'07, pp. 1-10. |
Christodorescu et al. “Semantics-Aware Malware Detection” (2005) In Proceedings of the 2005 IEEE Symposium on Security and Privacy, pp. 32-46. |
Cipher Trust “Zombie Stats” (Mar. 25, 2009) http://www.ciphertrust.com/resources/statistics/zombie.php, pp. 1-3. |
Collins et al. “Hit-List Worm Detection and Bot Identification in Large Networks Using Protocol Graphs” (2007) RAID 2007, LNCS 4637, pp. 276-295. |
Common Vulnerabilities and Exposures “CVE-2006-3439” (Jun. 27, 2012) http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3439, pp. 1-7. |
Conficker Working Group “Conficker Working Group: Lessons Learned” (Jan. 2011) Conficker_Working_Group_Lessons_Learned_Jun._17,_2010_final.pdf, pp. 1-59. |
Cooke et al. “The Zombie Roundup: Understanding, Detecting, and Disrupting Botnets”(Jun. 2005) USENIX Workshop on Steps to Reducing Unwanted Traffic on the Internet (SRUTI '05), pp. 39-44. |
Cristianini et al. “An Introduction to Support Vector Machines: and other Kernal-Based Learning Methods” (2000) Cambridge University Press, New York, NY, USA. |
Cuppens et al. “Alert Correlation in a Cooperative Intrusion Detection Framework” (2002) Proceedings of IEEE Symposium on Security and Privacy 2002, pp. 202-215. |
Cyber-Ta, http://cyber-ta.org/releases/botHunter/index.html, retrieved from Internet Archive on May 23, 2013, Archived Aug. 30, 2007, pp. 1-6. |
Dagon et al. “Corrupted DNS Resolution Paths” The Rise of a Malicious Resolution Authority (2008) Proceedings of Network and Distributed Security Symposium (NDSS '08), pp. 1-15. |
Dagon et al. “HoneyStat: Local Worm Detection Using Honeypots” (2004) RAID 2004, LNCS 3224, pp. 39-58. |
Dagon et al. “Modeling Botnet Propagation Using Time Zones” (Feb. 2-3, 2006) The 13th Annual Network and Distributed System Security Symposium 2006 (18 pages). |
Dagon et al. “Worm Population Control Through Periodic Response” (Jun. 2004) Technical Report, Georgia Institute for Technology, pp. 1-12. |
Daley et al. “Epidemic Modeling: An Introduction” (1999) Cambridge University Press, United Kingdom, pp. vii-ix, 7-15, and 27-38. |
Damballa webpage (retrieved from Internet Archive on May 23, 2013, Archived Jan. 28, 2007) http://damballa.com, pp. 1-10. |
Danchev “Leaked DIY Malware Generating Tool Spotted in the Wild” (Jan. 18, 2013) (6 pages) http://blog.webroot.com/2013/01/18/leaked-diy-malware-generating-tool-spotted-in-the-wild. |
Danchev “Web Based Botnet Command and Control Kit 2.0” (Aug. 22, 2008) http://ddanchev.blogspot.com/2008/08/web-based-botnet-command-and-control.html. (5 pages). |
De La Higuera et al. “Topology of Strings: Median String is NP-Complete” (2000) Theoretical Computer Science 230:39-48. |
Diekmann et al. “Mathematical Epidemiology of Infectious Diseases: Model Building, Analysis and Interpretation” (2000) John Wiley & Son, Ltd., New York, NY, pp. v-xv and 1-303. |
Dietrich et al. “Analyzing Distributed Denial of Service Tools: The Shaft Case” (Dec. 3-8, 2000) Proceedings of the 14th Systems Administration Conference (LISA 2000), New Orleans, Louisiana, USA, pp. 329-339. |
Dihe's IP-Index Browser (updated Oct. 13, 2012) http://ipindex.homelinux.net/index.php. (1 page). |
Dinaburg et al. “Ether: Malware Analysis Via Hardware Virtualization Extensions” (Oct. 27-31, 2008) CCS'08, pp. 1-12. |
Dingledine et al. “Tor: The Second-Generation Onion Router” (Aug. 9-13, 2004) Proceedings of the 13th USENIX Security Symposium, pp. 303-320. |
Dittrich “Active Response Continuum Research Project” (Nov. 14, 2005) http://staff.washington.edu/dittrich/arc (4 pages). |
DMOZ Open Directory Project, Dynamic DNS Providers List (Aug. 8, 2007) http://dmoz.org/Computers/Software/Internet/Servers/Address_Management/Dynamic_DNS_Services. |
DNSWLl “DNS Whitelist—Protection Against False Positives” (retrieved from Internet Archive on May 23, 2013, Archived Jul. 15, 2006) http://www.dnswl.org, pp. 1-4. |
DShield “Distributed Intrusion Detection System” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 29, 2006) http://www.dshield.org, pp. 1-2. |
Duda et al. “Pattern Classification, Second Edition” (2001) John Wiley & Sons, Inc., New York, NY, pp. vii-xx, and 1-654. |
Dyninst “An application program interface (API) for runtime code generation” (retrieved from Internet Archive on May 23, 2013, Archived Aug. 20, 2006) http://www.dyninst.org, pp. 1-2. |
Eckman et al. “STATL: An Attack Language for State-Based Intrusion Detection” (2002) Journal of Computer Security 10:71-103. |
Edmonds “ISC Passive DNS Architecture” (Mar. 2012) http://kb.isc.org/getAttach/30/AA-00654/passive-dns-architecture pp. 1-18. |
Egele et al. “A Survey on Automated Dynamic Malware-Analysis Techniques and Tools” (Feb. 2012) ACM Computing Surveys 44(2)(6):1-6:42. |
Ellis et al. “A Behavioral Approach to Worm Detection” (Oct. 29, 2004) WORM'04, pp. 1-11. |
Erdogan et al. “Hash-AV: Fast Virus Signature Matching by Cache-Resident Filters” (2007) Int. J. Secur. Netw. 2:50-59. |
Eris Free Network“Efnet Chat Network” (retrieved Dec. 27, 2016) http://www.efnet.org, pp. 1-3. |
Falliere et al. “W32.Stuxnet Dossier” (Feb. 2011) http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/w32_stuxnet_dossier.pdf, Version 1.4:1-69. |
Feldman et al. “The Text Mining Handbook: Advance Approaches in Analyzing Unstructured Data” (2007) Cambridge Univ. Press, New York, NY (TOC). |
Felegyhazi et al. “On the Potential of Proactive Domain Blacklisting” (2010) Third USENIX LEET Workshop, pp. 1-8. |
Ferrie “Anti-Unpacker Tricks” (2008) Proceedings of the 2nd International CARO Workshop, pp. 1-25. |
Ferrie “Attacks on More Virtual Machine Emulators” (2007) Symantec Advance Threat Research , http://pferrie.tripod.com/papers/attacks2.pdf (17 pages). |
Ferrie “Attacks on Virtual Machine Emulators” (2006) Symantec Advance Threat Research (13 pages). |
Fisher “Thwarting the Zombies” (Mar. 31, 2003) pp. 1-2. |
Fisher “Zeus Source Code Leaked” (May 10, 2011) http://threatpost.com/en_us/blogs/zeus-source-code-leaked-051011 (6 pages). |
Fogla et al. “Polymorphic Blending Attacks” (2006) Proceedings of 15th USENIX Security Symposium, pp. 241-256. |
Freiling et al. “Botnet Tracking: Exploring a Root-Cause Methodology to Prevent Distributed Denial-of-Service Attacks” (2005) ESORICS 2005, LNCS 3679, pp. 319-335. |
Fuller et al. “RFC 1519—Classless Inter-Domain Routing (CIDR): An Address Assignment and Aggregation Strategy” (Sep. 1993) http://www.faqs.org/rfcs/rfc1519.html pp. 1-30. |
Garera et al. “A Framework for Detection and Measurement of Phishing Attacks” (Nov. 2, 2007) WORM'07, pp. 1-8. |
Garfinkel et al. “A Virtual Machine Introspection Based Architecture for Intrusion Detection” (Feb. 2003) Proceedings of Network and Distributed Systems Security Symposium, pp. 1-16. |
Geide “Another Trojan Barnital Pattern” (May 6, 2011) http://research.zscaler.com/2011/05/another-trojan-bamital-pattern.html pp. 1-5. |
Gil “NSTX (IP-over-DNS) Howto” (Nov. 4, 2005) http://thomer.com/howtos/nstx.html pp. 1-5. |
Glenn “A Summary of DoS/DdoS Prevention, Monitoring and Mitigation Techniques in a Service Provider Environment” (Aug. 21, 2003) SANS Institute 2003, pp. ii-iv, and 1-30. |
Goebel “Rishi: Identify Bot Contaminated Hosts by IRC Nickname Evaluation” (Apr. 10, 2007) Hot Bots'07, pp. 1-12. |
Gomes et al. “Characterizing a Spam Traffic” (Oct. 25-27, 2004) ACM SIGCOMM Internet Measurement Conference (IMC '04), Taormina, Sicily, Italy, pp. 356-369. |
Gostev “Malware Evolution: Jan.-Mar. 2005” (Apr. 18, 2005) Viruslist.com http://viruslist.com/en/analysis?pubid=162454316, pp. 1-8. |
Gu et al. “Bothunter: Detecting Malware Infection Through IDS-Driven Dialog Correlation” (2007) Slides from Proceedings of 16th USENIX Security Symposium. |
Gu et al. “BotMiner: Clustering Analysis of Network Traffic Protocol-and-Structure-Independent Botnet Detection” (2008) USENIX Security Symposium, pp. 139-154. |
Gu et al. “BotSniffer: Detecting Botnet Command and Control Channels in Network Traffic” (Feb. 2008) Proceedings of the 1th Annual Network and Distributed System Security Symposium (NDSS'08), pp. 1-18. |
Gunderson “Global Ipv6 Statistics: Measuring the Current State of Ipv6 for Ordinary Users” (Oct. 24-30, 2008) http://meetings.ripe.net/ripe-57/presentations/Colitti-Global_Ipv6_statistics_-_Measuring_the_current_state_of_Ipv6_for_ordinary_users_.7gzD.pdf (slides 20 pages). |
Guo et al. “A Study of the Packer Problem and Its Solutions” (2008) Recent Advances in Intrusion Detection (RAID 2008), LNCS 5230, pp. 95-115. |
Halkidi et al. “On Clustering Validation Techniques” (2001) Journal of Intelligent Information Systems 17:107-145. |
Handlers (jclausing) (printed May 24, 2013) http://handlers.sans.org/jclausing/userdb.txt, pp. 1-149. |
Hanna “Using Snort to Detect Rogue IRC Bot Programs” (Oct. 8, 2004) Technical Report, SANS Institute 2004, pp. 1-17. |
Hao et al. “An Internet-Wide View into DNS Lookup Patterns” (2010) http://labs.verisign.com/projects/malicious-domain-names/white-paper/dns-imc2010.pdf, pp. 1-6. |
Hao et al. “Detecting Spammers with SNARE: Spatiotemporal Network-Level Automatic Reputation Engine” (2009) 18th USENIX Security Symposium, pp. 101-117. |
Hardin “The Scanner Tarpit Howto” (Jul. 20, 2002) http://www.impsec.org/linus/security/scanner-tarpit.html, Intro and TOC. |
Heinz et al. “IP Tunneling Through Nameserver” (Sep. 10, 2000) http://slahdot.org/story/00/09/10/2230242/ip-tunneling-through-nameservers, pp. 1-23. |
Higgins “Hacking a New DNS Attack: DNS Expert Disputes Georgia Tech and Google Research That Points to Malicious Deployment of Certain Types of DNS Servers” (Dec. 18, 2007) http://darkreading.com/taxonomy/index/printarticle/id/208803784, (2 pages). |
Higgins “Shadowserver to Build ‘Sinkhole’ Server to Find Errant Bots: New Initiative Will Emulate IRC, HTTP Botnet Traffic” (Sep. 24, 2008) http://darkreading.com/taxonomy/index/printarticle/id/211201241, (1 page). |
Hindocha et al. “Malicious Threats and Vulnerabilities in Instant Messaging” (Sep. 2003) Virus Bulletin International Conference, pp. 1-24. |
Holz “Anti-Honeypot Technology” (Dec. 2004) 21st Chaos Communication Congress, slides 1-57. |
Holz et al. “A Short Visit to the Bot Zoo” (2005) IEEE Security & Privacy, pp. 76-79. |
Holz et al. “Measuring and Detecting Fast-Flux Service Networks” (2008) Proceedings of NDSS (12 pages). |
Honeynet Project & Research Alliance “Know Your Enemy: Fast-Flux Service Networks: An Ever Changing Enemy” (Jul. 13, 2007) http://old.honeynet.org/papers/ff/fast-flux.html, pp. 1-10. |
Honeynets “Know Your Enemy: Honeynets” (May 31, 2006) http://www.honeypot.org/papers/honeynet, pp. 1-5. |
Hothorn et al. “Double-Bagging: Combining Classifiers by Bootstrap Aggregation” (2003) Pattern Recognition 36:1303-1309. |
Hund et al. “Return-Oriented Rootkits: Bypassing Kernel Code Integrity Protection Mechanisms” (2009) 18th USENIX Security Symposium, pp. 383-398. |
Hunt et al. “Detours: Binary Interception of WIN32 Functions” (Jul. 12-13, 1999) Proceedings of the 3rd USENIX Windows NT Symposium, pp. 1-9. |
Icann “Who is Privacy” (Jun. 3, 2005) www.gnso.icann.org/issues/whois-privacy/index/shtml. |
Ilgun et al. “State Transition Analysis: A Rule-Based Intrusion Detection Approach” (Mar. 1995) IEEE Transactions on Software Engineering 21(3):181-199. |
International Preliminary Report on Patentability for International Patent Application No. PCT/US2006/038611 dated Mar. 26, 2009. |
International Search Report and Written Opinion for International Patent Application No. PCT/US2006/038611 dated Jul. 8, 2008. |
Ishibashi e tal. “Detecting Mass-Mailing Worm Infected Hosts by Mining DNS Traffic Data” (Aug. 22-26, 2005) SIGCOMM''05 Workshops, pp. 159-164. |
Jacob “Jackstraws: Picking Command and Control Connections from Bot Traffic” (2011) Proceedings of the 20th USENIX Conference on Security (SEC'11), pp. 1-16. |
Jain et al. “Algorithms for Clustering Data” (1988) Prentice-Hall, Inc., Englewood Cliffs, NJ. |
Jain et al. “Data Clustering: A Review” (Sep. 1999) ACM Computing Surveys 31(3):264-323. |
Jang et al. “Bitshred: Feature Hashing Malware for Scalable Triage and Semantic Analysis” (Oct. 17-21, 2011) Proceedings of the 18th ACM Conference on Computer and Communications Security (CCS'11), pp. 309-320. |
Jiang et al. “Cerias Tech Report 2005-24: Virtual Playgrounds for Worm Behavior Investigation” (Feb. 2005) Purdue University, West Lafayette, IN, pp. 1-16. |
Jiang et al. “Identifying Suspicious Activities Through DNS Failure Graph Anaylsis” (2010) 18th IEEE International Conference on Network Protocols (ICNP' 10) Washington, DC, pp. 144-153. |
Jiang et al. “Profiling Self-Propagating Worms Via Behavioral Footprinting” (Nov. 3, 2006) WORM'06 (7 pages). |
Jiang et al. “Stealthy Malware Detection Through VMM-Based” (Oct. 29-Nov. 2, 2007) Out-of-the-Box Semantic View Reconstruction, CCS'07 (11 pages). |
Jiang et al. “Virtual Playgrounds for Worm Behavior Investigation” (2006) RAID 2005, LNCS 3858 (15 pages). |
John et al. “Studying Spamming Botnets Using Botlab” (2009) USENIX Symposium on Networked Systems Design and Implementation (NDSI), pp. 1-15. |
Jones et al. “The IPM Model of Computer Virus Management” (1990) Computers & Security 9:411-418. |
Jung “Fast Portscan Detection Using Sequential Hypothesis Testing” (2004) IEEE Symposium on Security Privacy, pp. 211-225. |
Jung et al. “An Empirical Study of Spam Traffic and the Use of DNS Black Lists” (Oct. 25-27, 2004) ACM SIGCOMM Internet Measurement Conference (ICM '04), Taormina, Sicily, Italy, pp. 370-375. |
Jung et al. “DNS Performance and the Effectiveness of Caching” (Oct. 2002) IEEE/ACM Transactions on Networking 10(5):589-603. |
Jung et al. “Modeling TTL-Based Internet Caches” (Mar. 2003) IEEE INFOCOM 2003, pp. 417-426. |
Kalt “RFC 2810—Internet Relay Chat: Architecture” (Apr. 2000) http://faqs.org/rfcs/rfc2810.html, pp. 1-12. |
Kandula et al. “Botz-4-Sale: Surviving Organized DdoS Attacks That Mimic Flash Crowds” (2004) Technical Report LCS TR-969, Laboratory for Computer Science, MIT, pp. 1-14. |
Kang et al. “Renovo: A Hidden Code Extract for Packed Executables” (Nov. 2, 2007) WORM'07, pp. 1-8. |
Karasaridis et al. “Wide-Scale Botnet Detection and Characterization” (Apr. 11-13, 2007) USENIX Workshop on Hot Topics in Understanding Botnets, HotBots'07, pp. 1-8. |
Kaspersky Lab's Global Research & Analysis Team (GreAT), “Full Analysis of Flame's Command & Control Servers” (Sep. 17, 2012) http://www.securelist.com/en/blog/750/Full_Analysis_of_Flames_Command_Control_Servers, pp. 1-19. |
Kephart et al. “Directed-Graph Epidemiological Models of Computer Viruses” (1991) IEEE Symposium on Security and Privacy, pp. 343-359. |
Kienzle et al. “Recent Worms: A Survey and Trends” (Oct. 27, 2003) in WORM '03 ACM Workshop on Rapid Malcode, Washington, DC, USA, pp. 1-10. |
Kim et al. “Autograph: Toward Automated, Distributed Worm Signature Detection” (2004) USENIX Security Symposium, pp. 1-22. |
Kim et al. “Measurement and Analysis of Worm Propagation on Internet Network Topology” (2004) IEEE, pp. 495-500. |
Kim et al. “Request Rate Adaptive Dispatching Architecture for Scalable Internet Server” (2000) IEEE International Conference on Cluster Computing (CLUSTER'00); pp. 289-296. |
Kivity et al. “KVM: The Linux Virtual Machine Monitor” (Jun. 27-30, 2007) Linux Symposium, pp. 225-230. |
Kolbitsch et al. “Effective and Efficient Malware Detection at the End Host” (2009) 18th USENIX Security Symposium, pp. 351-366. |
Kolter et al. “Learning to Detect and Classify Malicious Executables in the Wild” (Dec. 2006) Journal of Machine Learning Research 7:2721-2744. |
Krasser et al. “Real-Time and Forensic Network Data Analysis Using Animated and Coordinated Visualization” (Jun. 2005) 6th IEEE Information Assurance Workshop, pp. 1-8. |
Krebs “Bringing Botnets Out of the Shadows” (Mar. 21, 2006) Washingtonpost.com, http://www.washingtonpost.com/wp-dyn/content/article/2006/03/21/AR2006032100279_pf.html, pp. 1-4. |
Krebs “Ecological Methodology” (1989) Harper & Row, Publishers, New York, pp. v-x, 15-37, 155-166, and 190-194. |
Kreibich “Honeycomb: Automated NIDS Signature Creation Using Honeypots” (2003) http://www.cl.cam.ac.uk/research/srg/netos/papers/2003-honeycomb-signcomm-poster.pdf (1 page). |
Kreibich “Honeycomb: Automated Signature Creation Using Honeypots” (Mar. 26, 2007) http://www.icir.org/christian/honeycomb/index.html (3 pages). |
Kreibich et al. “Honeycomb—Creating Intrusion Detection Signatures Using Honeypots” (2003) ACM Workshop on Hot Topics in Networks (6 pages). |
Krishnan et al. “DNS Prefetching and Its Privacy Implications: When Good Things Go Bad” (2010) 3rd USENIX Conference on Large-Scale Exploits and Emergent Threats: Botnets, Spyware, Worms, and More (LEET'10), pp. 1-9. |
Kruegel et al. “Anomaly Detection of Web-Based Attacks” (Oct. 27-31, 2003) 10th ACM Conference on Computer and Communication Security (CCS '03), Washington, DC, USA, pp. 251-261. |
Kruegel et al. “Detecting Kernel-Level Rootkits Through Binary Analysis” (Dec. 2004) Annual Computer Security Applications Conference (ACSAC), pp. 91-100. |
Kruegel et al. “Polymorphic Worm Detection Using Structural Information of Executables” (2005) RAID 2005, pp. 207-226. |
Krzywinski “Port Knocking—Network Authentication Across Closed Ports” (2003) Sys Admin Magazine 12:12-17. |
Landwehr et al. “Logistic Model Trees” (2005) Machine Learning 59:161-205. |
Laurikari “TRE” (Jul. 22, 2006) https://github.com/laurikari/tre/blob/master/tre.spec, pp. 1-3. |
Li et al. “Hamsa: Fast Signature Generational for Zero-Day Polymorphic Worms with Provable Attack Resilience” (2006) IEEE Symposium on Security and Privacy, pp. 1-15. |
Ligh et al. “Malware Analyst's Cookbook and DVD” (2010) Wiley Publishing, Indianapolis, IN. |
Liston “Welcome to my Tarpit: The Tactical and Strategic Use of LaBrea” (Oct. 24, 2001) http://www.hackbusters.net/LaBrea/LaBrea.txt, pp. 1-4. |
Livades et al. “Using Machine Learning Techniques to Identify Botnet Traffic” (2006) 2nd IEEE LCN Workshop on Network Security (WoNS'2006), pp. 967-974. |
Lockdown Corp. “LockDown Security Bulletin—Sep. 23, 2001”, http://lockdowncorp.com/bots, pp. 1-8. |
LURHQ Threat Intelligence Group “Dabber Worm Analysis” (May 13, 2004) http://www.lurhq.com/dabber.html, pp. 1-4. |
Ma “NetGeo—The Internet Geographic Database” (Sep. 6, 2006) http://www.caida.org/tools/utilities/netgeo/index.xml, pp. 1-2. |
Malware Domains “DNS—BH Malware List” (retrieved from Internet Archive on May 23, 2013, Archived Dec. 28, 2007) httpa://malwaredomains.com, pp. 1-12. |
Mao et al. “A Precise and Efficient Evaluation of the Proximity Between Web Clients and Their Local DNS Servers” (2002) USENIX Annual Technical Conference, pp. 1-14. |
Martignoni et al. “OmniUnpack: Fast, Generic, and Safe Unpacking of Malware” (2007) Annual Computer Security Applicatoins Conference (ACSAC), pp. 431-441. |
Marx “Outbreak Response Times: Putting AV to the Test” (Feb. 2004) www.virusbtn.com, pp. 4-6. |
MathWorks Inc. “Simulink—Simulation and Model-Based Design” (Dec. 31, 2005) http://www.mathworks.com/products/simulink, pp. 1-2. |
McAfee “About McAfee Security” (printed May 23, 2013) http://www.mcafee.com/us, pp. 1-23. |
McCarty “Botnets: Big and Bigger” (2003) IEEE Security and Privacy Magazine 1:87-89. |
Mekky et al. “Detecting Malicious HTTP Redirections Using Trees of User Browser Activity” (2014) IEEE INFOCOM 2014, pp. 1159-1167. |
Microsoft Encyclopedia “Trojan: Java/Boonan” (last published Apr. 16, 2011) http://microsoft.com/security/portal/threat/encyclopedia/entry.apsx?Name=Trojan%3Ajava%2Fboonan, pp. 1-2. |
Mirkovic et al. “Internet Denial of Service: Attack and Defense Mechanisms” (2004) Prentice Hall Professional Technical Reference, pp. v-xxii and 1-372. |
Mockapetris “Domain Names—Concepts and Facilities” (Nov. 1987) Network Working Group, http://www.ietf.org/rfc/rfc1034.txt, pp. 1-52. |
Mockapetris “Domain Names—Implementation and Specification” (Nov. 1987) Network Working Group, http://www.ietf.org/rfc.rfc1035.txt, pp. 1-52. |
Moore “Inferring Internet Denial-of-Service Activity” (Aug. 13-17, 2001) 10th USENIX Security Symposium, pp. 1-14. |
Moore “Network Telescopes: Observing Small or Distant Security Events” (Aug. 8, 2002) http://www.caida.org/publications/presentations/2002/usenix_sec/usenix_sec_2002_files/frame.htm, pp. 1-64. |
Moore et al. “Code-Red: A Case Study on the Spread and Victims of an Internet Worm” (2002) http://www.icir.org/vern/imw-2002/imw2002-papers/209.ps/gz, pp. 1-12. |
Moore et al. “Internet Quarantine: Requirements for Containing Self-Propagating Code” (Mar. 2003)IEEE INFOCOM 2003, pp. 1-10. |
Moore et al. “Slammer Worm Dissection: Inside the Slammer Worm” (Jul.-Aug. 2003) IEEE Security & Privacy 1(4):33-39. |
Mozilla Foundation “Public Suffix List” (printed May 23, 2013) http://publicsuffic.org/, pp. 1-8. |
Newman “Networks: An Introduction” (Sep. 2010) Oxford University Press (TOC). |
Newsome et al. “Paragraph: Thwarting Signature Learning by Training Maliciously” (2005) Recent Advance in Intrusion Detection (RAID), pp. 1-21. |
Newsome et al. “Polygraph: Automatically Generating Signatures for Polymorphic Worms” (2005) IEEE Symposium on Security and Privacy (16 pages). |
Ning et al. “Constructing Attack Scenarios Through Correlation of Intrusion Alerts” (Nov. 18-22, 2002) Computer and Communications Security (CCS'02), pp. 1-10. |
Norman “Norman Sandbox Whitepaper”, Copyright Norman 2003, pp. 1-19. |
OARCI Website Development Group (retrieved from Internet Archive on Apr. 11, 2014, Archived Apr. 12, 2008) http://malfease.oarci.net, pp. 1-9. |
Oberheide et al. “CloudAV: N-Version Antivirus in the Network Cloud” (2008) 17th USENIX Security Symposium, pp. 91-106. |
OpenDNS “OpenDNS Makes Your Internet Work Better” (retrieved from Internet Archive May 23, 2013, Archived Sep. 9, 2006) http://www.opendns.com, pp. 1-25. |
OREANS “Understanding the Risks”( retrieved from Internet Archive on May 23, 2013, Archived Aug. 23, 2006) http://www.oreans.com/themida.php, pp. 1-12. |
Overton “Bots and Botnets: Risks, Issues and Prevention” (Oct. 5-7, 2005) 2005 Virus Bulletin Conference at the Burlington, Dublin, Ireland, http://arachnid.homeip.net/papers/VB2005-Bots_and_Botnets-1.0.2.pdf, pp. 1-28. |
Park et al. “Fast Malware Classification by Automated Behavioral Graph Matching” (2010) Proceedings of the Sixth Annual Workshop on Cyber Security and Information Intelligence Research (CSIIRW '10), ACM pp. 1-4. |
Paxson “Bro: A System for Detecting Network Intruders in Real-Time” (Jan. 26-29, 1998) 7th USENIX Security Symposium, pp. 1-22. |
PEID “PEID detects most common packers, cryptors and compliers for PE files” (retrieved from Internet Archive on May 23, 2013, Archived Dec. 4, 2007) http://www.peid.info, pp. 1-2. |
Pelleg et al. “X-Means: Extending K-Means with Efficient Estimation of the Number Of Clusters” (2000 International Conference on Machine Learning, pp. 1-8. |
Perdisci et al. “Behavioral Clustering of HTTP-Based Malware and Signature Generation Using Malicious Network Traces” (2010) USENIX Symposium on Networked Systems Design and Implementation (NSDI 2010), pp. 1-16. |
Perdisci et al. “Detecting Malicious Flux Service Networks Through Passive Analysis of Recursive DNS Traces” (2009) ACSAC, Honolulu, Hawaii, USA (10 pages). |
Perdisci et al. “Misleading Worm Signature Generators Using Deliberate Noise Injection” (2006) IEEE Symposium on Security and Privacy (15 pages). |
Perdisci et al. “Using an Ensemble of One-Class SVM Classifiers to Harden Payload-Based Anomaly Detection Systems” (Dec. 2006) 6th International Conference on Data Mining (ICDM'06), pp. 488-498. |
Perigaud “New Pill?” (Mar. 21, 2008) http://cert.lexsi.com/weblog/index.php/2008/03/21/223-new-pill, pp. 1-3. |
Platt “Probablistic Outputs for Support Vector Machines and Comparisons to Regularized Likelihood Methods” (Mar. 26, 1999) Advances in Large Margin Classifiers 10(3):61-74. |
Plonka et al. “Context-Aware Clustering of DNS Query Traffic” (2008) 8th IMC, pp. 1-13. |
Pointer “Eggdrop Development” (Oct. 1, 2005) http://www.eggheads.org, pp. 1-2. |
Porras “Inside Risks: Reflections on Conficker” (Oct. 2009) Communications of the ACM 52(10):23-24. |
Porras et al. “SRI International Technical Report: Conficker C Analysis” (Apr. 4, 2009) http://mtc.sri.com/Conficker/addendumC, pp. 1-24. |
Porras et al. “SRI International Technical Report: An Analysis of Conficker's Logic and Rendezvous Points” (Mar. 19, 2009) http://mtc.sri.com/Conficker, (31 pages). |
Provos “CITI Technical Report 03-1: A Virtual Honeypot Framework” (Oct. 21, 2003) http://www.citi.umich.edu/techreports/reports/citi-tr-03-1.pdf, pp. 1-12. |
Provos et al. “Virtual Honeypots: Form Botnet Tracking to Intrusion Detection” (2007) Addison-Wesley Professional (TOC). |
Ptacek “Side-Channel Detection Attacks Against Unauthorized Hyervisors” (Aug. 20, 2007) http://www.matasano.com/log/930/side-channel-detection-attacks-against-unauthorized-hypevisors, retrieved from Internet Archive on May 23, 2013, pp. 1-12. |
Puri “Bots & Botnet: An Overview” (Aug. 8, 2003) SANS Institute 2003 http://222.giac.com/practical/GSEC/Ramneek_Puri_GSEC.pdf, pp. 1-16. |
Qian et al. “On Network-Level Clusters for Spam Detection” (2010) USENIX NDSS Symposium, pp. 1-17. |
Qin et al. “Worm Detection Using Local Networks” (Feb. 2004) Technical Report GIT-CC-04-04, College of Computing, Georgia Institute of Technology, pp. 1-18. |
Quist “Covert Debugging Circumventing Software Armoring Techniques” (2007) Black Hat USA, pp. 1-5. |
R Developmental Core Team “R: A Language and Environment for Statistical Computing” (2008) R. Foundation for Statistical Computing, Vienna, Austria. |
Racine “Master's Thesis: Analysis for Internet Relay Chat Usage by DDoS Zombies” (Nov. 3, 2003) ftp://www.tik.ee.ethz.ch/pub/students/2003-2004-Wi/MA-2004-01.pdf, pp. 1-4. |
Raffetseder et al. “Detecting System Emulators” (2007) ISC, pp. 1-18. |
Rajab et al. “A Multifaceted Approach to Understanding the Botnet Phenomenon” (Oct. 25-27, 2006) ACM SIGCOMM/USENIX Internet Measurement Conference (ICM'06), 12 pages. |
Rajab et al. “On the Effectiveness of Distributed Worm Monitoring” (2005) 14th USENIX Security Symposium, pp. 1-13. |
Ramachandran et al. “Understanding the Network-Level Behavior of Spammers” (Sep. 11-16, 2006) 2006 Conference on Applications, Technologies, Architectures, and Protocols for Computer Communications (SIGCOMM'06), Pisa, Italy, pp. 291-302. |
Rieck et al. “Learning and Classification of Malware Behavior” (2008) DIMVA 2008, LNCS 5137, pp. 108-125. |
Roberts “Trend Micro Launches Anti-Botnet Service” (Sep. 25, 2006) InfoWorld http://www.infoworld.com/article/06/09/25/HNtrendintercloud_1.html, pp. 1-4. |
Roesch “SNORT—Lightweight Intrusion Detection for Networks” (Nov. 7-12, 1999) 13th System Administration Conference (LISA'99), pp. 229-238. |
Royal “Alternative Medicine: The Malware Analyst's Blue Pill” (2008) www.damballa.com/downloads/r_pubs/KrakenWhitepaper.pdf (3 pages). |
Royal “Alternative Medicine: The Malware Analyst's Blue Pill” (Aug. 6, 2008) Black Hat USA, pp. 1-33. |
Royal “Analysis of the Kracken Botnet” (Apr. 9, 2008) (13 pages). |
Royal et al. “PolyUnpack: Automating the Hidden-Code Extraction of Unpack-Executing Malware” (2006) Annual Computer Security Applications Conference (ACSAC), pp. 289-300. |
RSA Fraudaction Research Labs, “Anatomy of an Attack” (Apr. 1, 2011) http://blogs.rsa.com/fivner/anatomy-of-an-attack, pp. 1-17. |
Russinovich et al. “FileMon for Windows V7.04” (Nov. 1, 2006) http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx, (6 pages). |
Russinovich et al. “RegMon for Windows V7.04” (Nov. 1, 2006) http://technet.microsoft.com/en-us-sysinternals/bb896652.apsx. (4 pages). |
Rutkowska “Introducing Blue Pill” (Jun. 22, 2006) http://theinvisiblethings.blogspot.com/2006/06/introducing-blue-pill.html, pp. 1-26. |
Sato et al. “Extending Black Domain Name List by Using Co-Occurrence Relation Between DNS Queries” (2010) The Third USENIX LEET Workshop, pp. 1-22. |
Saydjari “Privacy-Enabled Global Threat Monitoring” (2006) IEEE Security & Privacy, pp. 60-63. |
Schechter et al. “Access for Sale: A New Class of Worm” (Oct. 27, 2003) ACM Workshop on Rapid Malcode (WORM '03), ACM SIGSAC, Washington, DC, USA, pp. 1-5. |
Shannon et al, “The Spread of the Witty Worm” (Mar. 19, 2004) http://www.caida.org/analysis/security/witty/index.xml, pp. 1-7. |
Sharif “Mechanisms of Dynamic Analysis and DSTRACE” pp. 1-10. |
Shevchenko “Domain Name Generator for Murofet” (Oct. 14, 2010) http://blog.threatexpert.com/2010/10/domain-name-generator-for-murofet.html, pp. 1-4. |
Shevchenko “Srizbi's Domain Calculator” (Nov. 28, 2008) http://blog.threatexpert.com/2008/11/srizbix-domain-calculator.html (3 pages). |
SIE ISC “ISC—Internet Systems Consortium” (retrieved from Internet Archive on May 23, 2013, Archived Dec. 29, 2008) https://sie.isc.org, pp. 1-2. |
Sieberg “Expert: Botnets No. 1 Emerging Internet Threat” (Jan. 31, 2006), CNN.com, CNN Technology News, http://www.cnn.com/2006/TECH/internet/01/31/furst/index.html, pp. 1-4. |
Siliconrealms “Silicon Realms Toolworks” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 4, 2006) http://www.siliconrealms.com, pp. 1-12. |
Singh “IRC Reconnaissance” (Jul. 24, 2006) (IRCRecon) Public IRC Heuristics (BotSniffer), pp. 1-3. |
Singh et al. “Automated Worm Fingerprinting” (Dec. 2004) ACM/USENIX Symposium System Design and Implementation (16 pages). |
Sinha et al. “Shades of Grey: On the Effectiveness of Reputation-Based Blacklists” (2008) 3rd International Conference on Malware , pp. 1-8. |
Sipser “Introduction to the Theory of Computation” (1996) International Thomson Publishing, Boston, MA. |
Sirainen “IRSSI” (updated May 8, 2013) http://en.wikipedia.org/wiki/Irssi, pp. 1-3. |
Smith “Dynamic DNS” (Aug. 7, 2006), providers list, http://www.technopagan.org/dynamic, pp. 1-24. |
Sommer et al. “Enhancing Byte-Level Network Intrusion Detection Signatures with Context” (Oct. 27-30, 2003) 10th ACM Conference on Computer and Communications Security CCS'03), pp. 262-271. |
Sophos “W32/IRCBot-TO” (published Nov. 10, 2010) http://www.sophos.com/virusinfo/analyses.w32ircbotto.html, pp. 1-2. |
Souders “Sharding Dominant Domains” (May 12, 2009) http://www.stevesouders.com/blog/2009/05/12/sharding-dominant-domains, pp. 1-3. |
Soumenkov et al. “TDL4—Top Bot” (Jun. 27, 2011) http://www.secuirlist.com/en/analysis/204792180/td14_top_bot pp. 1-18. |
Spamhaus (2013), http://www.spamhaus.org/sbl, retrieved from Internet Archive on May.23, 2013, Archived Sep. 24, 2006 (24 pages). |
Spamhaus (2016), http://www.spamhaus.org/zen/, retrieved from Internet Archive on Mar. 16, 2016, Archived Jul. 6, 2010 (3 pages). |
Spitzner “Honeypots: Tracking Hackers” (2003) Addison-Wesley, pp. vii-xiv, 73-139, 141-166, and 229-276. |
Staniford “Code Red Analysis Pages: July Infestation Analysis” (Nov. 18, 2001) http://silicondefense.org/cr/july.html, pp. 1-8. |
Staniford “How to Own the Internet in Your Spare Time” (Aug. 2002) 11th USENIX Security Symposium, San Francisco, CA (19 pages). |
Staniford et al. “Practical Automated Detection of Stealthy Portscans” (2002) Journal of Computer Security 10:105-136. |
Staniford-Chen et al. “GrIDS—A Graph Based Intrusion Detection System for Large Networks” (1996) 19th National Information Systems Security Conference, pp. 361-370. |
Stewart “Akak Trojan Analysis” (Aug. 31, 2004) http://www.secureworks.com/research/threats/akak, pp. 1-2. |
Stewart “Bobax Trojan Analysis” (May 17, 2004) http://www.lurhq.com/bobax.html, pp. 1-2. |
Stewart “Dipnet/Oddbob Worm Analysis” (Jan. 13, 2005) SecureWorks, http://www.secureworks.com/research/threats/dipnet, pp. 1-2. |
Stewart “I-Worm Baba Analysis” (Oct. 22, 2004) http://secureworks.com/research/threats/baba, pp. 1-7. |
Stewart “Phatbot Trojan Analysis” (Mar. 15, 2004) http://www.secureworks.com/research/threats/phatbot, pp. 1-3. |
Stewart “Sinit P2P Trojan Analysis” (Dec. 8, 2003) http://www.secureworks.com/research/threats/sinit, pp. 1-4. |
Stewart “Top Spam Botnets Exposed” (Apr. 8, 2008) http://www.secureworks.com/cyber-threat-intelligence/threats/topbotnets, pp. 1-11. |
Stone-Gross et al. “Pushdo Downloader Variant Generating Fake HTTP Requests” (Aug. 31, 2012) http://www.secureworks.com/cyber-threat-intelligence/threats/Pushdo_Downloader_Variant_Generating_Fake_HTTP_Requests, pp. 1-4. |
Stone-Gross et al. “Your Botnet is My Botnet: Analysis of a Botnet Takeover” (Nov. 9-13 2009) CCS'09 (13 pages). |
Stover et al. “Analysis of the Storm and Nugache Trojans: P2P is here” (Dec. 2007) Login, vol. 32, No. 6, pp. 18-27. |
Sullivan “Fighting Spam by Finding and Listing Exploitable Servers” (2006) Apricot, pp. 1-26. |
Swatt It “Bots, Drones, Zombies, Worms and Other Things That Go Bump in the Night” (2004) http://swatit.org/bots, pp. 1-6. |
Symantec “Symantec Internet Security Threat Report” (Sep. 2004) Cupertino, CA, VI:1-57. |
Symantec Global “Symantec Global Internet Security Threat Report: Trends for 2008” (Apr. 2009) Cupertino, CA, XIV:1-110. |
Szor, “The Art of Computer Virus Research and Defense” (Feb. 2005) Addison-Wesley Professional (TOC). |
Team Cymru “Developing Botnets” (2010) http://www.team-cymru.com/ReadingRoom/Whitepapers/2010/developing-botnets.pdf, pp. 1-3. |
Team Cymru “IP to ASN Mapping” (Mar. 23, 2013) http://www.team-cymru.org/Services/ip-to-asn.html, (6 pages). |
Templeton et al. “A Requires/Provides for Computer Attacks” (2000) 2000 Workshop on New Security Paradigms (NSPW'00), pp. 31-38. |
Temu “Bitzblaze: Binary Analysis for COTS Protection and Malicious Code Defense” (printed May 23, 2013) http://bitblaze.cs.berkeley.edu/temu.html, pp. 1-4. |
Thimbleby et al. “A Framework for Modeling Trojans and Computer Virus Infection” (1999) Computer Journal 41(7):444-458. |
Threat Encyclopedia “Virus:Win32/Expiro.Z” (Jun. 9, 2011) http://www.microsoft.com/security/portal/Threat/Encyclopedia/Entry.aspx, pp. 1-5. |
Threatfire “Threatfire protects when your antivirus can't” (retrieved from Internet Archive on May 23, 2013) http://www.threatfire.com, pp. 1-18. |
Trendmicro “2006 Press Releases: Trend Micro Takes Unprecedented Approach to Eliminating Botnet Threats with the Unveiling of InterCloud Security Service” (Sep. 25, 2006) http://www.trendmicro.com/en/about/news/pr/archive/2006/pr092506.htm, pp. 1-2. |
Trendmicro “InterCloud Security Service”, http:/www.trendmicro.com/en/products/nss/icss/evaluate/overiew.thm, pp. 1-2. |
Trendmicro website (retrieved Oct. 2013) http://www.trendmicro.com/en/home/us/home.htm. |
Uhlig et al. “Intel Virtualization Technology” (May 2005) Computer 38(5):48-56. |
Urbanek “RJava: Low-Level-R to Java Interface” (May 6, 2013) pp. 1-5. |
Uribl, http://www.uribl.com/about.shtml, retrieved from Internet Archive on Mar. 16, 2016, Archived Jul. 22, 2010, pp. 1-4. |
Valdes et al. “Probabilistic Alert Correlation” (2001) Recent Attack in Intrusion Detection, LNCS 2212:54-68. |
Valeur et al. “A Comprehensive Approach to Intrusion Detection Alert Correlation” (Jul. 2004) IEEE Transactions on Dependable and Secure Computing 1(3):146-169. |
Vasudevan et al. “Cobra: Fine-Grained Malware Analysis Using Stealth Localized-Executions” (2006) IEEE Symposium on Security and Privacy (S&P'06), pp. 264-279. |
Vasudevan et al. “Stealth Breakpoints” (2005) 21st Annual Computer Security Applications Conference (ACSAC), pp. 381-392. |
Vigna et al. “NetSTAT: A Network-Based Intrusion Detection Approach” (Dec. 7-11, 1998) 14th Annual Computer Security Applications Conference (ACSAC '98), pp. 25-34. |
Viruses “Troj/Agobot-IB” (printed Jun. 27, 2012) http://www.sophos.com/virusinfo/analyses/trojagobotib.html (1 page). |
Vixie “DNS Complexity” (Apr. 24, 2007) ACM Queue pp. 24-29. |
Vixie “What DNS is Not” (Dec. 2009) Communications of the ACM 52(12):43-47. |
Vixie et al. “RFC 2136: Dynamic Updates in the Domain Name System (DNS Update)” (Apr. 1997) http://www.faqs.org/rfcs.rfc2136.html, pp. 1-25. |
Vmware “Vmware Server” (retrieved from Internet Archive on May 23, 2013, Archived Sep. 26, 2006) http://www.vmware.com, pp. 1-32. |
Wang et al. “Anagram: A Content Anomaly Detector Resistant to Mimicry Attack” (2006) International Symposium on Recent Advances in Intrusion Detection (RAID), pp. 1-20. |
Wang et al. “Anomalous Payload-Based Network Intrusion Detection” (2004) 7th International Symposium on Recent Advances in Intrusion Detection (RAID 2004) (20 pages). |
Wang et al. “Anomalous Payload-Based Worm Detection and Signature Generation” (2005) International Symposium on Recent Advances in Intrusion Detection (RAID) (20 pages). |
Wang et al. “Automated Web Patrol with Strider HoneyMonkeys: Finding Web Sites That Exploit Browser Vulnerabilities” (2006) NDSS'06, pp. 1-15. |
Wang et al. “Modeling the Effects of Timing Parameters on Virus Propagation” (Oct. 27, 2003) ACM CCS Workshop on Rapid Malcode (WORM '03), Washington, DC, pp. 61-66. |
Wang et al. “The Dilemma of Covert Channels Searching” (2006) ICISC 2005, LNCS 3935, pp. 169-174. |
Weaver et al. “A Taxonomy of Computer Worms” (Oct. 27, 2003) WORM'03, pp. 11-18. |
Weaver et al. “Redirecting DNS for ADS and Profit” (Aug. 2011) USENIX Workshop on Free and Open Communications on the Internet (FOCI), pp. 1-6. |
Weaver et al. “Very Fast Containment of Scanning Worms” (Aug. 9-13, 2004) 13th USENIX Security Symposium, pp. 29-44. |
Weimer “Passive DNS Replication” (2005) http://www.enyo.de/fw/software/dnslogger, pp. 1-6. |
Weimer “Passive DNS Replication” (Apr. 2005) 17th Annual FIRST Conference on Computer Security Incident (13 pages). |
Welch et al. “Strike Back: Offensive Actions in Information Warfare” (1999) AMC New Security Paradigm Workshop, pp. 47-52. |
Wessels et al. “Measurements and Laboratory Simulations of the Upper DNS Hierarchy” (2005) PAM, pp. 1-10. |
Whyte “Exposure Maps: Removing Reliance on Attribution During Scan Detection” (2006) 1st USENIX Workshop on Hot Topics in Security, pp. 51-55. |
Whyte et al. “DNS-Based Detection of Scanning Worms in an Enterprise Network” (Feb. 3-4, 2005) 12th Annual Network and Distributed System Security Symposium, pp. 181-195. |
Wikipedia Definition “Storm Botnet”, printed Jan. 29, 2013) http://en.wikipedia.org/wiki/Storm_botnet, pp. 1-7. |
Wikipedia Definition “Windows Virtual PC”, http://en.wikipedia.org/wiki/Windows_Virtual_PC, Last Modified May 5, 2013, pp. 1-21. |
Willems et al. “Toward Automated Dynamic Malware Analysis Using CWSandbox” (2007) IEEE Security and Privacy, 5(2):32-39. |
Williams “What We Know (and Learn) for the Waledac Takedown” (Mar. 15, 2010) http://blogs.technet.com/b/mmpc/archive/2010/03/15/what-we-know-and-learned-form-the-waledac-takedown-aspx, pp. 1-3. |
Williamson et al. “Virus Throttling for Instant Messaging” (Sep. 2004) Virus Bulletin Conference, Chicago, IL, USA, pp. 1-13. |
Wolf “Technical Details of Srizbi's Domain Generation Algorithm” (Nov. 25, 2008) http://blog.fireeye.com/research/2008/11/technical-details-of-srizbis-domain-generation-algorithm.html, pp. 1-9. |
Wu et al. “AGREP—A Fast Approximate Pattern-Matching Tool” (1992) USENIX Technical Conference (10 pages). |
Wu et al. “An Effective Architecture and Algorithm for Detecting Worms with Various Scan Techniques” (Feb. 2004) 11th Annual Network and Distributed System Security Symposium (NDSS '04), pp. 1-14. |
Wurzinger et al. “Automatically Generating Models for Botnet Detection” (2009) 14th European Conference on Research in Computer Security (ESORICS'09), pp. 232-249. |
Xie et al. “Spamming Botnet: Signatures and Characteristics” (Aug. 17-22, 2008) ACM SIGCOMM 2008 Conference on Data Communications (SIGCOMM'08), pp. 171-182. |
Yadav et al. “Detecting Algorithmically Generated Malicious Domain Names” (Nov. 1-3, 2010) 10th Annual Conference of Internet Measurement (IMC'10), pp. 48-61. |
Yang et al. “CARDS: A Distributed System for Detecting Coordinated Attacks” (2000) Sec, pp. 1-10. |
Yegneswaran et al. “An Architecture for Generating Semantics-Aware Signatures” (2005) USENIX Security Symposium (16 pages). |
Yegneswaran et al. “Global Intrusion Detection in the DOMINO Overlay System” (Feb. 2004) Network and Distributed Security Symposium (NDSS) (17 pages). |
Yegneswaran et al. “On the Design and Use of Internet Sinks for Network Abuse Monitoring” (2004) RAID 2004, LNCS 3224, pp. 146-165. |
Yegneswaran et al. “Using Honeynets for Internet Situational Awareness” (Nov. 2005) Fourth Workshop on Hot Topics in Networks (HotNets IV), pp. 1-6. |
Yin et al. “Panorama: Capturing System-Wide Information Flow for Malware Detection and Analysis” (Oct. 29-Nov. 2, 2007) ACM Conference on Computer and Communication Security, pp. 1-13. |
Zdrnja et al. “Passive Monitoring of DNS Anomalies” (2007) DIMVA Conference, pp. 1-11. |
Zeus Tracker “Welcome to the ZeuS Tracaker” (retrieved from Internet Archive on May 23, 2013, Archived Oct. 26, 2010) https://zeustracker.abuse.ch, pp. 1-37. |
Zhang et al. “Detecting Stepping Stones” (Aug. 14-17, 2000) 9th USENIX Security Symposium, Denver, Colorado, USA, pp. 1-15. |
Zhang et al. “Highly Predictive Blacklisting” (2008) USENIX Security Symposium, pp. 107-122. |
Zhou et al., “Dissecting Android Malware: Characterization and Evolution” (2012) IEEE Symposium on Security and Privacy, pp. 95-109. |
Zhu et al. “Using Failure Information Analysis to Detect Enterprise Zombies” (2009) Lecture note of the Institute for Computer Science, Social-Informatics and Telecommunications Engineering 19(4):185-206. |
Zou et al. “Code Red Worm Propagation Modeling and Analysis” (Nov. 18, 2002) 9th ACM Conference on Computer and Communications Security (CCS '02), pp. 1-10. |
Zou et al. “Email Worm Modeling and Defense” (Oct. 27, 2004) 13th ACM International Conference on Computer and Communications Security (CCS '04) (6 pages). |
Zou et al. “Monitoring and Early Warning for Internet Worms” (Oct. 2003) 10th ACM Conference on Computer and Communications Security (CCS'03) (10 pages). |
Zou et al. “On the Performance of Internet Worm Scanning Strategies” (Nov. 2003) Technical Report TR-03-CSE-07, Umass ECE Dept. (16 pages). |
Zou et al. “Routing Worm: A Fast, Selective Attack Worm Based on IP Address Information” (Jun. 1-3, 2005) Technical Report: TR-03-CSE-06, Principles of Advanced and Distributed Simulation (PADS) pp. 199-206. |
Zou et al. “Worm Propagation Modeling and Analysis Under Dynamic Quarantine Defense” (Oct. 27, 2003) WORM'03, Washington, DC USA (10 pages). |
Kristoff, “Botnets, Detection and Mitigation: DNS-Based Techniques,” NU Security Day (2005) 23 pages, www.it.northwesterd.edu/bin/docs/bots_Kristoff_jul05.ppt. |
“Spamming Botnets: Signatures and Characteristics” Xie et al; ACM SIGCOMM. Settle. WA; Aug. 2008; 12 pages (Year: 2008). |
Number | Date | Country | |
---|---|---|---|
20170230393 A1 | Aug 2017 | US |
Number | Date | Country | |
---|---|---|---|
61835358 | Jun 2013 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 14305998 | Jun 2014 | US |
Child | 15427150 | US |