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
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
|
Network Working Group B. Feinstein
Request for Comments: 4767 SecureWorks, Inc.
Category: Experimental G. Matthews
CSC/NASA Ames Research Center
March 2007
The Intrusion Detection Exchange Protocol (IDXP)
Status of This Memo
This memo defines an Experimental Protocol for the Internet
community. It does not specify an Internet standard of any kind.
Discussion and suggestions for improvement are requested.
Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The IETF Trust (2007).
Abstract
This memo describes the Intrusion Detection Exchange Protocol (IDXP),
an application-level protocol for exchanging data between intrusion
detection entities. IDXP supports mutual-authentication, integrity,
and confidentiality over a connection-oriented protocol. The
protocol provides for the exchange of IDMEF messages, unstructured
text, and binary data. The IDMEF message elements are described in
RFC 4765, "The Intrusion Detection Message Exchange Format (IDMEF)",
a companion document of the Intrusion Detection Exchange Format
Working Group (IDWG) of the IETF.
Table of Contents
1. Introduction ....................................................3
1.1. Purpose ....................................................3
1.2. Profiles ...................................................3
1.3. Terminology ................................................3
2. The Model .......................................................4
2.1. Connection Provisioning ....................................4
2.2. Data Transfer ..............................................6
2.3. Connection Teardown ........................................7
2.4. Trust Model ................................................8
3. The IDXP Profile ................................................8
3.1. IDXP Profile Overview ......................................8
3.2. IDXP Profile Identification and Initialization .............9
3.3. IDXP Profile Message Syntax ................................9
3.4. IDXP Profile Semantics .....................................9
Feinstein & Matthews Experimental [Page 1]
^L
RFC 4767 IDXP March 2007
3.4.1. The IDXP-Greeting Element ..........................10
3.4.2. The Option Element .................................11
3.4.3. The IDMEF-Message Element ..........................12
4. IDXP Options ...................................................12
4.1. The channelPriority Option ................................13
4.2. The streamType Option .....................................14
5. Fulfillment of IDWG Communications Protocol Requirements .......16
5.1. Reliable Message Transmission .............................16
5.2. Interaction with Firewalls ................................16
5.3. Mutual Authentication .....................................16
5.4. Message Confidentiality ...................................17
5.5. Message Integrity .........................................17
5.6. Per-Source Authentication .................................17
5.7. Denial of Service .........................................18
5.8. Message Duplication .......................................18
6. Extending IDXP .................................................18
7. IDXP Option Registration Template ..............................19
8. Initial Registrations ..........................................19
8.1. Registration: The IDXP Profile ............................19
8.2. Registration: The System (Well-Known) TCP Port
Number for IDXP ...........................................19
8.3. Registration: The channelPriority Option ..................20
8.4. Registration: The streamType Option .......................20
9. The DTDs .......................................................20
9.1. The IDXP DTD ..............................................20
9.2. The channelPriority Option DTD ............................22
9.3. The streamType DTD ........................................23
10. Reply Codes ...................................................24
11. Security Considerations .......................................25
11.1. Use of the TUNNEL Profile ................................25
11.2. Use of Underlying Security Profiles ......................25
12. IANA Considerations ...........................................25
13. References ....................................................26
13.1. Normative References .....................................26
13.2. Informative References ...................................26
14. Acknowledgements ..............................................26
Feinstein & Matthews Experimental [Page 2]
^L
RFC 4767 IDXP March 2007
1. Introduction
IDXP is specified, in part, as a Blocks Extensible Exchange Protocol
(BEEP) [4] "profile". BEEP is a generic application protocol
framework for connection-oriented, asynchronous interactions.
Features such as authentication and confidentiality are provided
through the use of other BEEP profiles. Accordingly, many aspects of
IDXP (e.g., confidentiality) are provided within the BEEP framework.
1.1. Purpose
IDXP provides for the exchange of IDMEF [2] messages, unstructured
text, and binary data between intrusion detection entities.
Addressing the security-sensitive nature of exchanges between
intrusion detection entities, underlying BEEP security profiles
should be used to offer IDXP the required set of security properties.
See Section 5 for a discussion of how IDXP fulfills the IDWG
communications protocol requirements. See Section 11 for a
discussion of security considerations.
IDXP is primarily intended for the exchange of data created by
intrusion detection entities. IDMEF [2] messages should be used for
the structured representation of this intrusion detection data,
although IDXP may be used to exchange unstructured text and binary
data.
1.2. Profiles
There are several BEEP profiles discussed, the first of which we
define in this memo:
The IDXP Profile
The TUNNEL Profile [3]
The Simple Authentication and Security Layer (SASL) Family of
Profiles (see Section 4.1 of [4])
The TLS Profile (see Section 3.1 of [4])
1.3. Terminology
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14, RFC 2119 [1].
Feinstein & Matthews Experimental [Page 3]
^L
RFC 4767 IDXP March 2007
Throughout this memo, the terms "analyzer" and "manager" are used in
the context of the Intrusion Detection Message Exchange Requirements
[5]. In particular, Section 2.2 of [5] defines a collection of
intrusion detection terms.
The terms "peer", "initiator", "listener", "client", and "server",
and the characters "I", "L", "C", and "S" are used in the context of
BEEP [4]. In particular, Section 2.1 of BEEP discusses the roles
that a BEEP peer may perform.
The term "Document Type Definition" is abbreviated as "DTD" and is
defined in Section 2.8 of the Extensible Markup Language (XML) [7].
Note that the term "proxy" is specific to IDXP and does not exist in
the context of BEEP. The term "intrusion detection" is abbreviated
as "ID".
2. The Model
2.1. Connection Provisioning
Intrusion detection entities using IDXP to transfer data are termed
IDXP peers. Peers can exist only in pairs, and these pairs
communicate over a single BEEP session with one or more BEEP channels
opened for transferring data. Peers are either managers or
analyzers, as defined in Section 2.2 of [5].
The relationship between analyzers and managers is potentially many-
to-many. That is, an analyzer MAY communicate with many managers;
similarly, a manager MAY communicate with many analyzers. Likewise,
the relationship between different managers is potentially many-to-
many, so that a manager MAY receive the alerts sent by a large number
of analyzers by receiving them through intermediate managers.
Analyzers MUST NOT establish IDXP exchanges with other analyzers.
An IDXP peer wishing to establish IDXP communications with another
IDXP peer does so by opening a BEEP channel, which may entail
initiating a BEEP session. A BEEP security profile offering the
required security properties SHOULD initially be negotiated (see
Section 11 for a discussion of security considerations). Following
the successful negotiation of the BEEP security profile, IDXP
greetings are exchanged and connection provisioning proceeds.
In the following sequence, the peer 'Alice' initiates an IDXP
exchange with the peer 'Bob'.
Feinstein & Matthews Experimental [Page 4]
^L
RFC 4767 IDXP March 2007
Alice Bob
---------------- xport connect(1) ------------------>
<-------------------- greeting ---------------------->
<-------------start security profile(2) ------------->
<-------------------- greeting ---------------------->
<------------------ start IDXP(3) ------------------->
Notes:
(1) 'Alice' initiates a transport connection to 'Bob', triggering the
exchange of BEEP greeting messages.
(2) Both entities negotiate the use of a BEEP security profile.
(3) Both entities negotiate the use of the IDXP profile.
In between a pair of IDXP peers may be an arbitrary number of
proxies. A proxy may be necessary for administrative reasons, such
as running on a firewall to allow restricted access. Another use
might be one proxy per company department, which forwards data from
the analyzer peers in the department onto a company-wide manager
peer.
A BEEP tuning profile MAY be used to create an application-layer
tunnel that transparently forwards data over a chain of proxies. The
TUNNEL profile [3] SHOULD be used for this purpose; see [3] for more
detail concerning the options available to set up an application-
layer tunnel using TUNNEL, and see Section 11.1 for a discussion of
TUNNEL-related security considerations. TUNNEL MUST be offered as a
tuning profile for the creation of application-layer tunnels. The
TUNNEL profile MUST offer the use of some form of SASL authentication
(see Section 4.1 of [4]). Once a tunnel has been created, a BEEP
security profile offering the required security properties SHOULD be
negotiated, followed by negotiation of the IDXP profile.
The following sequence shows how TUNNEL might be used to create an
application-layer tunnel through which IDXP would operate. A peer
'Alice' initiates the creation of a BEEP session using the IDXP
profile with the entity 'Bob' by first contacting 'proxy1'. In the
greeting exchange between 'Alice' and 'proxy1', the TUNNEL profile is
selected, and subsequently the use of the TUNNEL profile is extended
to reach through 'proxy2' to 'Bob'.
Feinstein & Matthews Experimental [Page 5]
^L
RFC 4767 IDXP March 2007
Alice proxy1 proxy2 Bob
-- xport connect -->
<---- greeting ----->
-- start TUNNEL --->
- xport connect(1) ->
<----- greeting ----->
--- start TUNNEL --->
--- xport connect -->
<----- greeting ----->
--- start TUNNEL --->
<----- <ok>(2) ------
<------- <ok> -------
<------ <ok> -------
<------------------------- greeting -------------------------->
<------------------ start security profile ------------------->
<------------------------- greeting -------------------------->
<------------------------ start IDXP ------------------------->
Notes:
(1) Instead of immediately acknowledging the request from 'Alice' to
start TUNNEL, 'proxy1' attempts to establish use of TUNNEL with
'proxy2'. 'proxy2' also delays its acknowledgment to 'proxy1'.
(2) 'Bob' acknowledges the request from 'proxy2' to start TUNNEL, and
this acknowledgment propagates back to 'Alice' so that a TUNNEL
application-layer tunnel is established from 'Alice' to 'Bob'.
2.2. Data Transfer
Between a pair of ID entities communicating over a BEEP session, one
or more BEEP channels MAY be opened using the IDXP profile. If
desired, additional BEEP sessions MAY be established to offer
additional channels using the IDXP profile. However, in most
situations additional channels using the IDXP profile SHOULD be
opened within an existing BEEP session, as opposed to provisioning a
new BEEP session containing the additional channels using the IDXP
profile.
Peers assume the role of client or server on a per-channel basis,
with one acting as the client and the other as the server. A peer's
role of client or server is determined independent of whether the
peer assumed the role of initiator or listener during the BEEP
session establishment. Clients and servers act as sources and sinks,
respectively, for exchanging data.
Feinstein & Matthews Experimental [Page 6]
^L
RFC 4767 IDXP March 2007
In a simple case, an analyzer peer sends data to a manager peer. For
example,
+----------+ +----------+
| | | |
| |****** BEEP session ******| |
| | | |
| Analyzer | ----- IDXP profile ----> | Manager |
| (Client) | | (Server) |
| | | |
| |**************************| |
| | | |
+----------+ +----------+
Use of multiple BEEP channels in a BEEP session facilitates
categorization and prioritization of data sent between IDXP peers.
For example, a manager 'M1', sending alert data to another manager,
'M2', may choose to open a separate channel to exchange different
categories of alerts. 'M1' would act as the client on each of these
channels, and manager 'M2' can then process and act on the incoming
alerts based on their respective channel categorizations. See
Section 4 for more detail on how to incorporate categorization and/or
prioritization into channel creation.
+----------+ +----------+
| | | |
| |*************** BEEP session ***************| |
| | | |
| | -- IDXP profile, network-based alerts ---> | |
| Manager | | Manager |
| M1 | ---- IDXP profile, host-based alerts ----> | M2 |
| (Client) | | (Server) |
| | ------ IDXP profile, other alerts -------> | |
| | | |
| |********************************************| |
| | | |
+----------+ +----------+
2.3. Connection Teardown
An IDXP peer may choose to close an IDXP channel under many different
circumstances (e.g., an error in processing has occurred). To close
a channel, the peer sends a "close" element (see Section 2.3.1.3 of
[4]) on channel zero indicating which channel is being closed. An
IDXP peer may also choose to close an entire BEEP session by sending
a "close" element indicating that channel zero is to be closed.
Feinstein & Matthews Experimental [Page 7]
^L
RFC 4767 IDXP March 2007
Section 2.3.1.3 of [4] offers a more complete discussion of the
circumstances under which a BEEP peer is permitted to close a channel
and the mechanisms for doing so.
It is anticipated that due to the overhead of provisioning an
application-layer tunnel and/or a BEEP security profile, BEEP
sessions containing IDXP channels will be long-lived. In addition,
the repeated overhead of IDXP channel provisioning (i.e., the
exchange of IDXP greetings) may be avoided by keeping IDXP channels
open even while data is not actively being exchanged on them. These
are recommendations and, as such, IDXP peers may choose to close and
re-provision BEEP sessions and/or IDXP channels as they see fit.
2.4. Trust Model
In our model, trust is placed exclusively in the IDXP peers. Proxies
are always assumed to be untrustworthy. A BEEP security profile is
used to establish end-to-end security between pairs of IDXP peers,
doing away with the need to place trust in any intervening proxies.
Only after successful negotiation of the underlying security profile
are IDXP peers to be trusted. Only BEEP security profiles offering
at least the protections required by Section 5 of [5] should be used
to secure a BEEP session containing channels using the IDXP profile.
See Section 3 of [4] for the registration of the TLS profile, an
example of a BEEP security profile meeting the requirements of
Section 5 of [5]. See Section 5 for a discussion of how IDXP
fulfills the IDWG communications protocol requirements.
3. The IDXP Profile
3.1. IDXP Profile Overview
The IDXP profile provides a mechanism for exchanging information
between intrusion detection entities. A BEEP tuning profile MAY be
used to create an application-layer tunnel that transparently
forwards data over a chain of proxies. The TUNNEL profile [3] SHOULD
be used for this purpose; see [3] for more detail concerning the
options available to set up an application-layer tunnel using TUNNEL,
and see Section 11.1 for a discussion of TUNNEL-related security
considerations. TUNNEL MUST be offered as a tuning profile for the
creation of application-layer tunnels. The TUNNEL profile MUST offer
the use of some form of SASL authentication (see Section 4.1 of [4]).
The TLS profile SHOULD be used to provide the required combination of
mutual-authentication, integrity, and confidentiality for the IDXP
profile. For further discussion of application-layer tunnel and
security issues, see Sections 2.1 and 11.
Feinstein & Matthews Experimental [Page 8]
^L
RFC 4767 IDXP March 2007
The IDXP profile supports several elements of interest:
o The "IDXP-Greeting" element identifies an analyzer or manager at
one end of a BEEP channel to the analyzer or manager at the other
end of the channel.
o The "Option" element is used to convey optional channel parameters
between peers during the exchange of "IDXP-Greeting" elements.
This element is OPTIONAL.
o The "IDMEF-Message" element carries the structured information to
be exchanged between the peers.
3.2. IDXP Profile Identification and Initialization
The IDXP profile is identified as
http://idxp.org/beep/profile
in the BEEP "profile" element during channel creation.
During channel creation, "IDXP-Greeting" elements MUST be mutually
exchanged between the peers. An "IDXP-Greeting" element MAY be
contained within the corresponding "profile" element in the BEEP
"start" element. Including an "IDXP-Greeting" element in the initial
"start" element has exactly the same semantics as passing it as the
first "MSG" message on the channel. If channel creation is
successful, then before sending the corresponding reply, the BEEP
peer processes the "IDXP-Greeting" element and includes the resulting
response in the reply. This response will be an "ok" element or an
"error" element. The choice of which element is returned is
dependent on local provisioning of the peer.
3.3. IDXP Profile Message Syntax
BEEP messages in the profile MUST have a MIME Content-Type [8] of
"text/xml", "text/plain", or "application/octet-stream". The syntax
of the individual elements is specified in Section 9.1 of this
document and Section 4 of [2].
3.4. IDXP Profile Semantics
Each BEEP peer issues the "IDXP-Greeting" element using "MSG"
messages. The "IDXP-Greeting" element MAY contain one or more
"Option" sub-elements, conveying optional channel parameters. Each
BEEP peer then issues "ok" in "RPY" messages or "error" in "ERR"
messages. (See Section 2.3.1 of [4] for the definitions of the
"error" and "ok" elements.) An "error" element MAY be issued within
Feinstein & Matthews Experimental [Page 9]
^L
RFC 4767 IDXP March 2007
a "RPY" message when piggy-backed within a BEEP "profile" element.
See Section 3.4.1 for an example of an "error" element being issued
within a "RPY" message. Based on the respective client/server roles
negotiated during the exchange of "IDXP-Greeting" elements, the
client sends data using "MSG" messages. Depending on the MIME
Content-Type, this data may be an "IDMEF-Message" element, plain
text, or binary. The server then issues "ok" in "RPY" messages or
"error" in "ERR" messages.
3.4.1. The IDXP-Greeting Element
The "IDXP-Greeting" element serves to identify the analyzer or
manager at one end of the BEEP channel to the analyzer or manager at
the other end of the channel. The "IDXP-Greeting" element MUST
include the role of the peer on the channel (client or server) and
the Uniform Resource Identifier (URI) [6] of the peer. In addition,
the "IDXP-Greeting" element MAY include the fully qualified domain
name (see [9]) of the peer. One or more "Option" sub-elements MAY be
present.
An "IDXP-Greeting" element MAY be sent by either peer at any time.
The peer receiving the "IDXP-Greeting" MUST respond with an "ok"
(indicating acceptance), or an "error" (indicating rejection). A
peer's identity and role on a channel and any optional channel
parameters are, in effect, specified by the most recent "IDXP-
Greeting" it sent that was answered with an "ok".
An "IDXP-Greeting" may be rejected (with an "error" element) under
many circumstances. These include, but are not limited to,
authentication failure, lack of authorization to connect under the
specified role, the negotiation of an inadequate cipher suite, or the
presence of a channel option that must be understood but was
unrecognized.
For example, a successful creation with an embedded "IDXP-Greeting"
might look like this:
I: MSG 0 10 . 1592 187
I: Content-Type: text/xml
I:
I: <start number='1'>
I: <profile uri='http://idxp.org/beep/profile'>
I: <![CDATA[ <IDXP-Greeting uri='http://example.com/alice'
I: role='client' /> ]]>
I: </profile>
I: </start>
I: END
L: RPY 0 10 . 1865 91
Feinstein & Matthews Experimental [Page 10]
^L
RFC 4767 IDXP March 2007
L: Content-Type: text/xml
L:
L: <profile uri='http://idxp.org/beep/profile'>
L: <![CDATA[ <ok /> ]]>
L: </profile>
L: END
L: MSG 0 11 . 1956 61
L: Content-Type: text/xml
L:
L: <IDXP-Greeting uri='http://example.com/bob' role='server' />
L: END
I: RPY 0 11 . 1779 7
I: Content-Type: text/xml
I:
I: <ok />
I: END
A creation with an embedded "IDXP-Greeting" that fails might look
like this:
I: MSG 0 10 . 1776 185
I: Content-Type: text/xml
I:
I: <start number='1'>
I: <profile uri='http://idxp.org/beep/profile'>
I: <![CDATA[ <IDXP-Greeting uri='http://example.com/eve'
I: role='client' /> ]]>
I: </profile>
I: </start>
I: END
L: RPY 0 10 . 1592 182
L: Content-Type: text/xml
L:
L: <profile uri='http://idxp.org/beep/profile'>
L: <![CDATA[
L: <error code='530'>'http://example.com/eve' must first
L: negotiate the TLS profile</error> ]]>
L: </profile>
L: END
3.4.2. The Option Element
If present, the "Option" element MUST be contained within an "IDXP-
Greeting" element. An individual "IDXP-Greeting" element MAY contain
one or more "Option" sub-elements. Each "Option" element within an
"IDXP-Greeting" element represents a request to enable an IDXP option
on the channel being negotiated. See Section 4 for a complete
description of IDXP options and the "Option" element.
Feinstein & Matthews Experimental [Page 11]
^L
RFC 4767 IDXP March 2007
3.4.3. The IDMEF-Message Element
The "IDMEF-Message" element carries the information to be exchanged
between the peers. See Section 4 of [2] for the definition of this
element.
4. IDXP Options
IDXP provides a service for the reliable exchange of data between
intrusion detection entities. Options are used to alter the
semantics of the service.
The specification of an IDXP option MUST define
o the identity of the option;
o what content, if any, is contained within the option; and
o the processing rules for the option.
An option registration template (see Section 7) organizes this
information.
An "Option" element is contained within an "IDXP-Greeting" element.
The "IDXP-Greeting" element itself MAY contain one or more "Option"
elements. The "Option" element has several attributes and contains
arbitrary content:
o the "internal" and the "external" attributes, exactly one of which
MUST be present, uniquely identify the option;
o the "mustUnderstand" attribute, whose presence is OPTIONAL and
whose default value is "false", specifies whether the option, if
unrecognized, MUST cause an error in processing to occur; and
o the "localize" attribute, whose presence is OPTIONAL, specifies
one or more language tokens, each identifying a desirable language
tag to be used if textual diagnostics are returned to the
originator.
The value of the "internal" attribute is the IANA-registered name for
the option. If the "internal" attribute is not present, then the
value of the "external" attribute is a URI or URI with a fragment-
identifier. Note that a relative-URI value is not allowed.
The "mustUnderstand" attribute specifies whether the peer may ignore
the option if it is unrecognized. If the value of the
"mustUnderstand" attribute is "true", and if the peer does not
Feinstein & Matthews Experimental [Page 12]
^L
RFC 4767 IDXP March 2007
recognize the option, then an error in processing has occurred. When
absent, the value of the "mustUnderstand" attribute is defined to be
"false".
4.1. The channelPriority Option
Section 8.3 contains the IDXP option registration for the
"channelPriority" option. This option contains a "channelPriority"
element (see Section 9.2).
By default, IDXP does not place any requirements on how peers should
manage multiple IDXP channels. The "channelPriority" option provides
a way for peers using multiple IDXP channels to request relative
priorities for each channel. When sending an "IDXP-Greeting" element
during the provisioning of an IDXP channel, the originating peer MAY
request that the remote peer assign a priority to the channel by
including an "Option" element containing a "channelPriority" element.
The "channelPriority" element has one attribute named "priority", of
range 0..2147483647. This attribute is REQUIRED. Not
coincidentally, this is the maximum range of possible BEEP channel
numbers. 0 is defined to represent the highest priority, with
relative priority decreasing as the "priority" value ascends.
For example, during the exchange of "IDXP-Greeting" elements during
channel provisioning, an analyzer successfully requests that a
manager assign a priority to the channel:
analyzer manager
--------------- greeting w/ option ----------------->
<---------------------- <ok> ------------------------
C: MSG 1 17 . 1984 165
C: Content-Type: text/xml
C:
C: <IDXP-Greeting uri='http://example.com/alice' role='client'>
C: <Option internal='channelPriority'>
C: <channelPriority priority='0' />
C: </Option>
C: </IDXP-Greeting>
C: END
S: RPY 1 17 . 2001 7
S: Content-Type: text/xml
S:
S: <ok />
S: END
Feinstein & Matthews Experimental [Page 13]
^L
RFC 4767 IDXP March 2007
For example, during the exchange of "IDXP-Greeting" elements during
channel provisioning, a manager unsuccessfully requests that an
analyzer assign a priority to the channel:
analyzer manager
<---------------- greeting w/ option ----------------
--------------------- <error> ---------------------->
S: MSG 1 17 . 1312 194
S: Content-Type: text/xml
S:
S: <IDXP-Greeting uri='http://example.com/bob' role='server'>
S: <Option internal='channelPriority' mustUnderstand='true'>
S: <channelPriority priority='2147483647' />
S: </Option>
S: </IDXP-Greeting>
S: END
C: ERR 1 17 . 451 68
C: Content-Type: text/xml
C:
C: <error code='504'>'channelPriority' option was unrecognized</error>
C: END
4.2. The streamType Option
Section 8.4 contains the IDXP option registration for the
"streamType" option. This option contains a "streamType" element
(see Section 9.3).
By default, IDXP provides no explicit method for categorizing
channels. The "streamType" option provides a way for peers to
request that a channel be categorized as a particular stream type.
When sending an "IDXP-Greeting" element during the provisioning of an
IDXP channel, the originating peer MAY request that the remote peer
assign a stream type to the channel by including an "Option" element
containing a "streamType" element.
The "streamType" element has one attribute named "type", with the
possible values of "alert", "heartbeat", or "config". This attribute
is REQUIRED. A value of "alert" indicates that the channel should be
categorized as being used for the exchange of ID alerts. A value of
"heartbeat" indicates that the channel should be categorized as being
used for the exchange of heartbeat messages such as the "Heartbeat"
element (see Section 4 of [2]). A value of "config" indicates that
the channel should be categorized as being used for the exchange of
configuration messages.
Feinstein & Matthews Experimental [Page 14]
^L
RFC 4767 IDXP March 2007
For example, during the exchange of "IDXP-Greeting" elements during
channel provisioning, an analyzer successfully requests that a
manager assign a stream type to the channel:
analyzer manager
--------------- greeting w/ option ----------------->
<---------------------- <ok> ------------------------
C: MSG 1 21 . 1963 155
C: Content-Type: text/xml
C:
C: <IDXP-Greeting uri='http://example.com/alice' role='client'>
C: <Option internal='streamType'>
C: <streamType type='alert' />
C: </Option>
C: </IDXP-Greeting>
C: END
S: RPY 1 21 . 1117 7
S: Content-Type: text/xml
S:
S: <ok />
S: END
For example, during the exchange of "IDXP-Greeting" elements during
channel provisioning, a manager unsuccessfully requests that an
analyzer assign a stream type to the channel:
analyzer manager
<---------------- greeting w/ option ----------------
--------------------- <error> ---------------------->
S: MSG 1 21 . 1969 176
S: Content-Type: text/xml
S:
S: <IDXP-Greeting uri='http://example.com/bob' role='server'>
S: <Option internal='streamType' mustUnderstand='true'>
S: <streamType type='config' />
S: </Option>
S: </IDXP-Greeting>
S: END
C: ERR 1 21 . 1292 63
C: Content-Type: text/xml
C:
C: <error code='504'>'streamType' option was unrecognized</error>
C: END
Feinstein & Matthews Experimental [Page 15]
^L
RFC 4767 IDXP March 2007
5. Fulfillment of IDWG Communications Protocol Requirements
The following lists each of the communications protocol requirements
established in Section 5 of [5] and, for each requirement, describes
the manner in which it is fulfilled. IDXP itself does not fulfill
each of the communications protocol requirements, but instead relies
on the underlying BEEP protocol and a variety of BEEP profiles.
5.1. Reliable Message Transmission
"The [protocol] MUST support reliable transmission of messages." See
Section 5.1 of [5].
IDXP operates over BEEP, which operates only over reliable
connection-oriented transport protocols (e.g., TCP). In addition,
BEEP peers communicate using a simple request-response protocol,
which provides end-to-end reliability between peers.
5.2. Interaction with Firewalls
"The [protocol] MUST support transmission of messages between ID
components across firewall boundaries without compromising security."
See Section 5.2 of [5].
The TUNNEL profile [3] MUST be offered as an option for creation
of application-layer tunnels to allow operation across firewalls.
The TUNNEL profile SHOULD be used to provide an application-layer
tunnel. The ability to authenticate hosts during the creation of
an application-layer tunnel MUST be provided by the mechanism
chosen to create such tunnels. A firewall may therefore be
configured to authenticate all hosts attempting to tunnel into the
protected network. If the TUNNEL profile is used, SASL (see
Section 4.1 of [4]) MUST be offered as a mechanism by which hosts
can be authenticated.
5.3. Mutual Authentication
"The [protocol] MUST support mutual authentication of the analyzer
and the manager to each other." See Section 5.3 of [5].
IDXP supports mutual authentication of the peers through the use
of an appropriate underlying BEEP security profile. The TLS
profile and members of the SASL family of profiles (see Section
4.1 of [4]) are examples of security profiles that may be used to
authenticate the identity of communicating ID components. TLS
MUST be offered as a mechanism to provide mutual authentication,
and TLS SHOULD be used to provide mutual authentication.
Feinstein & Matthews Experimental [Page 16]
^L
RFC 4767 IDXP March 2007
5.4. Message Confidentiality
"The [protocol] 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." See Section 5.4 of [5].
IDXP supports confidentiality through the use of an appropriate
underlying BEEP security profile. The TLS profile is an example
of a security profile that offers confidentiality. The TLS
profile with the TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite
MUST be offered as a mechanism to provide confidentiality, and TLS
with this cipher suite SHOULD be used to provide confidentiality.
The TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite uses ephemeral
Diffie-Hellman (DHE) with DSS signatures for key exchange and
triple DES (Data Encryption Standard) (3DES) and cipher-block
chaining (CBC) for encryption. Stronger cipher suites are
optional.
5.5. Message Integrity
"The [protocol] 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." See Section 5.5 of [5].
IDXP supports message integrity through the use of an appropriate
underlying BEEP security profile. The TLS profile and members of
the SASL family of profiles (see Section 4.1 of [4]) are examples
of security profiles that offer message integrity. The TLS
profile with the TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite
MUST be offered as a mechanism to provide integrity, and TLS with
this cipher suite SHOULD be used to provide integrity. The
TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite uses the Secure
Hash Algorithm (SHA) for integrity protection using a keyed
message authentication code. Stronger cipher suites are optional.
5.6. Per-Source Authentication
"The [protocol] MUST support separate authentication keys for each
sender." See Section 5.6 of [5].
IDXP supports separate authentication keys for each sender (i.e.,
per-source authentication) through the use of an appropriate
underlying BEEP security profile. The TLS profile is an example
of a security profile that supports per-source authentication
through the mutual authentication of public-key certificates. TLS
MUST be offered as a mechanism to provide per-source
Feinstein & Matthews Experimental [Page 17]
^L
RFC 4767 IDXP March 2007
authentication, and TLS SHOULD be used to provide per-source
authentication.
5.7. Denial of Service
"The [protocol] SHOULD resist protocol denial-of-service attacks."
See Section 5.7 of [5].
IDXP supports resistance to denial of service (DoS) attacks
through the use of an appropriate underlying BEEP security
profile. BEEP peers offering the IDXP profile MUST offer the use
of TLS with the TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite,
and SHOULD use TLS with that cipher suite. To resist DoS attacks
it is helpful to discard traffic arising from a non-authenticated
source. BEEP peers MUST support the use of authentication in
conjunction with any mechanism used to create application-layer
tunnels. In particular, the use of some form of SASL
authentication (see Section 4.1 of [4]) MUST be offered to provide
authentication in the use of the TUNNEL profile. See Section 7 of
[3] for a discussion of security considerations in the use of the
TUNNEL profile.
5.8. Message Duplication
"The [protocol] SHOULD resist malicious duplication of messages."
See Section 5.8 of [5].
IDXP supports resistance to malicious duplication of messages
(i.e., replay attacks) through the use of an appropriate
underlying BEEP security profile. The TLS profile is an example
of a security profile offering resistance to replay attacks. The
TLS profile with the TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher
suite MUST be offered as a mechanism to provide resistance against
replay attacks, and TLS with this cipher suite SHOULD be used to
provide resistance against replay attacks. The
TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite uses cipher-block
chaining (CBC) to ensure that even if a message is duplicated the
cipher-text duplicate will produce a very different plain-text
result. Stronger cipher suites are optional.
6. Extending IDXP
The specification of IDXP options (see Section 4) is the preferred
method of extending IDXP. In order to extend IDXP, an IDXP option
SHOULD be documented in an RFC and MUST be registered with the IANA
(see Section 7). IDXP extensions that cannot be expressed as IDXP
options MUST be documented in an RFC.
Feinstein & Matthews Experimental [Page 18]
^L
RFC 4767 IDXP March 2007
7. IDXP Option Registration Template
When an IDXP option is registered, the following information is
supplied:
Option Identification: specify the NMTOKEN or the URI that
authoritatively identifies this option.
Contains: specify the XML content that is contained within the
"Option" element.
Processing Rules: specify the processing rules associated with the
option.
Contact Information: specify the postal and electronic contact
information for the author(s) of the option.
8. Initial Registrations
8.1. Registration: The IDXP Profile
Profile identification: http://idxp.org/beep/profile
Messages exchanged during channel creation: "IDXP-Greeting"
Messages starting one-to-one exchanges: "IDXP-Greeting", "IDMEF-
Message"
Messages in positive replies: "ok"
Messages in negative replies: "error"
Messages in one-to-many exchanges: none
Message syntax: see Section 3.3
Message semantics: see Section 3.4
Contact information: see the "Authors' Addresses" section of this
memo
8.2. Registration: The System (Well-Known) TCP Port Number for IDXP
Protocol Number: 603
Message Formats, Types, Opcodes, and Sequences: see Section 3.3
Functions: see Section 3.4
Feinstein & Matthews Experimental [Page 19]
^L
RFC 4767 IDXP March 2007
Use of Broadcast/Multicast: none
Proposed Name: Intrusion Detection Exchange Protocol
Short name: idxp
Contact Information: see the "Authors' Addresses" section of this
memo
8.3. Registration: The channelPriority Option
Option Identification: channelPriority
Contains: channelPriority (see Section 9.2)
Processing Rules: see Section 4.1
Contact Information: see the "Authors' Addresses" section of this
memo
8.4. Registration: The streamType Option
Option Identification: streamType
Contains: streamType (see Section 9.3)
Processing Rules: see Section 4.2
Contact Information: see the "Authors' Addresses" section of this
memo
9. The DTDs
9.1. The IDXP DTD
The following is the DTD defining the valid elements for the IDXP
profile.
<!--
DTD for the IDXP Profile
Refer to this DTD as:
<!ENTITY % IDXP PUBLIC "-//IETF//DTD RFC 4767 IDXP v1.0//EN">
%IDXP;
-->
Feinstein & Matthews Experimental [Page 20]
^L
RFC 4767 IDXP March 2007
<!-- Includes -->
<!ENTITY % BEEP PUBLIC "-//IETF//DTD BEEP//EN">
%BEEP;
<!ENTITY % IDMEF-Message PUBLIC
"-//IETF//DTD RFC 4765 IDMEF v1.0//EN">
%IDMEF;
<!--
Profile Summary
BEEP profile http://idxp.org/beep/profile
role MSG RPY ERR
==== === === ===
I or L IDXP-Greeting ok error
C IDMEF-Message ok error
-->
<!--
Entity Definitions
entity syntax/reference example
====== ================ =======
an authoritative identification
URI see RFC 3986 [6] http://example.com
a fully qualified domain name
FQDN see RFC 1034 [9] www.example.com
-->
<!ENTITY % URI "CDATA">
<!ENTITY % FQDN "CDATA">
<!--
The IDXP-Greeting element declares the role and identity of
the peer issuing it, on a per-channel basis. The
IDXP-Greeting element may contain one or more Option
sub-elements.
-->
Feinstein & Matthews Experimental [Page 21]
^L
RFC 4767 IDXP March 2007
<!ELEMENT IDXP-Greeting (Option*)>
<!ATTLIST IDXP-Greeting
uri %URI; #REQUIRED
role (client|server) #REQUIRED
fqdn %FQDN; #IMPLIED>
<!--
The Option element conveys an IDXP channel option.
Note that the %LOCS entity is imported from the BEEP Channel
Management DTD.
-->
<!ELEMENT Option (ANY)>
<!ATTLIST Option
internal NMTOKEN ""
external %URI; ""
mustUnderstand (true|false) "false"
localize %LOCS; "i-default">
<!--
The IDMEF-Message element conveys the intrusion detection
information that is exchanged. This element is defined in the
idmef-message.dtd
-->
<!-- End of DTD -->
9.2. The channelPriority Option DTD
The following is the DTD defining the valid elements for the
channelPriority option.
<!--
DTD for the channelPriority IDXP option, as of 2002-01-08
Refer to this DTD as:
<!ENTITY % IDXP-channelPriority PUBLIC
"-//IETF//DTD RFC 4767 IDXP-channelPriority v1.0//EN">
%IDXP-channelPriority;
-->
<!--
Entity Definitions
entity syntax/reference example
====== ================ =======
Feinstein & Matthews Experimental [Page 22]
^L
RFC 4767 IDXP March 2007
a priority number
PRIORITY 0..2147483647 1
-->
<!ENTITY % PRIORITY "CDATA">
<!ELEMENT channelPriority EMPTY>
<!ATTLIST channelPriority
priority %PRIORITY #REQUIRED>
<!-- End of DTD -->
9.3. The streamType DTD
The following is the DTD defining the valid elements for the
streamType option.
<!--
DTD for the streamType IDXP option, as of 2002-01-08
Refer to this DTD as:
<!ENTITY % IDXP-streamType PUBLIC
"-//IETF//DTD RFC 4767 IDXP-streamType v1.0//EN">
%IDXP-streamType;
-->
<!--
Entity Definitions
entity syntax/reference example
====== ================ =======
a stream type
STYPE (alert | heartbeat | config) "alert"
-->
<!ENTITY % STYPE (alert|heartbeat|config)>
<!ELEMENT streamType EMPTY>
<!ATTLIST streamType
type %STYPE #REQUIRED>
<!-- End of DTD -->
Feinstein & Matthews Experimental [Page 23]
^L
RFC 4767 IDXP March 2007
10. Reply Codes
This section lists the three-digit error codes the IDXP profile may
generate.
code meaning
==== =======
421 Service not available
(e.g., the peer does not have sufficient resources)
450 Requested action not taken
(e.g., DNS lookup failed or connection could not
be established. See also 550.)
454 Temporary authentication failure
500 General syntax error
(e.g., poorly-formed XML)
501 Syntax error in parameters
(e.g., non-valid XML)
504 Parameter not implemented
530 Authentication required
534 Authentication mechanism insufficient
(e.g., cipher suite too weak, sequence exhausted)
535 Authentication failure
537 Action not authorized for user
550 Requested action not taken
(e.g., peer could be contacted, but
malformed greeting or no IDXP profile advertised)
553 Parameter invalid
554 Transaction failed
(e.g., policy violation)
Feinstein & Matthews Experimental [Page 24]
^L
RFC 4767 IDXP March 2007
11. Security Considerations
The IDXP profile is a profile of BEEP. In BEEP, transport security,
user authentication, and data exchange are orthogonal. Refer to
Section 9 of [4] for a discussion of this. It is strongly
recommended that those wanting to use the IDXP profile initially
negotiate a BEEP security profile between the peers that offers the
required security properties. The TLS profile SHOULD be used to
provide for transport security. See Section 5 for a discussion of
how IDXP fulfills the IDWG communications protocol requirements.
See Section 2.4 for a discussion of the trust model.
11.1. Use of the TUNNEL Profile
See Section 5 for IDXP's requirements on application-layer tunneling
and the TUNNEL profile specifically. See Section 7 of [3] for a
discussion of the security considerations inherent in the use of the
TUNNEL profile.
11.2. Use of Underlying Security Profiles
At present, the TLS profile is the only BEEP security profile known
to meet all of the requirements set forth in Section 5 of [5]. When
securing a BEEP session with the TLS profile, the
TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA cipher suite offers an acceptable
level of security. See Section 5 for a discussion of how IDXP
fulfills the IDWG communications requirements through the use of an
underlying security profile.
12. IANA Considerations
The IANA registered "idxp" as a TCP port number as specified in
Section 8.2.
The IANA maintains a list of:
IDXP options, see Section 7.
For this list, the IESG is responsible for assigning a designated
expert to review the specification prior to the IANA making the
assignment. As a courtesy to developers of non-standards track IDXP
options, the mailing list idxp-discuss@lists.idxp.org may be used to
solicit commentary.
IANA made the registrations specified in Sections 8.3 and 8.4.
Feinstein & Matthews Experimental [Page 25]
^L
RFC 4767 IDXP March 2007
13. References
13.1. Normative References
[1] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", BCP 14, RFC 2119, March 1997.
[2] Debar, H., Curry, D., and B. Feinstein, "The Intrusion Detection
Message Exchange Format (IDMEF)", RFC 4765, March 2007.
[3] New, D., "The TUNNEL Profile", RFC 3620, October 2003.
[4] Rose, M., "The Blocks Extensible Exchange Protocol Core", RFC
3080, March 2001.
[5] Wood, M. and M. Erlinger, "Intrusion Detection Message Exchange
Requirements", RFC 4766, March 2007.
13.2. Informative References
[6] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66, RFC 3986,
January 2005.
[7] Bray, T., Paoli, J., Sperberg-McQueen, C. and E. Maler,
"Extensible Markup Language (XML) 1.0 (2nd ed)", W3C REC-xml,
October 2000, <http://www.w3.org/TR/REC-xml>.
[8] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part Two: Media Types", RFC 2046, November
1996.
[9] Mockapetris, P., "Domain names - concepts and facilities", STD
13, RFC 1034, November 1987.
14. Acknowledgements
The authors gratefully acknowledge the contributions of Darren New,
Marshall T. Rose, Roy Pollock, Tim Buchheim, Mike Erlinger, John C.
C. White, and Paul Osterwald.
Feinstein & Matthews Experimental [Page 26]
^L
RFC 4767 IDXP March 2007
Authors' Addresses
Benjamin S. Feinstein
SecureWorks, Inc.
PO Box 95007
Atlanta, GA 30347
US
Phone: +1 404 327-6339
Email: bfeinstein@acm.org
URI: http://www.secureworks.com/
Gregory A. Matthews
CSC/NASA Ames Research Center
EMail: gmatthew@nas.nasa.gov
URI: http://www.nas.nasa.gov/
Feinstein & Matthews Experimental [Page 27]
^L
RFC 4767 IDXP March 2007
Full Copyright Statement
Copyright (C) The IETF Trust (2007).
This document is subject to the rights, licenses and restrictions
contained in BCP 78, 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 BCP 78 and BCP 79.
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
http://www.ietf.org/ipr.
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.
Feinstein & Matthews Experimental [Page 28]
^L
|