{ "data_id": "1113", "name": "KDDCup99", "exact_name": "KDDCup99", "version": 1, "version_label": null, "description": "**Author**: \n**Source**: Unknown - Date unknown \n**Please cite**: \n\nThis is a 10% stratified subsample of the data from the 1999 ACM KDD Cup (http:\/\/www.sigkdd.org\/kddcup\/index.php).\n\nModified by TunedIT (converted to ARFF format)\n\nhttp:\/\/www.sigkdd.org\/kddcup\/index.php?section=1999&method=info\nThis is the data set used for The Third International Knowledge Discovery and Data Mining Tools Competition, which was held in conjunction with KDD-99 The Fifth International Conference on Knowledge Discovery and Data Mining. The competition task was to build a network intrusion detector, a predictive model capable of distinguishing between ``bad'' connections, called intrusions or attacks, and \"good\" normal connections. This database contains a standard set of data to be audited, which includes a wide variety of intrusions simulated in a military network environment.\nThe training and test datasets are also available in the UC Irvine KDD archive.\n\n\n\n\nKDD Cup 1999: Tasks\n\nThis document is adapted from the paper Cost-based Modeling and Evaluation for Data Mining With Application to Fraud and Intrusion Detection: Results from the JAM Project by Salvatore J. Stolfo, Wei Fan, Wenke Lee, Andreas Prodromidis, and Philip K. Chan.\n\nIntrusion Detector Learning\n\nSoftware to detect network intrusions protects a computer network from unauthorized users, including perhaps insiders. The intrusion detector learning task is to build a predictive model (i.e. a classifier) capable of distinguishing between ``bad'' connections, called intrusions or attacks, and ``good'' normal connections.\n\nThe 1998 DARPA Intrusion Detection Evaluation Program was prepared and managed by MIT Lincoln Labs. The objective was to survey and evaluate research in intrusion detection. A standard set of data to be audited, which includes a wide variety of intrusions simulated in a military network environment, was provided. The 1999 KDD intrusion detection contest uses a version of this dataset.\n\nLincoln Labs set up an environment to acquire nine weeks of raw TCP dump data for a local-area network (LAN) simulating a typical U.S. Air Force LAN. They operated the LAN as if it were a true Air Force environment, but peppered it with multiple attacks.\n\nThe raw training data was about four gigabytes of compressed binary TCP dump data from seven weeks of network traffic. This was processed into about five million connection records. Similarly, the two weeks of test data yielded around two million connection records.\n\nA connection is a sequence of TCP packets starting and ending at some well defined times, between which data flows to and from a source IP address to a target IP address under some well defined protocol. Each connection is labeled as either normal, or as an attack, with exactly one specific attack type. Each connection record consists of about 100 bytes.\n\nAttacks fall into four main categories:\n\n* DOS: denial-of-service, e.g. syn flood;\n* R2L: unauthorized access from a remote machine, e.g. guessing password;\n* U2R: unauthorized access to local superuser (root) privileges, e.g., various ``buffer overflow'' attacks;\n* probing: surveillance and other probing, e.g., port scanning.\n\nIt is important to note that the test data is not from the same probability distribution as the training data, and it includes specific attack types not in the training data. This makes the task more realistic. Some intrusion experts believe that most novel attacks are variants of known attacks and the \"signature\" of known attacks can be sufficient to catch novel variants. The datasets contain a total of 24 training attack types, with an additional 14 types in the test data only.\n\nDerived Features\n\nStolfo et al. defined higher-level features that help in distinguishing normal connections from attacks. There are several categories of derived features.\n\nThe ``same host'' features examine only the connections in the past two seconds that have the same destination host as the current connection, and calculate statistics related to protocol behavior, service, etc.\n\nThe similar ``same service'' features examine only the connections in the past two seconds that have the same service as the current connection.\n\n\"Same host\" and \"same service\" features are together called time-based traffic features of the connection records.\n\nSome probing attacks scan the hosts (or ports) using a much larger time interval than two seconds, for example once per minute. Therefore, connection records were also sorted by destination host, and features were constructed using a window of 100 connections to the same host instead of a time window. This yields a set of so-called host-based traffic features.\n\nUnlike most of the DOS and probing attacks, there appear to be no sequential patterns that are frequent in records of R2L and U2R attacks. This is because the DOS and probing attacks involve many connections to some host(s) in a very short period of time, but the R2L and U2R attacks are embedded in the data portions of packets, and normally involve only a single connection.\n\nUseful algorithms for mining the unstructured data portions of packets automatically are an open research question. Stolfo et al. used domain knowledge to add features that look for suspicious behavior in the data portions, such as the number of failed login attempts. These features are called ``content'' features.\n\nA complete listing of the set of features defined for the connection records is given in the three tables below. The data schema of the contest dataset is available in machine-readable form.\n\nfeature name description type\nduration length (number of seconds) of the connection continuous\nprotocol_type type of the protocol, e.g. tcp, udp, etc. discrete\nservice network service on the destination, e.g., http, telnet, etc. discrete\nsrc_bytes number of data bytes from source to destination continuous\ndst_bytes number of data bytes from destination to source continuous\nflag normal or error status of the connection discrete\nland 1 if connection is from\/to the same host\/port; 0 otherwise discrete\nwrong_fragment number of ``wrong'' fragments continuous\nurgent number of urgent packets continuous\n\nTable 1: Basic features of individual TCP connections.\n\nfeature name description type\nhot number of ``hot'' indicators continuous\nnum_failed_logins number of failed login attempts continuous\nlogged_in 1 if successfully logged in; 0 otherwise discrete\nnum_compromised number of ``compromised'' conditions continuous\nroot_shell 1 if root shell is obtained; 0 otherwise discrete\nsu_attempted 1 if ``su root'' command attempted; 0 otherwise discrete\nnum_root number of ``root'' accesses continuous\nnum_file_creations number of file creation operations continuous\nnum_shells number of shell prompts continuous\nnum_access_files number of operations on access control files continuous\nnum_outbound_cmds number of outbound commands in an ftp session continuous\nis_hot_login 1 if the login belongs to the ``hot'' list; 0 otherwise discrete\nis_guest_login 1 if the login is a ``guest''login; 0 otherwise discrete\n\nTable 2: Content features within a connection suggested by domain knowledge.\n\nfeature name description type\ncount number of connections to the same host as the current connection in the past two seconds continuous\nNote: The following features refer to these same-host connections.\nserror_rate % of connections that have ``SYN'' errors continuous\nrerror_rate % of connections that have ``REJ'' errors continuous\nsame_srv_rate % of connections to the same service continuous\ndiff_srv_rate % of connections to different services continuous\nsrv_count number of connections to the same service as the current connection in the past two seconds continuous\nNote: The following features refer to these same-service connections.\nsrv_serror_rate % of connections that have ``SYN'' errors continuous\nsrv_rerror_rate % of connections that have ``REJ'' errors continuous\nsrv_diff_host_rate % of connections to different hosts continuous\n\nTable 3: Traffic features computed using a two-second time window.\n\n\n\n\nhttp:\/\/www.sigkdd.org\/kddcup", "format": "ARFF", "uploader": "Joaquin Vanschoren", "uploader_id": 2, "visibility": "public", "creator": null, "contributor": null, "date": "2014-10-07 00:08:19", "update_comment": null, "last_update": "2014-10-07 00:08:19", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/www.openml.org\/data\/download\/53996\/KDDCup99.arff", "default_target_attribute": "label", "row_id_attribute": null, "ignore_attribute": null, "runs": 25, "suggest": { "input": [ "KDDCup99", "This is a 10% stratified subsample of the data from the 1999 ACM KDD Cup (http:\/\/www.sigkdd.org\/kddcup\/index.php). Modified by TunedIT (converted to ARFF format) http:\/\/www.sigkdd.org\/kddcup\/index.php?section=1999&method=info This is the data set used for The Third International Knowledge Discovery and Data Mining Tools Competition, which was held in conjunction with KDD-99 The Fifth International Conference on Knowledge Discovery and Data Mining. The competition task was to build a network intr " ], "weight": 5 }, "qualities": { "NumberOfInstances": 494020, "NumberOfFeatures": 42, "NumberOfClasses": 23, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 34, "NumberOfSymbolicFeatures": 8, "REPTreeDepth3Kappa": 0.9988971312266157, "DecisionStumpKappa": 0.6313541396511838, "MaxMeansOfNumericAtts": 3025.615744284965, "MinMutualInformation": 0, "Quartile2SkewnessOfNumericAtts": 6.857161509564921, "RandomTreeDepth1AUC": 0.9996945523798426, "Dimensionality": 8.501680093923323e-5, "MaxMutualInformation": 1.35523481207834, "MinNominalAttDistinctValues": 1, "PercentageOfBinaryFeatures": 9.523809523809524, "Quartile2StdDevOfNumericAtts": 0.3063703007198145, "RandomTreeDepth1ErrRate": 0.0006011902352131492, "EquivalentNumberOfAtts": 3.0464990223286836, "MaxNominalAttDistinctValues": 66, "MinSkewnessOfNumericAtts": -2.730720002081981, "PercentageOfInstancesWithMissingValues": 0, "Quartile3AttributeEntropy": 1.1794205204211827, "RandomTreeDepth1Kappa": 0.9989828143677373, "J48.00001.AUC": 0.9998124266676002, "MaxSkewnessOfNumericAtts": 699.2124433470252, "MinStdDevOfNumericAtts": 0, "PercentageOfMissingValues": 0, "Quartile3KurtosisOfNumericAtts": 16753.68719151394, "AutoCorrelation": 0.9989210941279586, "RandomTreeDepth2AUC": 0.9996945523798426, "J48.00001.ErrRate": 0.0005161734342739161, "MaxStdDevOfNumericAtts": 988219.1012304234, "MinorityClassPercentage": 0.00040484190923444394, "PercentageOfNumericFeatures": 80.95238095238095, "Quartile3MeansOfNumericAtts": 0.7632226478684667, "CfsSubsetEval_DecisionStumpAUC": 0.9998531029294984, "RandomTreeDepth2ErrRate": 0.0006011902352131492, "J48.00001.Kappa": 0.9991266283084878, "MeanAttributeEntropy": 0.6690899426502444, "MinorityClassSize": 2, "PercentageOfSymbolicFeatures": 19.047619047619047, "Quartile3MutualInformation": 1.01592647172265, "CfsSubsetEval_DecisionStumpErrRate": 0.0006335775879519048, "RandomTreeDepth2Kappa": 0.9989828143677373, "J48.0001.AUC": 0.9998124266676002, "MeanKurtosisOfNumericAtts": 38633.597680610605, "NaiveBayesAUC": 0.9995423889487345, "Quartile1AttributeEntropy": 0.0007079545501908324, "Quartile3SkewnessOfNumericAtts": 122.81662381054784, "CfsSubsetEval_DecisionStumpKappa": 0.9989279515912826, "RandomTreeDepth3AUC": 0.9996945523798426, "J48.0001.ErrRate": 0.0005161734342739161, "MeanMeansOfNumericAtts": 146.81452198898603, "NaiveBayesErrRate": 0.07235941864701834, "Quartile1KurtosisOfNumericAtts": 0.8862972594099192, "Quartile3StdDevOfNumericAtts": 1.8519261488360026, "CfsSubsetEval_NaiveBayesAUC": 0.9998531029294984, "RandomTreeDepth3ErrRate": 0.0006011902352131492, "J48.0001.Kappa": 0.9991266283084878, "MeanMutualInformation": 0.51128243775429, "NaiveBayesKappa": 0.8804001687508135, "Quartile1MeansOfNumericAtts": 0.005095441480106124, "REPTreeDepth1AUC": 0.9998248628210425, "CfsSubsetEval_NaiveBayesErrRate": 0.0006335775879519048, "RandomTreeDepth3Kappa": 0.9989828143677373, "J48.001.AUC": 0.9998124266676002, "MeanNoiseToSignalRatio": 0.308650353000767, "NumberOfBinaryFeatures": 4, "Quartile1MutualInformation": 0.00067149347829, "REPTreeDepth1ErrRate": 0.0006517954738674548, "CfsSubsetEval_NaiveBayesKappa": 0.9989279515912826, "CfsSubsetEval_kNN1NAUC": 0.9998531029294984, "StdvNominalAttDistinctValues": 22.410138011941957, "J48.001.ErrRate": 0.0005161734342739161, "MeanNominalAttDistinctValues": 13.75, "Quartile1SkewnessOfNumericAtts": 1.697399448308625, "REPTreeDepth1Kappa": 0.9988971312266157, "CfsSubsetEval_kNN1NErrRate": 0.0006335775879519048, "kNN1NAUC": 0.9999073504487896, "J48.001.Kappa": 0.9991266283084878, "MeanSkewnessOfNumericAtts": 93.89777670131683, "Quartile1StdDevOfNumericAtts": 0.07218740700511843, "REPTreeDepth2AUC": 0.9998248628210425, "CfsSubsetEval_kNN1NKappa": 0.9989279515912826, "kNN1NErrRate": 0.0005728513015667381, "MajorityClassPercentage": 56.83777984696976, "MeanStdDevOfNumericAtts": 30076.651558982074, "Quartile2AttributeEntropy": 0.6054309607155589, "REPTreeDepth2ErrRate": 0.0006517954738674548, "ClassEntropy": 1.5576214467522707, "kNN1NKappa": 0.9990307782011224, "MajorityClassSize": 280790, "MinAttributeEntropy": -0, "Quartile2KurtosisOfNumericAtts": 50.29015664484426, "REPTreeDepth2Kappa": 0.9988971312266157, "REPTreeDepth3AUC": 0.9998248628210425, "DecisionStumpAUC": 0.9373301949137683, "MaxAttributeEntropy": 1.8848195745836882, "MinKurtosisOfNumericAtts": -1.9151390378034432, "Quartile2MeansOfNumericAtts": 0.05742265495327073, "REPTreeDepth3ErrRate": 0.0006517954738674548, "DecisionStumpErrRate": 0.21499129589895147, "MaxKurtosisOfNumericAtts": 490583.35258045973, "MinMeansOfNumericAtts": 0, "Quartile2MutualInformation": 0.4364078844691 }, "tags": [ { "uploader": "38960", "tag": "Chemistry" }, { "uploader": "2", "tag": "concept_drift" }, { "uploader": "38960", "tag": "Life Science" } ], "features": [ { "name": "label", "index": "41", "type": "nominal", "distinct": "23", "missing": "0", "target": "1", "distr": [ [ "back", "teardrop", "loadmodule", "neptune", "rootkit", "phf", "satan", "buffer_overflow", "ftp_write", "land", "spy", "ipsweep", "multihop", "smurf", "pod", "perl", "warezclient", "nmap", "imap", "warezmaster", "portsweep", "normal", "guess_passwd" ], [ [ "2203", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "979", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "9", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "107201", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "1589", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "30", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "21", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1247", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "280790", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "264", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1020", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "231", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "20", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1040", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "97277", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "53" ] ] ] }, { "name": "duration", "index": "0", "type": "numeric", "distinct": "2495", "missing": "0", "min": "0", "max": "58329", "mean": "48", "stdev": "708" }, { "name": "protocol_type", "index": "1", "type": "nominal", "distinct": "3", "missing": "0", "distr": [ [ "tcp", "udp", "icmp" ], [ [ "2203", "0", "9", "107201", "7", "4", "1416", "30", "8", "21", "2", "94", "7", "0", "0", "3", "1020", "103", "12", "20", "1039", "76812", "53" ], [ "0", "979", "0", "0", "3", "0", "170", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "25", "0", "0", "0", "19177", "0" ], [ "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "1153", "0", "280790", "264", "0", "0", "103", "0", "0", "1", "1288", "0" ] ] ] }, { "name": "service", "index": "2", "type": "nominal", "distinct": "66", "missing": "0", "distr": [ [ "vmnet", "smtp", "ntp_u", "shell", "kshell", "aol", "imap4", "urh_i", "netbios_ssn", "tftp_u", "mtp", "uucp", "nnsp", "echo", "tim_i", "ssh", "iso_tsap", "time", "netbios_ns", "systat", "hostnames", "login", "efs", "supdup", "http_8001", "courier", "ctf", "finger", "nntp", "ftp_data", "red_i", "ldap", "http", "ftp", "pm_dump", "exec", "klogin", "auth", "netbios_dgm", "other", "link", "X11", "discard", "private", "remote_job", "IRC", "daytime", "pop_3", "pop_2", "gopher", "sunrpc", "name", "rje", "domain", "uucp_path", "http_2784", "Z39_50", "domain_u", "csnet_ns", "whois", "eco_i", "bgp", "sql_net", "printer", "telnet", "ecr_i", "urp_i", "netstat", "http_443", "harvest" ], [ [ "0", "0", "0", "101", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0" ], [ "0", "0", "0", "120", "0", "0", "2", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "2", "9598", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "380", "0" ], [ "0", "0", "0", "111", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0" ], [ "0", "0", "0", "98", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "105", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "14", "0" ], [ "0", "0", "0", "106", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0" ], [ "0", "0", "0", "105", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "104", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "105", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "111", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "2", "0" ], [ "0", "0", "0", "102", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "1", "1", "0" ], [ "0", "0", "0", "115", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "103", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "52", "0" ], [ "0", "0", "0", "101", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "113", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0" ], [ "0", "0", "0", "102", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "102", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "102", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "101", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "107", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "96", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "177", "0", "0", "3", "0", "0", "20", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "1", "468", "0" ], [ "0", "0", "0", "106", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0" ], [ "0", "0", "3", "170", "1", "0", "3", "8", "4", "0", "0", "3", "3", "0", "0", "0", "708", "0", "0", "18", "2", "3798", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0" ], [ "0", "0", "0", "101", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "2203", "0", "0", "192", "0", "4", "2", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0", "0", "3", "61885", "0" ], [ "0", "0", "1", "104", "1", "0", "1", "1", "2", "0", "0", "1", "2", "0", "0", "0", "307", "0", "0", "2", "3", "373", "0" ], [ "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "99", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "106", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "108", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "220", "0" ], [ "0", "0", "0", "99", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "91", "3", "0", "1246", "0", "0", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "260", "5632", "0" ], [ "0", "0", "0", "99", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "9", "0" ], [ "0", "0", "0", "115", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "979", "0", "101317", "0", "0", "314", "0", "0", "0", "0", "68", "0", "0", "0", "0", "0", "124", "0", "0", "725", "7366", "0" ], [ "0", "0", "0", "118", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "42", "0" ], [ "0", "0", "0", "102", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "118", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "3", "79", "0" ], [ "0", "0", "0", "101", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "112", "0", "0", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "104", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0" ], [ "0", "0", "0", "97", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "108", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "112", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "3", "0" ], [ "0", "0", "0", "105", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "91", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "5862", "0" ], [ "0", "0", "0", "123", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0" ], [ "0", "0", "0", "107", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "1149", "0", "0", "0", "0", "0", "102", "0", "0", "0", "389", "0" ], [ "0", "0", "0", "106", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "109", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "107", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0" ], [ "0", "0", "5", "197", "5", "0", "1", "21", "0", "1", "2", "1", "2", "0", "0", "3", "0", "1", "0", "0", "2", "219", "53" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0", "280790", "259", "0", "0", "1", "0", "0", "1", "345", "0" ], [ "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "537", "0" ], [ "0", "0", "0", "92", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0" ], [ "0", "0", "0", "98", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] ] ] }, { "name": "flag", "index": "3", "type": "nominal", "distinct": "11", "missing": "0", "distr": [ [ "RSTR", "S3", "SF", "RSTO", "SH", "OTH", "S2", "RSTOS0", "S1", "S0", "REJ" ], [ [ "91", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "776", "31", "4" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "7", "2" ], [ "2105", "979", "9", "0", "10", "4", "187", "29", "8", "0", "2", "1161", "7", "280790", "264", "3", "1016", "128", "6", "20", "1", "91708", "2" ], [ "0", "0", "0", "455", "0", "0", "0", "1", "0", "0", "0", "3", "0", "0", "0", "0", "1", "0", "0", "0", "7", "67", "45" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "103", "4", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "7", "1", "0" ], [ "5", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "17", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "11", "0", "0" ], [ "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "54", "0" ], [ "0", "0", "0", "86744", "0", "0", "172", "0", "0", "21", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "18", "51", "0" ], [ "0", "0", "0", "20002", "0", "0", "1229", "0", "0", "0", "0", "83", "0", "0", "0", "0", "0", "0", "0", "0", "220", "5341", "0" ] ] ] }, { "name": "src_bytes", "index": "4", "type": "numeric", "distinct": "3300", "missing": "0", "min": "0", "max": "693375640", "mean": "3026", "stdev": "988219" }, { "name": "dst_bytes", "index": "5", "type": "numeric", "distinct": "10725", "missing": "0", "min": "0", "max": "5155468", "mean": "869", "stdev": "33040" }, { "name": "land", "index": "6", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "1", "0" ], [ [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "21", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0" ], [ "2203", "979", "9", "107201", "10", "4", "1589", "30", "8", "0", "2", "1247", "7", "280790", "264", "3", "1020", "231", "12", "20", "1040", "97276", "53" ] ] ] }, { "name": "wrong_fragment", "index": "7", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "3", "mean": "0", "stdev": "0" }, { "name": "urgent", "index": "8", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "3", "mean": "0", "stdev": "0" }, { "name": "hot", "index": "9", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "30", "mean": "0", "stdev": "1" }, { "name": "num_failed_logins", "index": "10", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "5", "mean": "0", "stdev": "0" }, { "name": "logged_in", "index": "11", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "1", "0" ], [ [ "2203", "0", "8", "0", "5", "4", "6", "30", "6", "0", "1", "4", "4", "0", "0", "3", "1020", "0", "1", "2", "0", "69938", "1" ], [ "0", "979", "1", "107201", "5", "0", "1583", "0", "2", "21", "1", "1243", "3", "280790", "264", "0", "0", "231", "11", "18", "1040", "27339", "52" ] ] ] }, { "name": "lnum_compromised", "index": "12", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "884", "mean": "0", "stdev": "2" }, { "name": "lroot_shell", "index": "13", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "lsu_attempted", "index": "14", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "2", "mean": "0", "stdev": "0" }, { "name": "lnum_root", "index": "15", "type": "numeric", "distinct": "20", "missing": "0", "min": "0", "max": "993", "mean": "0", "stdev": "2" }, { "name": "lnum_file_creations", "index": "16", "type": "numeric", "distinct": "18", "missing": "0", "min": "0", "max": "28", "mean": "0", "stdev": "0" }, { "name": "lnum_shells", "index": "17", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "2", "mean": "0", "stdev": "0" }, { "name": "lnum_access_files", "index": "18", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "8", "mean": "0", "stdev": "0" }, { "name": "lnum_outbound_cmds", "index": "19", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "is_host_login", "index": "20", "type": "nominal", "distinct": "1", "missing": "0", "distr": [ [ "1", "0" ], [ [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "2203", "979", "9", "107201", "10", "4", "1589", "30", "8", "21", "2", "1247", "7", "280790", "264", "3", "1020", "231", "12", "20", "1040", "97277", "53" ] ] ] }, { "name": "is_guest_login", "index": "21", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "1", "0" ], [ [ "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "2", "0", "0", "0", "307", "0", "0", "2", "0", "371", "1" ], [ "2203", "979", "9", "107201", "10", "4", "1589", "30", "6", "21", "2", "1247", "5", "280790", "264", "3", "713", "231", "12", "18", "1040", "96906", "52" ] ] ] }, { "name": "count", "index": "22", "type": "numeric", "distinct": "490", "missing": "0", "min": "0", "max": "511", "mean": "332", "stdev": "213" }, { "name": "srv_count", "index": "23", "type": "numeric", "distinct": "470", "missing": "0", "min": "0", "max": "511", "mean": "293", "stdev": "246" }, { "name": "serror_rate", "index": "24", "type": "numeric", "distinct": "92", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "srv_serror_rate", "index": "25", "type": "numeric", "distinct": "51", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "rerror_rate", "index": "26", "type": "numeric", "distinct": "77", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "srv_rerror_rate", "index": "27", "type": "numeric", "distinct": "51", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "same_srv_rate", "index": "28", "type": "numeric", "distinct": "99", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "diff_srv_rate", "index": "29", "type": "numeric", "distinct": "78", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "srv_diff_host_rate", "index": "30", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_count", "index": "31", "type": "numeric", "distinct": "256", "missing": "0", "min": "0", "max": "255", "mean": "232", "stdev": "65" }, { "name": "dst_host_srv_count", "index": "32", "type": "numeric", "distinct": "256", "missing": "0", "min": "0", "max": "255", "mean": "189", "stdev": "106" }, { "name": "dst_host_same_srv_rate", "index": "33", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "dst_host_diff_srv_rate", "index": "34", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_same_src_port_rate", "index": "35", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "dst_host_srv_diff_host_rate", "index": "36", "type": "numeric", "distinct": "65", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_serror_rate", "index": "37", "type": "numeric", "distinct": "100", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_srv_serror_rate", "index": "38", "type": "numeric", "distinct": "72", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_rerror_rate", "index": "39", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "dst_host_srv_rerror_rate", "index": "40", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" } ], "nr_of_issues": 0, "nr_of_downvotes": 0, "nr_of_likes": 0, "nr_of_downloads": 0, "total_downloads": 0, "reach": 0, "reuse": 0, "impact_of_reuse": 0, "reach_of_reuse": 0, "impact": 0 }