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 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
|
<pre>Internet Engineering Task Force (IETF) P. Kampanakis
Request for Comments: 8274 Cisco Systems
Category: Informational M. Suzuki
ISSN: 2070-1721 NICT
November 2017
<span class="h1">Incident Object Description Exchange Format Usage Guidance</span>
Abstract
The Incident Object Description Exchange Format (IODEF) v2 (<a href="./rfc7970">RFC 7970</a>)
defines a data representation that provides a framework for sharing
information about computer security incidents commonly exchanged by
Computer Security Incident Response Teams (CSIRTs). Since the IODEF
model includes a wealth of available options that can be used to
describe a security incident or issue, it can be challenging for
security practitioners to develop tools that leverage IODEF for
incident sharing. This document provides guidelines for IODEF
implementers. It addresses how common security indicators can be
represented in IODEF and provides use cases of how IODEF is being
used. This document aims to make IODEF's adoption by vendors easier
and to encourage faster and wider adoption of the model by CSIRTs
around the world.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="https://www.rfc-editor.org/info/rfc8274">https://www.rfc-editor.org/info/rfc8274</a>.
<span class="grey">Kampanakis & Suzuki Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Copyright Notice
Copyright (c) 2017 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. Implementation and Use Strategy . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3.1">3.1</a>. Minimal IODEF Document . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3.2">3.2</a>. Information Represented . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.3">3.3</a>. IODEF Classes . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-4">4</a>. IODEF Usage Considerations . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4.1">4.1</a>. External References . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4.2">4.2</a>. Extensions . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4.3">4.3</a>. Indicator Predicate Logic . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.4">4.4</a>. Disclosure Level . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-5">5</a>. IODEF Uses . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-5.1">5.1</a>. Implementations . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-5.2">5.2</a>. Inter-vendor and Service Provider Exercise . . . . . . . <a href="#page-8">8</a>
<a href="#section-5.3">5.3</a>. Use Cases . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-6">6</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-7">7</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-8">8</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-8.1">8.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-8.2">8.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#appendix-A">Appendix A</a>. Indicator Predicate Logic Examples . . . . . . . . . <a href="#page-14">14</a>
<a href="#appendix-B">Appendix B</a>. Inter-vendor and Service Provider Exercise Examples 16
<a href="#appendix-B.1">B.1</a>. Malware Delivery URL . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#appendix-B.2">B.2</a>. DDoS . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#appendix-B.3">B.3</a>. Spear Phishing . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#appendix-B.4">B.4</a>. Malware . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-B.5">B.5</a>. IoT Malware . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
<span class="grey">Kampanakis & Suzuki Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Incident Object Description Exchange Format (IODEF) v2 [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>]
defines a data representation that provides a framework for sharing
computer security incident information commonly exchanged by Computer
Security Incident Response Teams (CSIRTs). The IODEF data model
consists of multiple classes and data types that are defined in the
IODEF XML schema.
The IODEF schema was designed to describe all the possible fields
needed in a security incident exchange. Thus, IODEF contains a
plethora of data constructs that could make it hard for IODEF
implementers to decide which are important. Additionally, in the
IODEF schema, there exist multiple fields and classes that do not
necessarily need to be used in every possible data exchange.
Moreover, some IODEF classes are useful only in rare circumstances.
This document tries to address these concerns. It also presents how
common security indicators can be represented in IODEF, it points out
the most important IODEF classes for an implementer and describes
other ones that are not as important, and it presents some common
pitfalls for IODEF implementers and how to address them. The end
goal of this document is to make IODEF's use by vendors easier and to
encourage wider adoption of the model by CSIRTs around the world.
<a href="#section-3">Section 3</a> discusses the recommended classes and how an IODEF
implementer should choose the classes to implement. <a href="#section-4">Section 4</a>
presents common considerations a practitioner will come across and
how to address them. <a href="#section-5">Section 5</a> goes over some common uses of IODEF.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The terminology used in this document is defined in [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Implementation and Use Strategy</span>
It is important for IODEF implementers to distinguish how the IODEF
classes will be used in incident information exchanges. It is also
important to understand the most common IODEF classes that describe
common security incidents or indicators. This section describes the
most important classes and factors an IODEF practitioner should take
into consideration before using IODEF or designing an implementation.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Minimal IODEF Document</span>
An IODEF document must include at least an Incident class, an
xml:lang attribute that defines the supported language, and the IODEF
version attribute. An Incident must contain a purpose attribute and
three mandatory-to-implement elements. These elements are
<span class="grey">Kampanakis & Suzuki Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
GenerationTime class (which describes the time of the incident), an
IncidentID class, and at least one Contact class. The structure of
the minimal IODEF-Document class is shown in Figure 1.
+---------------+ +--------------+
|IODEF-Document | | Incident |
+---------------+ +--------------+ +--------------+
|STRING version |<>--{1..*}--| ENUM purpose |<>---------| IncidentID |
|ENUM xml:lang | | | +--------------+
| | | | | STRING name |
+---------------+ | | +--------------+
| |
| |<>---------[GenerationTime]
| |
| | +--------------+
| |<>-{1..*}--[ Contact |
+--------------+ +--------------+
| ENUM role |
| ENUM type |
+--------------+
Figure 1: Minimal IODEF-Document Class
The IncidentID class must contain at least a name attribute.
In turn, the Contact class requires the type and role attributes, but
no elements are required by the IODEF v2 specification.
Nevertheless, at least one of the elements in the Contact class, such
as an Email class, should be implemented so that the IODEF document
is useful.
<a href="./rfc7970#section-7.1">Section 7.1 of [RFC7970]</a> presents a minimal IODEF document with only
the mandatory classes and attributes. Implementers can also refer to
<a href="./rfc7970#section-7">Section 7 of [RFC7970]</a> and <a href="#appendix-B">Appendix B</a> of this document for examples
of documents that are IODEF v2.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Information Represented</span>
There is no need for a practitioner to use or implement IODEF classes
and fields other than the minimal ones (see <a href="#section-3.1">Section 3.1</a>) and the ones
necessary for her use cases. The implementer should carefully look
into the schema and decide which classes to implement (or not).
For example, if we have Distributed Denial of Service (DDoS) as a
potential use case, then the Flow class and its included information
are the most important classes to use. The Flow class describes
information related to the attacker and victim hosts, which could
help automated filtering or sinkhole operations.
<span class="grey">Kampanakis & Suzuki Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Another potential use case is malware command and control (C2).
After modern malware infects a device, it usually proceeds to connect
to one or more C2 servers to receive instructions from its master and
potentially exfiltrate information. To protect against such
activity, it is important to interrupt the C2 communication by
filtering the activity. IODEF can describe C2 activities using the
Flow and the ServiceName classes.
For use cases where indicators need to be described, the
IndicatorData class will be implemented instead of the EventData
class.
In summary, an implementer should identify the use cases and find the
classes that are necessary to support in IODEF v2. Implementing and
parsing all IODEF classes can be cumbersome, in some occasions, and
unnecessary. Other external schemata can also be used in IODEF to
describe incidents or indicators. External schemata should be parsed
accordingly only if the implementer's IODEF use cases require
external schema information. But even when an IODEF implementation
cannot parse an external schema, the IODEF report can still be
valuable to an incident response team. The information can also be
useful when shared further with content consumers that are able to
parse this information.
IODEF supports multiple language translations of free-form, ML_STRING
text in all classes [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>]. That way, text in Description
elements can be translated to different languages by using a
translation identifier in the class. Implementers should be able to
parse iodef:MLStringType classes and extract only the information
relevant to languages of interest.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. IODEF Classes</span>
[<a id="ref-RFC7970">RFC7970</a>] contains classes that can describe attack Methods, Events,
Incidents, Indicators, how they were discovered, and the Assessment
of the repercussions for the victim. It is important for IODEF users
to know the distinction between these classes in order to decide
which ones fulfill their use cases.
An IndicatorData class depicts a threat indicator or observable that
describe a threat that resulted in an attempted attack. For example,
we could see an attack happening (described in the IndicatorData),
but it might have been prevented and not have resulted in an incident
or security event. On the other hand, an EventData class usually
describes a security event and can be considered a report of
something that took place.
<span class="grey">Kampanakis & Suzuki Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Classes like Discovery, Assessment, Method, and RecoveryTime are used
in conjunction with EventData as they relate to the incident report
described in the EventData. The RelatedActivity class can reference
an incident, an indicator, or other related threat activity.
While deciding what classes are important for the needed use cases,
IODEF users should carefully evaluate the necessary classes and how
these are used in order to avoid unnecessary work. For example, if
we want to only describe indicators in IODEF, the implementation of
Method or Assessment might not be important.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. IODEF Usage Considerations</span>
Implementers need to consider some common, standardized options for
their IODEF use strategy.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. External References</span>
The IODEF format includes the Reference class used for externally
defined information, such as a vulnerability, Intrusion Detection
System (IDS) alert, malware sample, advisory, or attack technique.
To facilitate the exchange of information, the Reference class was
extended to the enumeration reference format [<a href="./rfc7495" title=""Enumeration Reference Format for the Incident Object Description Exchange Format (IODEF)"">RFC7495</a>]. The
enumeration reference format specifies a means to use external
enumeration specifications (e.g., Common Vulnerabilities and
Exposures (CVE)) that could define an enumeration format, specific
enumeration values, or both. As external enumerations can vary
greatly, implementers should only support the ones expected to
describe their specific use cases.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Extensions</span>
The IODEF data model [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>] is extensible. Many attributes with
enumerated values can be extended using the "ext-*" prefix.
Additional classes can also be defined by using the AdditionalData
and RecordItem classes. An extension to the AdditionalData class for
reporting phishing emails is defined in [<a href="./rfc5901" title=""Extensions to the IODEF-Document Class for Reporting Phishing"">RFC5901</a>]. Information about
extending IODEF class attributes and enumerated values can be found
in <a href="./rfc7970#section-5">Section 5 of [RFC7970]</a>.
Additionally, IODEF can import existing schemata by using an
extension framework defined in [<a href="./rfc7203" title=""An Incident Object Description Exchange Format (IODEF) Extension for Structured Cybersecurity Information"">RFC7203</a>]. The framework enables
IODEF users to embed XML data inside an IODEF document using external
schemata or structures defined by external specifications. Examples
include CVE, Common Vulnerability Reporting Framework (CVRF), and
Open Vulnerability and Assessment Language (OVAL). [<a href="./rfc7203" title=""An Incident Object Description Exchange Format (IODEF) Extension for Structured Cybersecurity Information"">RFC7203</a>]
enhances the IODEF capabilities without further extending the data
model.
<span class="grey">Kampanakis & Suzuki Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
IODEF implementers should not use their own IODEF extensions unless
data cannot be represented using existing standards or unless
importing them in an IODEF document as defined in [<a href="./rfc7203" title=""An Incident Object Description Exchange Format (IODEF) Extension for Structured Cybersecurity Information"">RFC7203</a>] is not a
suitable option.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Indicator Predicate Logic</span>
An IODEF document [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>] can describe incident reports and
indicators. The Indicator class can include references to other
indicators, observables, and more classes that contain details about
the indicator. When describing security indicators, it is often
common to need to group them together in order to form a group of
indicators that constitute a security threat. For example, a botnet
might have multiple command and control servers. For that reason,
IODEF v2 introduced the IndicatorExpression class, which is used to
add the indicator predicate logic when grouping more than one
indicator or observable.
Implementations must be able to parse and apply the Boolean logic
offered by an IndicatorExpression in order to evaluate the existence
of an indicator. As explained in <a href="./rfc7970#section-3.29.5">Section 3.29.5 of [RFC7970]</a>, the
IndicatorExpression element operator defines the operator applied to
all the child elements of the IndicatorExpression. If no operator is
defined, "and" should be assumed. IndicatorExpressions can also be
nested together. Child IndicatorExpressions should be treated as
child elements of their parent, and they should be evaluated first
before being evaluated with the operator of their parent.
Users can refer to <a href="#appendix-A">Appendix A</a> for example uses of the
IndicatorExpressions in an IODEF v2.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Disclosure Level</span>
Access to information in IODEF documents should be tightly locked
since the content may be confidential. IODEF has a common attribute,
called "restriction", which indicates the disclosure guideline to
which the sender expects the recipient to adhere to for the
information represented in the class and its children. That way, the
sender can express the level of disclosure for each component of an
IODEF document. Appropriate external measures could be implemented
based on the restriction level. One example is when Real-time Inter-
network Defense (RID) [<a href="./rfc6545" title=""Real-time Inter-network Defense (RID)"">RFC6545</a>] is used to transfer the IODEF
documents, it can provide policy guidelines for handling IODEF
documents by using the RIDPolicy class.
The enforcement of the disclosure guidelines is out of scope for
IODEF. The recipient of the IODEF document needs to follow the
guidelines, but these guidelines themselves do not provide any
<span class="grey">Kampanakis & Suzuki Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
enforcement measures. For that purpose, implementers should consider
appropriate privacy control measures, technical or operational, for
their implementation.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. IODEF Uses</span>
IODEF is currently used by various organizations in order to
represent security incidents and share incident and threat
information between security operations organizations.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Implementations</span>
In order to use IODEF, tools like IODEF parsers are necessary.
[<a href="./rfc8134" title=""Management Incident Lightweight Exchange (MILE) Implementation Report"">RFC8134</a>] describes a set of IODEF implementations and uses by
various vendors and Computer Emergency Readiness Team (CERT)
organizations. The document does not specify any particular
mandatory-to-implement (MTI) IODEF classes but provides a list of
real-world uses. Perl and Python modules (XML::IODEF, Iodef::Pb,
iodeflib) are some examples. Moreover, implementers are encouraged
to refer to <a href="./rfc8134#section-7">Section 7 of [RFC8134]</a> for practical IODEF usage
guidelines. On the other hand, [<a href="#ref-IODEF_IMP">IODEF_IMP</a>] includes various vendor
incident reporting products that can consume and export in IODEF
format.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Inter-vendor and Service Provider Exercise</span>
As an interoperability exercise, a limited number of vendors
organized and executed exchanges of threat indicators in IODEF in
2013. The transport protocol used was RID. The threat information
shared included indicators from DDoS attacks as well as malware
incidents and spear phishing that targets specific individuals after
harvesting information about them. The results served as proof-of-
concept (PoC) about how seemingly competing entities could use IODEF
to exchange sanitized security information. As this was a PoC
exercise, only example information (no real threats) was shared as
part of the exchanges.
<span class="grey">Kampanakis & Suzuki Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
____________ ____________
| Vendor X | | Vendor Y |
| RID Agent |_______-------------________| RID Agent |
|___________| | Internet | |___________|
-------------
---- RID Report message --->
-- carrying IODEF example ->
--------- over TLS -------->
<----- RID Ack message -----
<--- in case of failure ----
Figure 2: PoC Peering Topology
Figure 2 shows how RID interactions took place during the PoC.
Participating organizations were running RID Agent software on
premises. The RID Agents formed peering relationships with other
participating organizations. When Entity X had a new incident to
exchange, it would package it in IODEF and send it to Entity Y over
Transport Layer Security (TLS) in a RID Report message. In case
there was an issue with the message, Entity Y would send a RID
Acknowledgement message back to Entity X, which included an
application-level message to describe the issue. Interoperability
between RID Agents implementing [<a href="./rfc6545" title=""Real-time Inter-network Defense (RID)"">RFC6545</a>] and [<a href="./rfc6546" title=""Transport of Real-time Inter-network Defense (RID) Messages over HTTP/TLS"">RFC6546</a>] was also
confirmed.
The first use case included sharing of malware data related to an
Incident between CSIRTs. After Entity X detected an incident, Entity
X would put data about malware found during the incident in a backend
system. Entity X then decided to share the incident information with
Entity Y about the malware discovered. This could be a human
decision or part of an automated process.
Below are the steps followed for the malware information exchange
that was taking place:
(1) Entity X has a sharing agreement with Entity Y and has already
been configured with the IP address of Entity Y's RID Agent.
(2) Entity X's RID Agent connects to Entity Y's RID Agent, and
mutual authentication occurs using PKI digital certificates.
<span class="grey">Kampanakis & Suzuki Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
(3) Entity X pushes out a RID Report message, which contains
information about N pieces of discovered malware. IODEF is used
in RID to describe the
(a) hash of malware files;
(b) registry settings changed by the malware; and
(c) C2 information for the malware.
(4) Entity Y receives a RID Report message and sends a RID
Acknowledgement message.
(5) Entity Y stores the data in a format that makes it possible for
the backend to know which source the data came from.
Another use case was sharing a DDoS attack as explained in the
following scenario: Entity X, a Critical Infrastructure and Key
Resource (CIKR) company, detects that their internet connection is
saturated with an abnormal amount of traffic. Further investigation
determines that this is an actual DDoS attack. Entity X's CSIRT
contacts their ISP, Entity Y, and shares information with them about
the attack traffic characteristics. Entity X's ISP is being
overwhelmed by the amount of traffic, so it shares attack signatures
and IP addresses of the most prolific hosts with its adjacent ISPs.
Below are the steps followed for a DDoS information exchange:
(1) Entity X has a sharing agreement with Entity Y and has already
been configured with the IP address of Entity Y's RID Agent.
(2) Entity X's RID Agent connects to Entity Y's RID Agent, and
mutual authentication occurs using PKI digital certificates.
(3) Entity X pushes out a RID Report message, which contains
information about the DDoS attack. IODEF is used in RID to
describe the following:
(a) Start and Detect dates and times;
(b) IP addresses of nodes sending DDoS traffic;
(c) sharing and use restrictions;
(d) traffic characteristics (protocols and ports);
<span class="grey">Kampanakis & Suzuki Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
(e) HTTP user agents used; and
(f) IP addresses of C2 for a botnet.
(4) Entity Y receives a RID Report message and sends a RID
Acknowledgement message.
(5) Entity Y stores the data in a format that makes it possible for
the backend to know which source the data came from.
(6) Entity Y shares information with other ISP entities it has an
established relationship with.
One more use case was sharing spear-phishing email information as
explained in the following scenario: the board members of several
defense contractors receive a targeted email inviting them to attend
a conference in San Francisco. The board members are asked to
provide their personally identifiable information such as their home
address, phone number, corporate email, etc., in an attached document
that came with the email. The board members are also asked to click
on a URL that would allow them to reach the sign-up page for the
conference. One of the recipients believes the email to be a
phishing attempt and forwards the email to their corporate CSIRT for
analysis. The CSIRT identifies the email as an attempted spear-
phishing incident and distributes the indicators to their sharing
partners.
Below are the steps followed for a spear-phishing information
exchange between CSIRTs that were part of this PoC.
(1) Entity X has a sharing agreement with Entity Y and has already
been configured with the IP address of Entity Y's RID Agent.
(2) Entity X's RID Agent connects to Entity Y's RID Agent, and
mutual authentication occurs using PKI digital certificates.
(3) Entity X pushes out a RID Report message that contains
information about the spear-phishing email. IODEF is used in
RID to describe the following:
(a) attachment details (file Name, hash, size, malware family);
(b) target description (IP, domain, NSLookup);
(c) email information (From, Subject, header information, date/
time, digital signature); and
(d) confidence score.
<span class="grey">Kampanakis & Suzuki Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
(4) Entity Y receives a RID Report message and sends a RID
Acknowledgement message.
(5) Entity Y stores the data in a format that makes it possible for
the backend to know which source the data came from.
<a href="#appendix-B">Appendix B</a> includes some of the IODEF example information that was
exchanged by the organizations' RID Agents as part of this PoC.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Use Cases</span>
Other use cases of IODEF, aside from the ones described above, could
be as follows:
(1) ISP notifying a national CERT or organization when it identifies
and acts upon an incident, and CERTs notifying ISPs when they
are aware of incidents.
(2) Suspected phishing emails could be shared amongst organizations
and national agencies. Automation could validate web content
that the suspicious emails are pointing to. Identified
malicious content linked in a phishing email could then be
shared using IODEF. Phishing campaigns could thus be subverted
much faster by automating information sharing using IODEF.
(3) When finding a certificate that should be revoked, a third party
would forward an automated IODEF message to the Certification
Authority (CA) with the full context of the certificate, and the
CA could act accordingly after checking its validity.
Alternatively, in the event of a compromise of the private key
of a certificate, a third party could alert the certificate
owner about the compromise using IODEF.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This memo does not require any IANA actions.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
This document does not incur any new security issues, because it only
talks about the usage of IODEFv2 defined in <a href="./rfc7970">RFC 7970</a>. Nevertheless,
readers of this document should refer to the Security Considerations
section of [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>].
<span class="grey">Kampanakis & Suzuki Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<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-RFC5901">RFC5901</a>] Cain, P. and D. Jevans, "Extensions to the IODEF-Document
Class for Reporting Phishing", <a href="./rfc5901">RFC 5901</a>,
DOI 10.17487/RFC5901, July 2010,
<<a href="https://www.rfc-editor.org/info/rfc5901">https://www.rfc-editor.org/info/rfc5901</a>>.
[<a id="ref-RFC6545">RFC6545</a>] Moriarty, K., "Real-time Inter-network Defense (RID)",
<a href="./rfc6545">RFC 6545</a>, DOI 10.17487/RFC6545, April 2012,
<<a href="https://www.rfc-editor.org/info/rfc6545">https://www.rfc-editor.org/info/rfc6545</a>>.
[<a id="ref-RFC7203">RFC7203</a>] Takahashi, T., Landfield, K., and Y. Kadobayashi, "An
Incident Object Description Exchange Format (IODEF)
Extension for Structured Cybersecurity Information",
<a href="./rfc7203">RFC 7203</a>, DOI 10.17487/RFC7203, April 2014,
<<a href="https://www.rfc-editor.org/info/rfc7203">https://www.rfc-editor.org/info/rfc7203</a>>.
[<a id="ref-RFC7495">RFC7495</a>] Montville, A. and D. Black, "Enumeration Reference Format
for the Incident Object Description Exchange Format
(IODEF)", <a href="./rfc7495">RFC 7495</a>, DOI 10.17487/RFC7495, March 2015,
<<a href="https://www.rfc-editor.org/info/rfc7495">https://www.rfc-editor.org/info/rfc7495</a>>.
[<a id="ref-RFC7970">RFC7970</a>] Danyliw, R., "The Incident Object Description Exchange
Format Version 2", <a href="./rfc7970">RFC 7970</a>, DOI 10.17487/RFC7970,
November 2016, <<a href="https://www.rfc-editor.org/info/rfc7970">https://www.rfc-editor.org/info/rfc7970</a>>.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-IODEF_IMP">IODEF_IMP</a>]
"Implementations on Incident Object Description Exchange
Format", <<a href="http://siis.realmv6.org/implementations/">http://siis.realmv6.org/implementations/</a>>.
[<a id="ref-RFC6546">RFC6546</a>] Trammell, B., "Transport of Real-time Inter-network
Defense (RID) Messages over HTTP/TLS", <a href="./rfc6546">RFC 6546</a>,
DOI 10.17487/RFC6546, April 2012,
<<a href="https://www.rfc-editor.org/info/rfc6546">https://www.rfc-editor.org/info/rfc6546</a>>.
[<a id="ref-RFC8134">RFC8134</a>] Inacio, C. and D. Miyamoto, "Management Incident
Lightweight Exchange (MILE) Implementation Report",
<a href="./rfc8134">RFC 8134</a>, DOI 10.17487/RFC8134, May 2017,
<<a href="https://www.rfc-editor.org/info/rfc8134">https://www.rfc-editor.org/info/rfc8134</a>>.
<span class="grey">Kampanakis & Suzuki Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Indicator Predicate Logic Examples</span>
In the following example, the EventData class evaluates as a Flow of
one System with source address 192.0.2.104 OR 192.0.2.106 AND target
address 198.51.100.1.
<!-- ...XML code omitted... -->
<IndicatorData>
<Indicator>
<IndicatorID name="csirt.example.com" version="1">
G90823490
</IndicatorID>
<Description>C2 domains</Description>
<IndicatorExpression operator="and">
<IndicatorExpression operator="or">
<Observable>
<System category="source" spoofed="no">
<Node>
<Address category="ipv4-addr">
192.0.2.104
</Address>
</Node>
</System>
</Observable>
<Observable>
<System category="source" spoofed="no">
<Node>
<Address category="ipv4-addr">
192.0.2.106
</Address>
</Node>
</System>
</Observable>
</IndicatorExpression>
<Observable>
<System category="target" spoofed="no">
<Node>
<Address category="ipv4-addr">
198.51.100.1
</Address>
</Node>
</System>
</Observable>
</IndicatorExpression>
</Indicator>
</IndicatorData>
<!-- ...XML code omitted... -->
<span class="grey">Kampanakis & Suzuki Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Similarly, the FileData Class can be an observable in an
IndicatorExpression. The hash values of two files can be used to
match against an indicator using Boolean "or" logic. In the
following example, the indicator consists of either of the two files
with two different hashes.
<!-- ...XML code omitted... -->
<IndicatorData>
<Indicator>
<IndicatorID name="csirt.example.com" version="1">
A4399IWQ
</IndicatorID>
<Description>File hash watchlist</Description>
<IndicatorExpression operator="or">
<Observable>
<FileData>
<File>
<FileName>dummy.txt</FileName>
<HashData scope="file-contents">
<Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha256">http://www.w3.org/2001/04/xmlenc#sha256</a>"/>
<ds:DigestValue>
141accec23e7e5157de60853cb1e01bc38042d
08f9086040815300b7fe75c184
</ds:DigestValue>
</Hash>
</HashData>
</File>
</FileData>
</Observable>
<Observable>
<FileData>
<File>
<FileName>dummy2.txt</FileName>
<HashData scope="file-contents">
<Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha256">http://www.w3.org/2001/04/xmlenc#sha256</a>"/>
<ds:DigestValue>
141accec23e7e5157de60853cb1e01bc38042d
08f9086040815300b7fe75c184
</ds:DigestValue>
</Hash>
</HashData>
</File>
</FileData>
</Observable>
<span class="grey">Kampanakis & Suzuki Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</IndicatorExpression>
</Indicator>
</IndicatorData>
<!-- ...XML code omitted... -->
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Inter-vendor and Service Provider Exercise Examples</span>
Below, some of the IODEF example information that was exchanged by
the vendors as part of this proof-of-concept, inter-vendor and
service provider exercise.
<span class="h3"><a class="selflink" id="appendix-B.1" href="#appendix-B.1">B.1</a>. Malware Delivery URL</span>
This example indicates malware and a related URL for file delivery.
<?xml version="1.0" encoding="UTF-8"?>
<IODEF-Document version="2.00"
xmlns="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:iodef="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<iodef:Incident purpose="reporting">
<iodef:IncidentID name="csirt.example.com">
189801
</iodef:IncidentID>
<iodef:ReportTime>2012-12-05T12:20:00+00:00</iodef:ReportTime>
<iodef:GenerationTime>2012-12-05T12:20:00+00:00
</iodef:GenerationTime>
<iodef:Description>Malware and related indicators
</iodef:Description>
<iodef:Assessment occurrence="potential">
<iodef:SystemImpact severity="medium" type="breach-privacy">
<iodef:Description>Malware with C2
</iodef:Description>
</iodef:SystemImpact>
</iodef:Assessment>
<iodef:Contact role="creator" type="organization">
<iodef:ContactName>example.com CSIRT
</iodef:ContactName>
<iodef:Email>
<iodef:EmailTo>contact@csirt.example.com
</iodef:EmailTo>
</iodef:Email>
</iodef:Contact>
<iodef:EventData>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<iodef:Address category="ipv4-addr">192.0.2.200
<span class="grey">Kampanakis & Suzuki Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:Address>
<iodef:Address category="site-uri">
/log-bin/lunch_install.php?aff_id=1&amp;lunch_id=1&amp;
maddr=&amp;action=install
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="www"/>
</iodef:System>
</iodef:Flow>
</iodef:EventData>
</iodef:Incident>
</IODEF-Document>
<span class="h3"><a class="selflink" id="appendix-B.2" href="#appendix-B.2">B.2</a>. DDoS</span>
The DDoS test exchanged information that described a DDoS, including
protocols and ports, bad IP addresses, and HTTP user agent fields.
The IODEF version used for the data representation was based on
[<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>].
<?xml version="1.0" encoding="UTF-8"?>
<IODEF-Document version="2.00"
xmlns="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:iodef="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<iodef:Incident purpose="reporting" restriction="default">
<iodef:IncidentID name="csirt.example.com">
189701
</iodef:IncidentID>
<iodef:DetectTime>2013-02-05T01:15:45+00:00</iodef:DetectTime>
<iodef:StartTime>2013-02-05T00:34:45+00:00</iodef:StartTime>
<iodef:ReportTime>2013-02-05T01:34:45+00:00</iodef:ReportTime>
<iodef:GenerationTime>2013-02-05T01:15:45+00:00
</iodef:GenerationTime>
<iodef:Description>DDoS Traffic Seen</iodef:Description>
<iodef:Assessment occurrence="actual">
<iodef:SystemImpact severity="medium" type="availability-system">
<iodef:Description>DDoS Traffic
</iodef:Description>
</iodef:SystemImpact>
<iodef:Confidence rating="high"/>
</iodef:Assessment>
<iodef:Contact role="creator" type="organization">
<iodef:ContactName>Dummy Test</iodef:ContactName>
<iodef:Email>
<iodef:EmailTo>contact@dummytest.com
</iodef:EmailTo>
</iodef:Email>
<span class="grey">Kampanakis & Suzuki Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:Contact>
<iodef:EventData>
<iodef:Description>
Dummy Test sharing with ISP1
</iodef:Description>
<iodef:Method>
<iodef:Reference>
<iodef:URL>
<a href="http://blog.spiderlabs.com/2011/01/loic-ddos-analysis-and-detection.html">http://blog.spiderlabs.com/2011/01/loic-ddos-</a>
<a href="http://blog.spiderlabs.com/2011/01/loic-ddos-analysis-and-detection.html">analysis-and-detection.html</a>
</iodef:URL>
<iodef:URL>
<a href="http://en.wikipedia.org/wiki/Low_Orbit_Ion_Cannon">http://en.wikipedia.org/wiki/Low_Orbit_Ion_Cannon</a>
</iodef:URL>
<iodef:Description>
Low Orbit Ion Cannon User Agent
</iodef:Description>
</iodef:Reference>
</iodef:Method>
<iodef:Flow>
<iodef:System category="source" spoofed="no">
<iodef:Node>
<iodef:Address category="ipv4-addr">
192.0.2.104
</iodef:Address>
</iodef:Node>
<iodef:Service ip-protocol="6">
<iodef:Port>1337</iodef:Port>
</iodef:Service>
</iodef:System>
<iodef:System category="source" spoofed="no">
<iodef:Node>
<iodef:Address category="ipv4-addr">
192.0.2.106
</iodef:Address>
</iodef:Node>
<iodef:Service ip-protocol="6">
<iodef:Port>1337</iodef:Port>
</iodef:Service>
</iodef:System>
<iodef:System category="source" spoofed="yes">
<iodef:Node>
<iodef:Address category="ipv4-net">
198.51.100.0/24
</iodef:Address>
</iodef:Node>
<iodef:Service ip-protocol="6">
<iodef:Port>1337</iodef:Port>
<span class="grey">Kampanakis & Suzuki Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:Service>
</iodef:System>
<iodef:System category="source" spoofed="yes">
<iodef:Node>
<iodef:Address category="ipv6-addr">
2001:db8:dead:beef::1
</iodef:Address>
</iodef:Node>
<iodef:Service ip-protocol="6">
<iodef:Port>1337</iodef:Port>
</iodef:Service>
</iodef:System>
<iodef:System category="target">
<iodef:Node>
<iodef:Address category="ipv4-addr">
203.0.113.1
</iodef:Address>
</iodef:Node>
<iodef:Service ip-protocol="6">
<iodef:Port>80</iodef:Port>
</iodef:Service>
</iodef:System>
<iodef:System category="sensor">
<iodef:Node>
</iodef:Node>
<iodef:Description>
Information provided in Flow class instance is from
Inspection of traffic from network tap
</iodef:Description>
</iodef:System>
</iodef:Flow>
<iodef:Expectation action="other"/>
</iodef:EventData>
<iodef:IndicatorData>
<iodef:Indicator>
<iodef:IndicatorID name="csirt.example.com" version="1">
G83345941
</iodef:IndicatorID>
<iodef:Description>
User-Agent string
</iodef:Description>
<iodef:Observable>
<iodef:BulkObservable type="http-user-agent">
<iodef:BulkObservableList>
user-agent="Mozilla/5.0 (Macintosh; U;
Intel Mac OS X 10.5; en-US; rv:1.9.2.12)
Gecko/20101026 Firefox/3.6.12">
</iodef:BulkObservableList>
<span class="grey">Kampanakis & Suzuki Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:BulkObservable>
</iodef:Observable>
</iodef:Indicator>
</iodef:IndicatorData>
</iodef:Incident>
</IODEF-Document>
<span class="h3"><a class="selflink" id="appendix-B.3" href="#appendix-B.3">B.3</a>. Spear Phishing</span>
The spear-phishing test exchanged information that described a spear-
phishing email, including DNS records and addresses about the sender,
malicious attached file information, and email data. The IODEF
version used for the data representation was based on [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>].
<?xml version="1.0" encoding="UTF-8"?>
<IODEF-Document version="2.00"
xmlns="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:iodef="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<iodef:Incident purpose="reporting">
<iodef:IncidentID name="csirt.example.com">
189601
</iodef:IncidentID>
<iodef:DetectTime>2013-01-04T08:06:12+00:00</iodef:DetectTime>
<iodef:StartTime>2013-01-04T08:01:34+00:00</iodef:StartTime>
<iodef:EndTime>2013-01-04T08:31:27+00:00</iodef:EndTime>
<iodef:ReportTime>2013-01-04T09:15:45+00:00</iodef:ReportTime>
<iodef:GenerationTime>2013-01-04T09:15:45+00:00
</iodef:GenerationTime>
<iodef:Description>
Zeus Spear Phishing E-mail with Malware Attachment
</iodef:Description>
<iodef:Assessment occurrence="potential">
<iodef:SystemImpact severity="medium" type="takeover-system">
<iodef:Description>
Malware with Command and Control Server and System Changes
</iodef:Description>
</iodef:SystemImpact>
</iodef:Assessment>
<iodef:Contact role="creator" type="organization">
<iodef:ContactName>example.com CSIRT</iodef:ContactName>
<iodef:Email>
<iodef:EmailTo>contact@csirt.example.com</iodef:EmailTo>
</iodef:Email>
</iodef:Contact>
<iodef:EventData>
<iodef:Description>
<span class="grey">Kampanakis & Suzuki Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Targeting Defense Contractors,
specifically board members attending Dummy Con
</iodef:Description>
<iodef:Method>
<iodef:Reference observable-id="ref-1234">
<iodef:Description>Zeus</iodef:Description>
</iodef:Reference>
</iodef:Method>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<iodef:Address category="site-uri">
<a href="http://www.zeusevil.example.com">http://www.zeusevil.example.com</a>
</iodef:Address>
<iodef:Address category="ipv4-addr">
192.0.2.166
</iodef:Address>
<iodef:Address category="asn">
65535
</iodef:Address>
<iodef:Address category="ext-value"
ext-category="as-name">
EXAMPLE-AS - University of Example
</iodef:Address>
<iodef:Address category="ext-value"
ext-category="as-prefix">
192.0.2.0/24
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="malware-distribution"/>
</iodef:System>
</iodef:Flow>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<iodef:DomainData>
<Name>mail1.evildave.example.com</Name>
</iodef:DomainData>
<iodef:Address category="ipv4-addr">
198.51.100.6
</iodef:Address>
<iodef:Address category="asn">
65534
</iodef:Address>
<iodef:Address category="ext-value"
ext-category="as-name">
EXAMPLE-AS - University of Example
</iodef:Address>
<span class="grey">Kampanakis & Suzuki Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<iodef:DomainData>
<iodef:Name>evildave.example.com</iodef:Name>
<iodef:DateDomainWasChecked>2013-01-04T09:10:24+00:00
</iodef:DateDomainWasChecked>
<!-- <iodef:RelatedDNS RecordType="MX"> -->
<iodef:RelatedDNS dtype="string">
evildave.example.com MX preference = 10, mail exchanger
= mail1.evildave.example.com
</iodef:RelatedDNS>
<iodef:RelatedDNS dtype="string">
mail1.evildave.example.com
internet address = 198.51.100.6
</iodef:RelatedDNS>
<iodef:RelatedDNS dtype="string">
zuesevil.example.com. IN TXT \"v=spf1 a mx -all\"
</iodef:RelatedDNS>
</iodef:DomainData>
</iodef:Node>
<iodef:NodeRole category="mail">
<iodef:Description>
Sending phishing mails
</iodef:Description>
</iodef:NodeRole>
<iodef:Service>
<iodef:EmailData>
<iodef:EmailFrom>
emaildave@evildave.example.com
</iodef:EmailFrom>
<iodef:EmailSubject>
Join us at Dummy Con
</iodef:EmailSubject>
<iodef:EmailX-Mailer>
StormRider 4.0
</iodef:EmailX-Mailer>
</iodef:EmailData>
</iodef:Service>
</iodef:System>
<iodef:System category="target">
<iodef:Node>
<iodef:Address category="ipv4-addr">
203.0.113.2
</iodef:Address>
</iodef:Node>
</iodef:System>
</iodef:Flow>
<iodef:Expectation action="other"/>
<iodef:Record>
<iodef:RecordData>
<span class="grey">Kampanakis & Suzuki Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<iodef:FileData observable-id="fd-1234">
<iodef:File>
<iodef:FileName>
Dummy Con Sign Up Sheet.txt
</iodef:FileName>
<iodef:FileSize>
152
</iodef:FileSize>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha256">http://www.w3.org/2001/04/xmlenc#sha256</a>"/>
<ds:DigestValue>
141accec23e7e5157de60853cb1e01bc38042d
08f9086040815300b7fe75c184
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
</iodef:FileData>
</iodef:RecordData>
<iodef:RecordData>
<iodef:CertificateData>
<iodef:Certificate>
<ds:X509Data>
<ds:X509IssuerSerial>
<ds:X509IssuerName>FakeCA
</ds:X509IssuerName>
<ds:X509SerialNumber>
57482937101
</ds:X509SerialNumber>
</ds:X509IssuerSerial>
<ds:X509SubjectName>EvilDaveExample
</ds:X509SubjectName>
</ds:X509Data>
</iodef:Certificate>
</iodef:CertificateData>
</iodef:RecordData>
</iodef:Record>
</iodef:EventData>
</iodef:Incident>
</IODEF-Document>
<span class="grey">Kampanakis & Suzuki Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<span class="h3"><a class="selflink" id="appendix-B.4" href="#appendix-B.4">B.4</a>. Malware</span>
In this test, malware information was exchanged using RID and IODEF.
The information included file hashes, registry setting changes, and
the C2 servers the malware uses.
<?xml version="1.0" encoding="UTF-8"?>
<IODEF-Document version="2.00"
xmlns="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:iodef="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<iodef:Incident purpose="reporting">
<iodef:IncidentID name="csirt.example.com">
189234
</iodef:IncidentID>
<iodef:ReportTime>2013-03-07T16:14:56.757+05:30</iodef:ReportTime>
<iodef:GenerationTime>2013-03-07T16:14:56.757+05:30
</iodef:GenerationTime>
<iodef:Description>
Malware and related indicators identified
</iodef:Description>
<iodef:Assessment occurrence="potential">
<iodef:SystemImpact severity="medium" type="breach-proprietary">
<iodef:Description>
Malware with Command and Control Server and System Changes
</iodef:Description>
</iodef:SystemImpact>
</iodef:Assessment>
<iodef:Contact role="creator" type="organization">
<iodef:ContactName>example.com CSIRT</iodef:ContactName>
<iodef:Email>
<iodef:EmailTo>contact@csirt.example.com</iodef:EmailTo>
</iodef:Email>
</iodef:Contact>
<iodef:EventData>
<iodef:Method>
<iodef:Reference>
<iodef:URL>
<a href="http://www.threatexpert.example.com/report.aspx?">http://www.threatexpert.example.com/report.aspx?</a>
md5=e2710ceb088dacdcb03678db250742b7
</iodef:URL>
<iodef:Description>Zeus</iodef:Description>
</iodef:Reference>
</iodef:Method>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<span class="grey">Kampanakis & Suzuki Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<iodef:Address category="ipv4-addr"
observable-id="addr-c2-91011-001">
203.0.113.200
</iodef:Address>
<iodef:Address category="site-uri"
observable-id="addr-c2-91011-002">
<a href="http://zeus.556677889900.example.com/log-bin/lunch_install">http://zeus.556677889900.example.com/log-bin/</a>
<a href="http://zeus.556677889900.example.com/log-bin/lunch_install">lunch_install</a>.php?aff_id=1&amp;
lunch_id=1&amp;maddr=&amp;
action=install
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="c2-server"/>
</iodef:System>
</iodef:Flow>
<iodef:Record>
<iodef:RecordData>
<iodef:FileData observable-id="file-91011-001">
<iodef:File>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha1">http://www.w3.org/2001/04/xmlenc#sha1</a>"/>
<ds:DigestValue>
MHg2NzUxQTI1MzQ4M0E2N0Q4NkUwRjg0NzYwRjYxRjEwQkJDQzJF
REZG
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
<iodef:File>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#md5">http://www.w3.org/2001/04/xmlenc#md5</a>"/>
<ds:DigestValue>
MHgyRTg4ODA5ODBENjI0NDdFOTc5MEFGQTg5NTEzRjBBNA==
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
</iodef:FileData>
<iodef:WindowsRegistryKeysModified observable-id=
"regkey-91011-001">
<iodef:Key registryaction="add-value">
<iodef:KeyName>
HKLM\Software\Microsoft\Windows\
CurrentVersion\Run\tamg
<span class="grey">Kampanakis & Suzuki Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:KeyName>
<iodef:Value>
?\?\?%System%\wins\mc.exe\?\??
</iodef:Value>
</iodef:Key>
<iodef:Key registryaction="modify-value">
<iodef:KeyName>HKLM\Software\Microsoft\
Windows\CurrentVersion\Run\dqo
</iodef:KeyName>
<iodef:Value>"\"\"%Windir%\Resources\
Themes\Luna\km.exe\?\?"
</iodef:Value>
</iodef:Key>
</iodef:WindowsRegistryKeysModified>
</iodef:RecordData>
</iodef:Record>
</iodef:EventData>
<iodef:EventData>
<iodef:Method>
<iodef:Reference>
<iodef:URL>
<a href="http://www.threatexpert.example.com/report.aspx?">http://www.threatexpert.example.com/report.aspx?</a>
md5=c3c528c939f9b176c883ae0ce5df0001
</iodef:URL>
<iodef:Description>Cridex</iodef:Description>
</iodef:Reference>
</iodef:Method>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<iodef:Address category="ipv4-addr"
observable-id="addr-c2-91011-003">
203.0.113.100
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="c2-server"/>
<iodef:Service ip-protocol="6">
<iodef:Port>8080</iodef:Port>
</iodef:Service>
</iodef:System>
</iodef:Flow>
<iodef:Record>
<iodef:RecordData>
<iodef:FileData observable-id="file-91011-002">
<iodef:File>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<span class="grey">Kampanakis & Suzuki Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha1">http://www.w3.org/2001/04/xmlenc#sha1</a>"/>
<ds:DigestValue>
MHg3MjYzRkUwRDNBMDk1RDU5QzhFMEM4OTVBOUM
1ODVFMzQzRTcxNDFD
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
</iodef:FileData>
<iodef:FileData observable-id="file-91011-003">
<iodef:File>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#md5">http://www.w3.org/2001/04/xmlenc#md5</a>"/>
<ds:DigestValue>
MHg0M0NEODUwRkNEQURFNDMzMEE1QkVBNkYxNkVFOTcxQw==
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
</iodef:FileData>
<iodef:WindowsRegistryKeysModified observable-id=
"regkey-91011-002">
<iodef:Key registryaction="add-value">
<iodef:KeyName>
HKLM\Software\Microsoft\Windows\
CurrentVersion\Run\KB00121600.exe
</iodef:KeyName>
<iodef:Value>
\?\?%AppData%\KB00121600.exe\?\?
</iodef:Value>
</iodef:Key>
</iodef:WindowsRegistryKeysModified>
</iodef:RecordData>
</iodef:Record>
</iodef:EventData>
<iodef:IndicatorData>
<iodef:Indicator>
<iodef:IndicatorID name="csirt.example.com" version="1">
ind-91011
</iodef:IndicatorID>
<iodef:Description>
evil c2 server, file hash, and registry key
</iodef:Description>
<iodef:IndicatorExpression operator="or">
<iodef:IndicatorExpression operator="or">
<span class="grey">Kampanakis & Suzuki Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<iodef:Observable>
<iodef:Address category="site-uri"
observable-id="addr-qrst">
<a href="http://foo.example.com:12345/evil/cc.php">http://foo.example.com:12345/evil/cc.php</a>
</iodef:Address>
</iodef:Observable>
<iodef:Observable>
<iodef:Address category="ipv4-addr"
observable-id="addr-stuv">
192.0.2.1
</iodef:Address>
</iodef:Observable>
<iodef:Observable>
<iodef:Address category="ipv4-addr"
observable-id="addr-tuvw">
198.51.100.1
</iodef:Address>
</iodef:Observable>
<iodef:Observable>
<iodef:Address category="ipv6-addr"
observable-id="addr-uvwx">
2001:db8:dead:beef::1
</iodef:Address>
</iodef:Observable>
<iodef:ObservableReference uid-ref="addr-c2-91011-001"/>
<iodef:ObservableReference uid-ref="addr-c2-91011-002"/>
<iodef:ObservableReference uid-ref="addr-c2-91011-003"/>
</iodef:IndicatorExpression>
<iodef:IndicatorExpression operator="and">
<iodef:Observable>
<iodef:FileData observable-id="file-91011-000">
<iodef:File>
<iodef:HashData scope="file-contents">
<iodef:Hash>
<ds:DigestMethod Algorithm=
"<a href="http://www.w3.org/2001/04/xmlenc#sha256">http://www.w3.org/2001/04/xmlenc#sha256</a>"/>
<ds:DigestValue>
141accec23e7e5157de60853cb1e01bc38042d08f
9086040815300b7fe75c184
</ds:DigestValue>
</iodef:Hash>
</iodef:HashData>
</iodef:File>
</iodef:FileData>
</iodef:Observable>
<iodef:Observable>
<iodef:WindowsRegistryKeysModified observable-id=
"regkey-91011-000">
<span class="grey">Kampanakis & Suzuki Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
<iodef:Key registryaction="add-key"
observable-id="regkey-vwxy">
<iodef:KeyName>
HKLM\SYSTEM\CurrentControlSet\
Services\.Net CLR
</iodef:KeyName>
</iodef:Key>
<iodef:Key registryaction="add-key"
observable-id="regkey-wxyz">
<iodef:KeyName>
HKLM\SYSTEM\CurrentControlSet\
Services\.Net CLR\Parameters
</iodef:KeyName>
<iodef:Value>
\"\"%AppData%\KB00121600.exe\"\"
</iodef:Value>
</iodef:Key>
<iodef:Key registryaction="add-value"
observable-id="regkey-xyza">
<iodef:KeyName>
HKLM\SYSTEM\CurrentControlSet\Services\
.Net CLR\Parameters\ServiceDll
</iodef:KeyName>
<iodef:Value>C:\bad.exe</iodef:Value>
</iodef:Key>
<iodef:Key registryaction="modify-value"
observable-id="regkey-zabc">
<iodef:KeyName>
HKLM\SYSTEM\CurrentControlSet\
Services\.Net CLR\Parameters\Bar
</iodef:KeyName>
<iodef:Value>Baz</iodef:Value>
</iodef:Key>
</iodef:WindowsRegistryKeysModified>
</iodef:Observable>
</iodef:IndicatorExpression>
<iodef:IndicatorExpression operator="or">
<iodef:IndicatorExpression operator="and">
<iodef:ObservableReference uid-ref="file-91011-001"/>
<iodef:ObservableReference uid-ref="regkey-91011-001"/>
</iodef:IndicatorExpression>
<iodef:IndicatorExpression operator="and">
<iodef:IndicatorExpression operator="or">
<iodef:ObservableReference uid-ref="file-91011-002"/>
<iodef:ObservableReference uid-ref="file-91011-003"/>
</iodef:IndicatorExpression>
<iodef:ObservableReference uid-ref="regkey-91011-002"/>
</iodef:IndicatorExpression>
<span class="grey">Kampanakis & Suzuki Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:IndicatorExpression>
</iodef:IndicatorExpression>
</iodef:Indicator>
</iodef:IndicatorData>
</iodef:Incident>
</IODEF-Document>
<span class="h3"><a class="selflink" id="appendix-B.5" href="#appendix-B.5">B.5</a>. IoT Malware</span>
The Internet of Things (IoT) malware test exchanged information that
described a bad IP address of IoT malware and its scanned ports.
This example information is extracted from alert messages of a
darknet monitoring system referred to in [<a href="./rfc8134" title=""Management Incident Lightweight Exchange (MILE) Implementation Report"">RFC8134</a>]. The IODEF
version used for the data representation was based on [<a href="./rfc7970" title=""The Incident Object Description Exchange Format Version 2"">RFC7970</a>].
<?xml version="1.0" encoding="UTF-8"?>
<IODEF-Document version="2.00"
xmlns="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:iodef="urn:ietf:params:xml:ns:iodef-2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<iodef:Incident purpose="reporting">
<iodef:IncidentID name="csirt.example.com">
189802
</iodef:IncidentID>
<iodef:ReportTime>2017-03-01T01:15:00+09:00</iodef:ReportTime>
<iodef:GenerationTime>2017-03-01T01:15:00+09:00
</iodef:GenerationTime>
<iodef:Description>IoT Malware and related indicators
</iodef:Description>
<iodef:Assessment occurrence="potential">
<iodef:SystemImpact severity="medium" type="takeover-system">
<iodef:Description>IoT Malware is scanning other hosts
</iodef:Description>
</iodef:SystemImpact>
</iodef:Assessment>
<iodef:Contact role="creator" type="organization">
<iodef:ContactName>example.com CSIRT
</iodef:ContactName>
<iodef:Email>
<iodef:EmailTo>contact@csirt.example.com
</iodef:EmailTo>
</iodef:Email>
</iodef:Contact>
<iodef:EventData>
<iodef:Discovery source="nidps">
<iodef:Description>
Detected by darknet monitoring
</iodef:Description>
<span class="grey">Kampanakis & Suzuki Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:Discovery>
<iodef:Flow>
<iodef:System category="source">
<iodef:Node>
<iodef:Address category="ipv4-addr">
192.0.2.210
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="camera"/>
<iodef:Service ip-protocol="6">
<iodef:Port>23</iodef:Port>
</iodef:Service>
<iodef:OperatingSystem>
<iodef:Description>
Example Surveillance Camera OS 2.1.1
</iodef:Description>
</iodef:OperatingSystem>
</iodef:System>
</iodef:Flow>
<iodef:EventData>
<iodef:Flow>
<iodef:System category="target">
<iodef:Node>
<iodef:Address category="ipv4-addr">
198.51.100.1
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="honeypot"/>
<iodef:Service ip-protocol="6">
<iodef:Port>23</iodef:Port>
</iodef:Service>
</iodef:System>
</iodef:Flow>
</iodef:EventData>
<iodef:EventData>
<iodef:Flow>
<iodef:System category="target">
<iodef:Node>
<iodef:Address category="ipv4-addr">
198.51.100.94
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="honeypot"/>
<iodef:Service ip-protocol="6">
<iodef:Port>23</iodef:Port>
</iodef:Service>
</iodef:System>
</iodef:Flow>
<span class="grey">Kampanakis & Suzuki Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
</iodef:EventData>
<iodef:EventData>
<iodef:Flow>
<iodef:System category="target">
<iodef:Node>
<iodef:Address category="ipv4-addr">
198.51.100.237
</iodef:Address>
</iodef:Node>
<iodef:NodeRole category="honeypot"/>
<iodef:Service ip-protocol="6">
<iodef:Port>2323</iodef:Port>
</iodef:Service>
</iodef:System>
</iodef:Flow>
</iodef:EventData>
</iodef:EventData>
</iodef:Incident>
</IODEF-Document>
<span class="grey">Kampanakis & Suzuki Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc8274">RFC 8274</a> IODEF Guidance November 2017</span>
Authors' Addresses
Panos Kampanakis
Cisco Systems
Email: pkampana@cisco.com
Mio Suzuki
NICT
4-2-1, Nukui-Kitamachi
Koganei, Tokyo 184-8795
Japan
Email: mio@nict.go.jp
Kampanakis & Suzuki Informational [Page 33]
</pre>
|