1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
|
<pre>Network Working Group M. Wood
Request for Comments: 4766 Internet Security Systems, Inc.
Category: Informational M. Erlinger
Harvey Mudd College
March 2007
<span class="h1">Intrusion Detection Message Exchange Requirements</span>
Status of This Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The IETF Trust (2007).
Abstract
The purpose of the Intrusion Detection Exchange Format Working Group
(IDWG) is to define data formats and exchange procedures for sharing
information of interest to intrusion detection and response systems
and to the management systems that may need to interact with them.
This document describes the high-level requirements for such a
communication mechanism, including the rationale for those
requirements where clarification is needed. Scenarios are used to
illustrate some requirements.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Conventions Used in This Document ..........................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Overview ........................................................<a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Rationale for IDMEF ........................................<a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. Intrusion Detection Terms ..................................<a href="#page-4">4</a>
<a href="#section-2.3">2.3</a>. Architectural Assumptions ..................................<a href="#page-8">8</a>
<a href="#section-2.4">2.4</a>. Organization of This Document ..............................<a href="#page-9">9</a>
<a href="#section-2.5">2.5</a>. Document Impact on IDMEF Designs ..........................<a href="#page-10">10</a>
<a href="#section-3">3</a>. General Requirements ...........................................<a href="#page-10">10</a>
<a href="#section-3.1">3.1</a>. Use of Existing RFCs ......................................<a href="#page-10">10</a>
<a href="#section-3.2">3.2</a>. IPv4 and IPv6 .............................................<a href="#page-10">10</a>
<a href="#section-4">4</a>. Message Format Requirements ....................................<a href="#page-11">11</a>
<a href="#section-4.1">4.1</a>. Internationalization and Localization .....................<a href="#page-11">11</a>
<a href="#section-4.2">4.2</a>. Message Filtering and Aggregation .........................<a href="#page-11">11</a>
<span class="grey">Wood & Erlinger Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<a href="#section-5">5</a>. IDMEF Communication Protocol (IDP) Requirements ................<a href="#page-12">12</a>
<a href="#section-5.1">5.1</a>. Reliable Message Transmission .............................<a href="#page-12">12</a>
<a href="#section-5.2">5.2</a>. Interaction with Firewalls ................................<a href="#page-12">12</a>
<a href="#section-5.3">5.3</a>. Mutual Authentication .....................................<a href="#page-13">13</a>
<a href="#section-5.4">5.4</a>. Message Confidentiality ...................................<a href="#page-13">13</a>
<a href="#section-5.5">5.5</a>. Message Integrity .........................................<a href="#page-13">13</a>
<a href="#section-5.6">5.6</a>. Per-source Authentication .................................<a href="#page-14">14</a>
<a href="#section-5.7">5.7</a>. Denial of Service .........................................<a href="#page-14">14</a>
<a href="#section-5.8">5.8</a>. Message Duplication .......................................<a href="#page-14">14</a>
<a href="#section-6">6</a>. Message Content Requirements ...................................<a href="#page-15">15</a>
<a href="#section-6.1">6.1</a>. Detected Data .............................................<a href="#page-15">15</a>
<a href="#section-6.2">6.2</a>. Event Identity ............................................<a href="#page-15">15</a>
<a href="#section-6.3">6.3</a>. Event Background Information ..............................<a href="#page-16">16</a>
<a href="#section-6.4">6.4</a>. Additional Data ...........................................<a href="#page-16">16</a>
<a href="#section-6.5">6.5</a>. Event Source and Target Identity ..........................<a href="#page-17">17</a>
<a href="#section-6.6">6.6</a>. Device Address Types ......................................<a href="#page-17">17</a>
<a href="#section-6.7">6.7</a>. Event Impact ..............................................<a href="#page-17">17</a>
<a href="#section-6.8">6.8</a>. Automatic Response ........................................<a href="#page-18">18</a>
<a href="#section-6.9">6.9</a>. Analyzer Location .........................................<a href="#page-18">18</a>
<a href="#section-6.10">6.10</a>. Analyzer Identity ........................................<a href="#page-19">19</a>
<a href="#section-6.11">6.11</a>. Degree of Confidence .....................................<a href="#page-19">19</a>
<a href="#section-6.12">6.12</a>. Alert Identification .....................................<a href="#page-19">19</a>
<a href="#section-6.13">6.13</a>. Alert Creation Date and Time .............................<a href="#page-20">20</a>
<a href="#section-6.14">6.14</a>. Time Synchronization .....................................<a href="#page-21">21</a>
<a href="#section-6.15">6.15</a>. Time Format ..............................................<a href="#page-21">21</a>
<a href="#section-6.16">6.16</a>. Time Granularity and Accuracy ............................<a href="#page-21">21</a>
<a href="#section-6.17">6.17</a>. Message Extensions .......................................<a href="#page-22">22</a>
<a href="#section-6.18">6.18</a>. Message Semantics ........................................<a href="#page-22">22</a>
<a href="#section-6.19">6.19</a>. Message Extensibility ....................................<a href="#page-22">22</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-23">23</a>
<a href="#section-8">8</a>. References .....................................................<a href="#page-23">23</a>
<a href="#section-8.1">8.1</a>. Normative References ......................................<a href="#page-23">23</a>
<a href="#section-8.2">8.2</a>. Informative References ....................................<a href="#page-23">23</a>
<a href="#section-9">9</a>. Acknowledgements ...............................................<a href="#page-23">23</a>
<span class="grey">Wood & Erlinger Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document defines requirements for the Intrusion Detection
Message Exchange Format (IDMEF) [<a href="#ref-5" title=""The Intrusion Detection Message Exchange Format (IDMEF)"">5</a>], a product of the Intrusion
Detection Exchange Format Working Group (IDWG). IDMEF was planned to
be a standard format that automated Intrusion Detection Systems
(IDSs) [<a href="#ref-4" title=""Internet Security Glossary"">4</a>] could use for reporting what they have deemed to be
suspicious or of interest. This document also specifies requirements
for a communication protocol for communicating IDMEF. As chartered,
IDWG has the responsibility to first evaluate existing communication
protocols before choosing to specify a new one. Thus the
requirements in this document can be used to evaluate existing
communication protocols. If IDWG determines that a new communication
protocol is necessary, the requirements in this document can be used
to evaluate proposed solutions.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions Used in This Document</span>
This is not an IETF standards-track document [<a href="#ref-2" title=""The Internet Standards Process -- Revision 3"">2</a>], and thus the key
words MUST, MUST NOT, SHOULD, and MAY are NOT as in <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>
[<a href="#ref-1" title=""Key words for use in RFCs to Indicate Requirement Levels"">1</a>], but rather:
o MUST: This word, or the terms REQUIRED or SHALL, means that the
described behavior or characteristic is an absolute requirement
for a proposed IDWG specification.
o MUST NOT: This phrase, or the phrase SHALL NOT, means that the
described behavior or characteristic is an absolute prohibition of
a proposed IDWG specification.
o SHOULD: This word, or the adjective RECOMMENDED, means that there
may exist valid reasons in particular circumstances for a proposed
IDWG specification to ignore described behavior or
characteristics.
o MAY: This word, or the adjective OPTIONAL, means that the
described behavior or characteristic is truly optional for a
proposed IDWG specification. One proposed specification may
choose to include the described behavior or characteristic,
whereas another proposed specification may omit the same behavior
or characteristic.
<span class="grey">Wood & Erlinger Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Overview</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Rationale for IDMEF</span>
The reasons such a format should be useful are as follows:
1. A number of commercial and free Intrusion Detection Systems are
available and more are becoming available all the time. Some
products are aimed at detecting intrusions on the network, others
are aimed at host operating systems, while still others are aimed
at applications. Even within a given category, the products have
very different strengths and weaknesses. Hence it is likely that
users will deploy more than a single product, and users will want
to observe the output of these products from one or more
manager(s). A standard format for reporting will simplify this
task greatly.
2. Intrusions frequently involve multiple organizations as victims,
or multiple sites within the same organization. Typically, those
sites will use different IDSs. It would be very helpful to
correlate such distributed intrusions across multiple sites and
administrative domains. Having reports from all sites in a common
format would facilitate this task.
3. The existence of a common format should allow components from
different IDSs to be integrated more readily. Thus, Intrusion
Detection (ID) research should migrate into commercial products
more easily.
4. In addition to enabling communication from an ID analyzer to an ID
manager, the IDMEF notification system may also enable
communication between a variety of IDS components. However, for
the remainder of this document, we refer to the communication as
going from an analyzer to a manager.
All of these reasons suggest that a common format for reporting
anything deemed suspicious should help the IDS market to grow and
innovate more successfully, and should result in IDS users obtaining
better results from deployment of ID systems.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Intrusion Detection Terms</span>
In order to make the rest of the requirements clearer, we define some
terms about typical IDSs. These terms are presented in alphabetical
order. The diagram at the end of this section illustrates the
relationships of some of the terms defined herein.
<span class="grey">Wood & Erlinger Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a>. Activity</span>
Elements of the data source or occurrences within the data source
that are identified by the sensor or analyzer as being of interest to
the operator. Examples of this include (but are not limited to)
network session showing unexpected telnet activity, operating system
log file entries showing a user attempting to access files to which
he is not authorized to have access, application log files showing
persistent login failures, etc.
Activity can range from extremely serious occurrences (such as an
unequivocally malicious attack) to less serious occurrences (such as
unusual user activity that's worth a further look) to neutral
activity (such as user login).
<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a>. Administrator</span>
The human with overall responsibility for setting the security policy
of the organization, and, thus, for decisions about deploying and
configuring the IDS. This may or may not be the same person as the
operator of the IDS. In some organizations, the administrator is
associated with the network or systems administration groups. In
other organizations, it's an independent position.
<span class="h4"><a class="selflink" id="section-2.2.3" href="#section-2.2.3">2.2.3</a>. Alert</span>
A message from an analyzer to a manager that an event of interest has
been detected. An alert typically contains information about the
unusual activity that was detected, as well as the specifics of the
occurrence.
<span class="h4"><a class="selflink" id="section-2.2.4" href="#section-2.2.4">2.2.4</a>. Analyzer</span>
The ID component or process that analyzes the data collected by the
sensor for signs of unauthorized or undesired activity or for events
that might be of interest to the security administrator. In many
existing IDSs, the sensor and the analyzer are part of the same
component. In this document, the term analyzer is used generically
to refer to the sender of the IDMEF message.
<span class="h4"><a class="selflink" id="section-2.2.5" href="#section-2.2.5">2.2.5</a>. Data Source</span>
The raw information that an intrusion detection system uses to detect
unauthorized or undesired activity. Common data sources include (but
are not limited to) raw network packets, operating system audit logs,
application audit logs, and system-generated checksum data.
<span class="grey">Wood & Erlinger Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-2.2.6" href="#section-2.2.6">2.2.6</a>. Event</span>
The occurrence in the data source that is detected by the sensor and
that may result in an IDMEF alert being transmitted, for example,
attack.
<span class="h4"><a class="selflink" id="section-2.2.7" href="#section-2.2.7">2.2.7</a>. IDS</span>
Intrusion detection system. Some combination of one or more of the
following components: sensor, analyzer, manager.
<span class="h4"><a class="selflink" id="section-2.2.8" href="#section-2.2.8">2.2.8</a>. Manager</span>
The ID component or process from which the operator manages the
various components of the ID system. Management functions typically
include (but are not limited to) sensor configuration, analyzer
configuration, event notification management, data consolidation, and
reporting.
<span class="h4"><a class="selflink" id="section-2.2.9" href="#section-2.2.9">2.2.9</a>. Notification</span>
The method by which the IDS manager makes the operator aware of the
alert occurrence and thus the event. In many IDSs, this is done via
the display of a colored icon on the IDS manager screen, the
transmission of an e-mail or pager message, or the transmission of a
Simple Network Management Protocol (SNMP) trap, although other
notification techniques are also used.
<span class="h4"><a class="selflink" id="section-2.2.10" href="#section-2.2.10">2.2.10</a>. Operator</span>
The human that is the primary user of the IDS manager. The operator
often monitors the output of the ID system and initiates or
recommends further action.
<span class="h4"><a class="selflink" id="section-2.2.11" href="#section-2.2.11">2.2.11</a>. Response</span>
The actions taken in response to an event. Responses may be
undertaken automatically by some entity in the IDS architecture or
may be initiated by a human. Sending a notification to the operator
is a very common response. Other responses include (but are not
limited to) logging the activity; recording the raw data (from the
data source) that characterized the event; terminating a network,
user, or application session; or altering network or system access
controls.
<span class="grey">Wood & Erlinger Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-2.2.12" href="#section-2.2.12">2.2.12</a>. Sensor</span>
The ID component that collects data from the data source. The
frequency of data collection will vary across IDS offerings. The
sensor is set up to forward events to the analyzer.
<span class="h4"><a class="selflink" id="section-2.2.13" href="#section-2.2.13">2.2.13</a>. Signature</span>
A rule used by the analyzer to identify interesting activity to the
security administrator. Signatures represent one of the mechanisms
(though not necessarily the only mechanism) by which IDSs detect
intrusions.
<span class="h4"><a class="selflink" id="section-2.2.14" href="#section-2.2.14">2.2.14</a>. Security Policy</span>
The predefined, formally documented statement that defines what
activities are allowed to take place on an organization's network or
on particular hosts to support the organization's requirements. This
includes, but is not limited to, which hosts are to be denied
external network access.
<span class="grey">Wood & Erlinger Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
________
| | --------
| Data |_________ ________| | __________
| Source | Activity |Sensor | | |
|________| | |________| | Operator |_______
| | |__________| |
\|/ Event A |
_____V___ | /|\ |
| | | \ |
| Sensor |__ | Notification |
|_________| Event | \ \|/
A | V_________ \ V
/|\ | | | \ Response
| --->| Analyzer|__ | A
| | | Alert | /|\
| |_________| | | |
| A | | |
| /|\ \|/ | |
|________________| ____V___ | |
| | |_| |
| | Manager|_________|
| |________|
| A
Security /|\
_______________ | Policy__________|
| | |
| Administrator |__|
|_______________|
The diagram above illustrates the terms above and their
relationships. Not every IDS will have all of these separate
components exactly as shown. Some IDSs will combine these components
into a single module; some will have multiple instances of these
modules.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Architectural Assumptions</span>
In this document, as defined in the terms above, we assume that an
analyzer determines somehow that a suspicious event has been seen by
a sensor, and sends an alert to a manager. The format of that alert
and the method of communicating it are what IDMEF proposes to
standardize.
For the purposes of this document, we assume that the analyzer and
manager are separate components and that they are communicating
pairwise across a TCP/IP network. No other form of communication
between these entities is contemplated in this document, and no other
use of IDMEF alerts is considered. We refer to the communication
<span class="grey">Wood & Erlinger Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
protocol that communicates IDMEF as the IDMEF Communication Protocol
(IDP).
The Trust Model is not specified as a requirement, but is rather left
to the choice of the IDMEF Communication Protocol, i.e., a design
decision. What is specified are individual security-related
requirements; see <a href="#section-5">Section 5</a>.
We try to make no further architectural assumptions than those just
stated. For example, the following points should not matter:
o Whether the sensor and the analyzer are integrated or separate.
o Whether the analyzer and manager are isolated or are embedded in
some large hierarchy or distributed mesh of components.
o Whether the manager actually notifies a human, takes action
automatically, or just analyzes incoming alerts and correlates
them.
o Whether a component might act as an analyzer with respect to one
component, while also acting as a manager with respect to another.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Organization of This Document</span>
Besides this requirements document, the IDWG should produce two other
documents. The first should describe a data format or language for
exchanging information about suspicious events. In this, the
requirements document, we refer to that document as the "data-format
specification". The second document to be produced should identify
existing IETF protocols that are best used for conveying the data so
formatted, and explain how to package this data in those existing
formats or the document should specify a new protocol. We refer to
this as the IDP (IDMEF Communication Protocol).
Accordingly, the requirements here are partitioned into four
sections:
o The first of these contains general requirements that apply to all
aspects of the IDMEF specification (<a href="#section-3">Section 3</a>).
o The second section describes requirements on the formatting of
IDMEF messages (<a href="#section-4">Section 4</a>).
o The third section outlines requirements on the communications
mechanism, IDP, used to move IDMEF messages from the analyzer to
the manager (<a href="#section-5">Section 5</a>).
<span class="grey">Wood & Erlinger Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
o The final section contains requirements on the content and
semantics of the IDMEF messages (<a href="#section-6">Section 6</a>).
For each requirement, we attempt to state the requirement as clearly
as possible without imposing an idea of what a design solution should
be. Then we give the rationale for why this requirement is
important, and state whether this should be an essential feature of
the specification or is beneficial but could be lacking if it is
difficult to fulfill. Finally, where it seems necessary, we give an
illustrative scenario. In some cases, we include possible design
solutions in the scenario. These are purely illustrative.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Document Impact on IDMEF Designs</span>
It is expected that proposed IDMEF designs will, at a minimum,
satisfy the requirements expressed in this document. However, this
document will be used only as one of many criteria in the evaluation
of various IDMEF designs and proposed communication protocols. It is
recognized that the working group may use additional metrics to
evaluate competing IDMEF designs and/or communication protocols.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. General Requirements</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Use of Existing RFCs</span>
The IDMEF SHALL reference and use previously published RFCs where
possible.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Rationale</span>
The IETF has already completed a great deal of research and work into
the areas of networks and security. In the interest of time, it is
smart to use already defined and accepted standards.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. IPv4 and IPv6</span>
The IDMEF specification MUST take into account that IDMEF should be
able to operate in environments that contain IPv4 and IPv6
implementations.
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a> Rationale</span>
Since pure IPv4, hybrid IPv6/IPv4, and pure IPv6 environments are
expected to exist within the time frame of IDMEF implementations, the
IDMEF specification MUST support IPv6 and IPv4 environments.
<span class="grey">Wood & Erlinger Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Message Format Requirements</span>
The IDMEF message format is intended to be independent of the IDMEF
Communication Protocol (IDP). It should be possible to use a
completely different transport mechanism without changing the IDMEF
format. The goal behind this requirement is to ensure a clean
separation between semantics and communication mechanisms.
Obviously, the IDMEF Communication Protocol is recommended.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Internationalization and Localization</span>
IDMEF message formats SHALL support full internationalization and
localization.
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. Rationale</span>
Since network security and intrusion detection are areas that cross
geographic, political, and cultural boundaries, the IDMEF messages
MUST be formatted such that they can be presented to an operator in a
local language and adhering to local presentation customs.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. Scenario</span>
An IDMEF specification might include numeric event identifiers. An
IDMEF implementation might translate these numeric event identifiers
into local language descriptions. In cases where the messages
contain strings, the information might be represented using the
ISO/IEC IS 10646-1 character set and encoded using the UTF-8
transformation format to facilitate internationalization [<a href="#ref-3" title=""IETF Policy on Character Sets and Languages"">3</a>].
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Message Filtering and Aggregation</span>
The format of IDMEF messages MUST support filtering and/or
aggregation of data by the manager.
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Rationale</span>
Since it is anticipated that some managers might want to perform
filtering and/or data aggregation functions on IDMEF messages, the
IDMEF messages MUST be structured to facilitate these operations.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Scenario</span>
An IDMEF specification proposal might recommend fixed-format messages
with strong numerical semantics. This would lend itself to high-
performance filtering and aggregation by the receiving station.
<span class="grey">Wood & Erlinger Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. IDMEF Communication Protocol (IDP) Requirements</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Reliable Message Transmission</span>
The IDP MUST support reliable transmission of messages.
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Rationale</span>
IDS managers often rely on receipt of data from IDS analyzers to do
their jobs effectively. Since IDS managers will rely on IDMEF
messages for this purpose, it is important that IDP deliver IDMEF
messages reliably.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Interaction with Firewalls</span>
The IDP MUST support transmission of messages between ID components
across firewall boundaries without compromising security.
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Rationale</span>
Since it is expected that firewalls will often be deployed between
IDMEF capable analyzers and their corresponding managers, the ability
to relay messages via proxy or other suitable mechanism across
firewalls is necessary. Setting up this communication MUST NOT
require changes to the intervening firewall(s) that weaken the
security of the protected network(s). Nor SHOULD this be achieved by
mixing IDMEF messages with other kinds of traffic (e.g., by
overloading the HTTP POST method) since that would make it difficult
for an organization to apply separate policies to IDMEF traffic and
other kinds of traffic.
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. Scenario</span>
One possible design is the use of TCP to convey IDMEF messages. The
general goal in this case is to avoid opening dangerous inbound
"holes" in the firewall. When the manager is inside the firewall and
the analyzers are outside the firewall, this is often achieved by
having the manager initiate an outbound connection to each analyzer.
However, it is also possible to place the manager outside the
firewall and the analyzers on the inside; this can occur when a
third-party vendor (such as an ISP) is providing monitoring services
to a user. In this case, the outbound connections would be initiated
by each analyzer to the manager. A mechanism that permits either the
manager or the analyzer to initiate connections would provide maximum
flexibility in manager and analyzer deployment.
<span class="grey">Wood & Erlinger Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Mutual Authentication</span>
The IDP MUST support mutual authentication of the analyzer and the
manager to each other. Application-layer authentication is required
irrespective of the underlying transport layer.
<span class="h4"><a class="selflink" id="section-5.3.1" href="#section-5.3.1">5.3.1</a>. Rationale</span>
Since the alert messages are used by a manager to direct responses or
further investigation related to the security of an enterprise
network, it is important that the receiver have confidence in the
identity of the sender and that the sender have confidence in the
identity of the receiver. This is peer-to-peer authentication of
each party to the other. It MUST NOT be limited to authentication of
the underlying communications mechanism, for example, because of the
risk that this authentication process might be subverted or
misconfigured.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Message Confidentiality</span>
The IDP MUST support confidentiality of the message content during
message exchange. The selected design MUST be capable of supporting
a variety of encryption algorithms and MUST be adaptable to a wide
variety of environments.
<span class="h4"><a class="selflink" id="section-5.4.1" href="#section-5.4.1">5.4.1</a>. Rationale</span>
IDMEF messages potentially contain extremely sensitive information
(such as passwords) and would be of great interest to an intruder.
Since it is likely some of these messages will be transmitted across
uncontrolled network segments, it is important that the content be
shielded. Furthermore, since the legal environment for encryption
technologies is extremely varied and changes often, it is important
that the design selected be capable of supporting a number of
different encryption options and be adaptable by the user to a
variety of environments.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Message Integrity</span>
The IDP MUST ensure the integrity of the message content. The
selected design MUST be capable of supporting a variety of integrity
mechanisms and MUST be adaptable to a wide variety of environments.
<span class="grey">Wood & Erlinger Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-5.5.1" href="#section-5.5.1">5.5.1</a>. Rationale</span>
IDMEF messages are used by the manager to direct action related to
the security of the protected enterprise network. It is vital for
the manager to be certain that the content of the message has not
been changed after transmission.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Per-source Authentication</span>
The IDP MUST support separate authentication keys for each sender.
If symmetric algorithms are used, these keys would need to be known
to the manager it is communicating with.
<span class="h4"><a class="selflink" id="section-5.6.1" href="#section-5.6.1">5.6.1</a>. Rationale</span>
Given that sensitive security information is being exchanged via the
IDMEF, it is important that the manager can authenticate each
analyzer sending alerts.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Denial of Service</span>
The IDP SHOULD resist protocol denial-of-service attacks.
<span class="h4"><a class="selflink" id="section-5.7.1" href="#section-5.7.1">5.7.1</a>. Rationale</span>
A common way to defeat secure communications systems is through
resource exhaustion. While this does not corrupt valid messages, it
can prevent any communication at all. It is desirable that IDP
resist such denial-of-service attacks.
<span class="h4"><a class="selflink" id="section-5.7.2" href="#section-5.7.2">5.7.2</a>. Scenario</span>
An attacker penetrates a network being defended by an IDS. Although
the attacker is not certain that an IDS is present, he is certain
that application-level encrypted traffic (i.e., IDMEF traffic) is
being exchanged between components on the network being attacked. He
decides to mask his presence and disrupt the encrypted communications
by initiating one or more flood events. If the IDP can resist such
an attack, the probability that the attacker will be stopped
increases.
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. Message Duplication</span>
The IDP SHOULD resist malicious duplication of messages.
<span class="grey">Wood & Erlinger Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-5.8.1" href="#section-5.8.1">5.8.1</a>. Rationale</span>
A common way to impair the performance of secure communications
mechanisms is to duplicate the messages being sent, even though the
attacker might not understand them, in an attempt to confuse the
receiver. It is desirable that the IDP resist such message
duplication.
<span class="h4"><a class="selflink" id="section-5.8.2" href="#section-5.8.2">5.8.2</a>. Scenario</span>
An attacker penetrates a network being defended by an IDS. The
attacker suspects that an IDS is present and quickly identifies the
encrypted traffic flowing between system components as being a
possible threat. Even though she cannot read this traffic, she
copies the messages and directs multiple copies at the receiver in an
attempt to confuse it. If the IDP resists such message duplication,
the probability that the attacker will be stopped increases.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Message Content Requirements</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Detected Data</span>
There are many different types of IDSs, such as those based on
signatures, anomalies, correlation, network monitoring, host
monitoring, or application monitoring. The IDMEF design MUST strive
to accommodate these diverse approaches by concentrating on conveying
*what* an IDS has detected, rather than *how* it detected it.
<span class="h4"><a class="selflink" id="section-6.1.1" href="#section-6.1.1">6.1.1</a>. Rationale</span>
There are many types of IDSs that analyze a variety of data sources.
Some are profile based and operate on log files, attack signatures,
etc. Others are anomaly based and define normal behavior and detect
deviations from the established baseline. Each of these IDSs reports
different data that, in part, depends on their intrusion detection
methodology. All MUST be supported by this standard.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Event Identity</span>
The content of IDMEF messages MUST contain the identified name of the
event (event identity) if it is known. This name MUST be drawn from
a standardized list of events (if available) or will be an
implementation-specific name if the event identity has not yet been
standardized. It is not known how this standardized list will be
defined or updated. Requirements on the creation of this list are
beyond our efforts. Other groups within the security arena are
investigating the creation of such lists.
<span class="grey">Wood & Erlinger Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-6.2.1" href="#section-6.2.1">6.2.1</a>. Rationale</span>
Given that this document presents requirements on standardizing ID
message formats so that an ID manager is able to receive alerts from
analyzers from multiple implementations, it is important that the
manager understand the semantics of the reported events. There is,
therefore, a need to identify known events and store information
concerning their methods and possible fixes to these events. Some
events are well known and this recognition can help the operator.
<span class="h4"><a class="selflink" id="section-6.2.2" href="#section-6.2.2">6.2.2</a>. Scenario</span>
Intruder launches an attack that is detected by two different
analyzers from two distinct implementations. Both report the same
event identity to the ID manager, even though the algorithms used to
detect the attack by each analyzer might have been different.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Event Background Information</span>
The IDMEF message design MUST include information, which the sender
should provide, that allows a receiver to locate background
information on the kind of event that is being reported in the alert.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a>. Rationale</span>
This information is used by administrators to report and fix
problems.
<span class="h4"><a class="selflink" id="section-6.3.2" href="#section-6.3.2">6.3.2</a>. Scenario</span>
Attacker performs a well-known attack. A reference to a URL to
background information on the attack is included in the IDMEF
message. The operator uses this information to initiate repairs on
the vulnerable system.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Additional Data</span>
The IDMEF message MUST be able to reference additional detailed data
related to this specific underlying event. It is OPTIONAL for
implementations to use this field. No requirements are placed on the
format or content of this field. It is expected that this will be
defined and described by the implementor.
<span class="h4"><a class="selflink" id="section-6.4.1" href="#section-6.4.1">6.4.1</a>. Rationale</span>
Operators might want more information on specifics of an event. This
field, if filled in by the analyzer, MAY point to additional or more
detailed information about the event.
<span class="grey">Wood & Erlinger Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Event Source and Target Identity</span>
The IDMEF message MUST contain the identity of the source of the
event and target component identifier if it is known. In the case of
a network-based event, this will be the source and destination IP
address of the session used to launch the event. Note that the
identity of source and target will vary for other types of events,
such as those launched/detected at the operating system or
application level.
<span class="h4"><a class="selflink" id="section-6.5.1" href="#section-6.5.1">6.5.1</a>. Rationale</span>
This will allow the operator to identify the source and target of the
event.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. Device Address Types</span>
The IDMEF message MUST support the representation of different types
of device addresses.
<span class="h4"><a class="selflink" id="section-6.6.1" href="#section-6.6.1">6.6.1</a>. Rationale</span>
A device is a uniquely addressable element on the network (i.e., not
limited to computers or networks or a specific level of the network
protocol hierarchy). In addition, devices involved in an intrusion
event might use addresses that are not IP-centric.
<span class="h4"><a class="selflink" id="section-6.6.2" href="#section-6.6.2">6.6.2</a>. Scenario</span>
The IDS recognizes an intrusion on a particular device and includes
both the IP address and the MAC address of the device in the IDMEF
message. In another situation, the IDS recognizes an intrusion on a
device that has only a MAC address and includes only that address in
the IDMEF message. Another situation involves analyzers in an
Asynchronous Transfer Mode (ATM) switch fabric that use E.164 address
formats.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. Event Impact</span>
The IDMEF message MUST contain an indication of the possible impact
of this event on the target. The IDMEF design document MUST define
the scope of this value.
<span class="grey">Wood & Erlinger Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-6.7.1" href="#section-6.7.1">6.7.1</a>. Rationale</span>
Information concerning the possible impact of the event on the target
system provides an indication of what the intruder is attempting to
do and is critical data for the operator to perform damage
assessment. Not all systems will be able to determine this, but it
is important data to transmit for those systems that can. This
requirement places no requirements on the list itself (e.g.,
properties of the list, maintenance, etc.), rather the requirement
only specifies that the IDMEF must contain a field for specifying the
impact and that the IDMEF must define the scope of such values.
<span class="h3"><a class="selflink" id="section-6.8" href="#section-6.8">6.8</a>. Automatic Response</span>
The IDMEF message MUST provide information about the automatic
actions taken by the analyzer in response to the event (if any).
<span class="h4"><a class="selflink" id="section-6.8.1" href="#section-6.8.1">6.8.1</a>. Rationale</span>
It is very important for the operator to know if there was an
automated response and what that response was. This will help
determine what further action to take, if any.
<span class="h3"><a class="selflink" id="section-6.9" href="#section-6.9">6.9</a>. Analyzer Location</span>
The IDMEF message MUST include information that would make it
possible to later identify and locate the individual analyzer that
reported the event.
<span class="h4"><a class="selflink" id="section-6.9.1" href="#section-6.9.1">6.9.1</a>. Rationale</span>
The identity of the detecting analyzer often proves to be a valuable
piece of data to have in determining how to respond to a particular
event.
<span class="h4"><a class="selflink" id="section-6.9.2" href="#section-6.9.2">6.9.2</a>. Scenario</span>
One interesting scenario involves the progress of an intrusion event
throughout a network. If the same event is detected and reported by
multiple analyzers, the identity of the analyzer (in the case of a
network-based analyzer) might provide some indication of the network
location of the target systems and might warrant a specific type of
response. This might be implemented as an IP address.
<span class="grey">Wood & Erlinger Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h3"><a class="selflink" id="section-6.10" href="#section-6.10">6.10</a>. Analyzer Identity</span>
The IDMEF message MUST be able to contain the identity of the
implementor and the analyzer that detected the event.
<span class="h4"><a class="selflink" id="section-6.10.1" href="#section-6.10.1">6.10.1</a>. Rationale</span>
Users might run multiple IDSs to protect their enterprise. This data
will help the systems administrator determine which implementor and
analyzer detected the event.
<span class="h4"><a class="selflink" id="section-6.10.2" href="#section-6.10.2">6.10.2</a>. Scenario</span>
Analyzer X from implementor Y detects a potential intrusion. A
message is sent reporting that it found a potential break-in with X
and Y specified. The operator is therefore able to include the known
capabilities or weaknesses of analyzer X in his decision regarding
further action.
<span class="h3"><a class="selflink" id="section-6.11" href="#section-6.11">6.11</a>. Degree of Confidence</span>
The IDMEF message MUST be able to state the degree of confidence of
the report. The completion of this field by an analyzer is OPTIONAL,
as this data might not be available at all analyzers.
<span class="h4"><a class="selflink" id="section-6.11.1" href="#section-6.11.1">6.11.1</a>. Rationale</span>
Many IDSs contain thresholds to determine whether or not to generate
an alert. This might influence the degree of confidence one has in
the report or perhaps would indicate the likelihood of the report
being a false alarm.
<span class="h4"><a class="selflink" id="section-6.11.2" href="#section-6.11.2">6.11.2</a>. Scenario</span>
The alarm threshold monitor is set at a low level to indicate that an
organization wants reports on any suspicious activity, regardless of
the probability of a real attack. The degree-of-confidence measure
is used to indicate whether this is a low-probability or high-
probability event.
<span class="h3"><a class="selflink" id="section-6.12" href="#section-6.12">6.12</a>. Alert Identification</span>
The IDMEF message MUST be uniquely identifiable in that it can be
distinguished from other IDMEF messages.
<span class="grey">Wood & Erlinger Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-6.12.1" href="#section-6.12.1">6.12.1</a>. Rationale</span>
An IDMEF message might be sent by multiple geographically-distributed
analyzers at different times. A unique identifier will allow an
IDMEF message to be identified efficiently for data reduction and
correlation purposes.
<span class="h4"><a class="selflink" id="section-6.12.2" href="#section-6.12.2">6.12.2</a>. Scenario</span>
The unique identifier might consist of a unique originator identifier
(e.g., IPv4 or IPv6 address) concatenated with a unique sequence
number generated by the originator. In a typical IDS deployment, a
low-level event analyzer will log the raw sensor information into,
e.g., a database while analyzing and reporting results to higher
levels. In this case, the unique raw message identifier can be
included in the result message as supporting evidence. Higher-level
analyzers can later use this identifier to retrieve the raw message
from the database if necessary.
<span class="h3"><a class="selflink" id="section-6.13" href="#section-6.13">6.13</a>. Alert Creation Date and Time</span>
The IDMEF MUST support reporting alert creation date and time in each
event, where the creation date and time refer to the date and time
that the analyzer decided to create an alert. The IDMEF MAY support
additional dates and times, such as the date and time the event
reference by the alert began.
<span class="h4"><a class="selflink" id="section-6.13.1" href="#section-6.13.1">6.13.1</a>. Rationale</span>
Time is important from both a reporting and correlation point of
view. Event onset time might differ from the alert creation time
because it might take some time for the sensor to accumulate
information about a monitored activity before generating the event,
and additional time for the analyzer to receive the event and create
an alert. The event onset time is therefore more representative of
the actual time that the reported activity began than is the alert
creation time.
<span class="h4"><a class="selflink" id="section-6.13.2" href="#section-6.13.2">6.13.2</a>. Scenario</span>
If an event is reported in the quiet hours of the night, the operator
might assign a higher priority to it than she would to the same event
reported in the busy hours of the day. Furthermore, an event (such
as a lengthy port scan) may take place over a long period of time and
it would be useful for the analyzer to report the time of the alert
as well as the time the event began.
<span class="grey">Wood & Erlinger Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h3"><a class="selflink" id="section-6.14" href="#section-6.14">6.14</a>. Time Synchronization</span>
Time SHALL be reported such that events from multiple analyzers in
different time zones can be received by the same manager and that the
local time at the analyzer can be inferred.
<span class="h4"><a class="selflink" id="section-6.14.1" href="#section-6.14.1">6.14.1</a>. Rationale</span>
For event correlation purposes, it is important that the manager be
able to normalize the time information reported in the IDMEF alerts.
<span class="h4"><a class="selflink" id="section-6.14.2" href="#section-6.14.2">6.14.2</a>. Scenario</span>
A distributed ID system has analyzers located in multiple time zones,
all reporting to a single manager. An intrusion occurs that spans
multiple time zones as well as multiple analyzers. The central
manager requires sufficient information to normalize these alerts and
determine that all were reported near the same "time" and that they
are part of the same attack.
<span class="h3"><a class="selflink" id="section-6.15" href="#section-6.15">6.15</a>. Time Format</span>
The format for reporting the date MUST be compliant with all current
standards for Year 2000 rollover, and it MUST have sufficient
capability to continue reporting date values past the year 2038.
<span class="h4"><a class="selflink" id="section-6.15.1" href="#section-6.15.1">6.15.1</a>. Rationale</span>
It is desirable that the IDMEF have a long lifetime and that
implementations be suitable for use in a variety of environments.
Therefore, characteristics that limit the lifespan of the IDMEF (such
as 2038 date representation limitation) MUST be avoided.
<span class="h3"><a class="selflink" id="section-6.16" href="#section-6.16">6.16</a>. Time Granularity and Accuracy</span>
Time granularity and time accuracy in event messages SHALL NOT be
specified by the IDMEF.
<span class="h4"><a class="selflink" id="section-6.16.1" href="#section-6.16.1">6.16.1</a>. Rationale</span>
The IDMEF cannot assume a certain clock granularity on sensing
elements, and so cannot impose any requirements on the granularity of
the event timestamps. Nor can the IDMEF assume that the clocks being
used to timestamp the events have a specified accuracy.
<span class="grey">Wood & Erlinger Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h3"><a class="selflink" id="section-6.17" href="#section-6.17">6.17</a>. Message Extensions</span>
The IDMEF message MUST support an extension mechanism used by
implementors to define implementation-specific data. The use of this
mechanism by the implementor is OPTIONAL. This data contains
implementation-specific information determined by each implementor.
The implementor MUST indicate how to interpret these extensions,
although there are no specific requirements placed on how
implementors describe their implementation-specific extensions. The
lack or presence of such message extensions for implementation-
specific data MUST NOT break interoperation.
<span class="h4"><a class="selflink" id="section-6.17.1" href="#section-6.17.1">6.17.1</a>. Rationale</span>
Implementors might wish to supply extra data such as the version
number of their product or other data that they believe provides
value added due to the specific nature of their product.
Implementors may publish a document or web site describing their
extensions; they might also use an in-band extension mechanism that
is self-describing. Such extensions are not a license to break the
interoperation of IDMEF messages.
<span class="h3"><a class="selflink" id="section-6.18" href="#section-6.18">6.18</a>. Message Semantics</span>
The semantics of the IDMEF message MUST be well defined.
<span class="h4"><a class="selflink" id="section-6.18.1" href="#section-6.18.1">6.18.1</a>. Rationale</span>
Good semantics are key to understanding what the message is trying to
convey so there are no errors. Operators will decide what action to
take based on these messages, so it is important that they can
interpret them correctly.
<span class="h4"><a class="selflink" id="section-6.18.2" href="#section-6.18.2">6.18.2</a>. Scenario</span>
Without this requirement, the operator receives an IDMEF message and
interprets it one way. The implementor who constructed the message
intended it to have a different meaning from the operator's
interpretation. The resulting corrective action is therefore
incorrect.
<span class="h3"><a class="selflink" id="section-6.19" href="#section-6.19">6.19</a>. Message Extensibility</span>
The IDMEF itself MUST be extensible. As new ID technologies emerge
and as new information about events becomes available, the IDMEF
message format MUST be able to include this new information. Such
message extensibility must occur in such a manner that
interoperability is NOT impacted.
<span class="grey">Wood & Erlinger Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
<span class="h4"><a class="selflink" id="section-6.19.1" href="#section-6.19.1">6.19.1</a>. Rationale</span>
As intrusion detection technology continues to evolve, it is likely
that additional information relating to detected events will become
available. The IDMEF message format MUST be able to be extended by a
specific implementation to encompass this new information. Such
extensions are not a license to break the interoperation of IDMEF
messages.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
This document does not treat security matters, except that <a href="#section-5">Section 5</a>
specifies security requirements for the protocols to be developed.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Normative References</span>
[<a id="ref-1">1</a>] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-2">2</a>] Bradner, S., "The Internet Standards Process -- Revision 3", <a href="https://www.rfc-editor.org/bcp/bcp9">BCP</a>
<a href="https://www.rfc-editor.org/bcp/bcp9">9</a>, <a href="./rfc2026">RFC 2026</a>, October 1996.
[<a id="ref-3">3</a>] Alvestrand, H., "IETF Policy on Character Sets and Languages",
<a href="https://www.rfc-editor.org/bcp/bcp18">BCP 18</a>, <a href="./rfc2277">RFC 2277</a>, January 1998.
[<a id="ref-4">4</a>] Shirey, R., "Internet Security Glossary", <a href="./rfc2828">RFC 2828</a>, May 2000.
[<a id="ref-5">5</a>] Debar, H., Curry, D., and B. Feinstein, "The Intrusion Detection
Message Exchange Format (IDMEF)", <a href="./rfc4765">RFC 4765</a>, March 2007.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Acknowledgements</span>
The following individuals contributed substantially to this document
and should be recognized for their efforts. This document would not
exist without their help:
Mark Crosbie, Hewlett-Packard
David Curry, IBM Emergency Response Services
David Donahoo, Air Force Information Warfare Center
Mike Erlinger, Harvey Mudd College
<span class="grey">Wood & Erlinger Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
Fengmin Gong, Microcomputing Center of North Carolina
Dipankar Gupta, Hewlett-Packard
Glenn Mansfield, Cyber Solutions, Inc.
Jed Pickel, CERT Coordination Center
Stuart Staniford-Chen, Silicon Defense
Maureen Stillman, Nokia IP Telephony
Authors' Addresses
Mark Wood
Internet Security Systems, Inc.
6303 Barfield Road
Atlanta, GA 30328
US
EMail: mark1@iss.net
Michael A. Erlinger
Harvey Mudd College
Computer Science Dept
301 East 12th Street
Claremont, CA 91711
US
EMail: mike@cs.hmc.edu
URI: <a href="http://www.cs.hmc.edu/">http://www.cs.hmc.edu/</a>
<span class="grey">Wood & Erlinger Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4766">RFC 4766</a> IDME Requirements March 2007</span>
Full Copyright Statement
Copyright (C) The IETF Trust (2007).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Wood & Erlinger Informational [Page 25]
</pre>
|