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
|
<pre>Internet Engineering Task Force (IETF) M. Bagnulo
Request for Comments: 7430 UC3M
Category: Informational C. Paasch
ISSN: 2070-1721 UCLouvain
F. Gont
SI6 Networks / UTN-FRH
O. Bonaventure
UCLouvain
C. Raiciu
UPB
July 2015
<span class="h1">Analysis of Residual Threats and Possible Fixes for</span>
<span class="h1">Multipath TCP (MPTCP)</span>
Abstract
This document analyzes the residual threats for Multipath TCP (MPTCP)
and explores possible solutions to address them.
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="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7430">http://www.rfc-editor.org/info/rfc7430</a>.
<span class="grey">Bagnulo, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Copyright Notice
Copyright (c) 2015 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="http://trustee.ietf.org/license-info">http://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>. ADD_ADDR Attack . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Possible Security Enhancements to Prevent This Attack . . <a href="#page-10">10</a>
<a href="#section-3">3</a>. DoS Attack on MP_JOIN . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.1">3.1</a>. Possible Security Enhancements to Prevent This Attack . . <a href="#page-12">12</a>
<a href="#section-4">4</a>. SYN Flooding Amplification . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.1">4.1</a>. Possible Security Enhancements to Prevent This Attack . . <a href="#page-13">13</a>
<a href="#section-5">5</a>. Eavesdropper in the Initial Handshake . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.1">5.1</a>. Possible Security Enhancements to Prevent This Attack . . <a href="#page-14">14</a>
<a href="#section-6">6</a>. SYN/JOIN Attack . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-6.1">6.1</a>. Possible Security Enhancements to Prevent This Attack . . <a href="#page-14">14</a>
<a href="#section-7">7</a>. Recommendations . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
7.1. MPTCP Security Improvements for a Standards Track
Specification . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-7.2">7.2</a>. Security Enhancements for MPTCP . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8">8</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9">9</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9.1">9.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9.2">9.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<span class="grey">Bagnulo, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document provides a complement to the threat analysis for
Multipath TCP (MPTCP) [<a href="./rfc6824" title=""TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6824</a>] documented in <a href="./rfc6181">RFC 6181</a> [<a href="./rfc6181" title=""Threat Analysis for TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6181</a>].
<a href="./rfc6181">RFC 6181</a> provided a threat analysis for the general solution space of
extending TCP to operate with multiple IP addresses per connection.
Its main goal was to leverage previous experience acquired during the
design of other multi-address protocols, notably Shim6 [<a href="./rfc5533" title=""Shim6: Level 3 Multihoming Shim Protocol for IPv6"">RFC5533</a>], the
Stream Control Transmission Protocol (SCTP) [<a href="./rfc4960" title=""Stream Control Transmission Protocol"">RFC4960</a>], and Mobile
IPv6 (MIP6) [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>] for designing MPTCP. Thus, <a href="./rfc6181">RFC 6181</a> was
produced before the actual MPTCP specification (<a href="./rfc6824">RFC 6824</a>) was
completed and documented a set of recommendations that were
considered during the production of that specification.
This document complements <a href="./rfc6181">RFC 6181</a> with a vulnerability analysis of
the mechanisms specified in <a href="./rfc6824">RFC 6824</a>. The motivation for this
analysis is to identify possible security issues with MPTCP as
currently specified and propose security enhancements to address
these identified security issues.
The goal of the security mechanisms defined in <a href="./rfc6824">RFC 6824</a> was to make
MPTCP no worse than currently available single-path TCP. We believe
that this goal is still valid, so we will perform our analysis on the
same grounds. This document describes all the threats identified
that are specific to MPTCP (as defined in <a href="./rfc6824">RFC 6824</a>) that are not
possible with single-path TCP. This means that threats that are
common to TCP and MPTCP are not covered in this document.
For each attack considered in this document, we identify the type of
attacker. We can classify the attackers based on their location as
follows:
o Off-path attacker. This is an attacker that does not need to be
located in any of the paths of the MPTCP session at any point in
time during the lifetime of the MPTCP session. This means that
the off-path attacker cannot eavesdrop any of the packets of the
MPTCP session.
o Partial-time on-path attacker. This is an attacker that needs to
be in at least one of the paths during part of the lifetime of the
MPTCP session (but not the entire lifetime). The attacker can be
in the forward and/or backward directions for the initial subflow
and/or other subflows. The specific needs of the attacker will be
made explicit in the attack description.
<span class="grey">Bagnulo, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
o On-path attacker. This attacker needs to be on at least one of
the paths during the whole duration of the MPTCP session. The
attacker can be in the forward and/or backward directions for the
initial subflow and/or other subflows. The specific needs of the
attacker will be made explicit in the attack description.
We can also classify the attackers based on their actions as follows:
o Eavesdropper. The attacker is able to capture some of the packets
of the MPTCP session to perform the attack, but it is not capable
of changing, discarding, or delaying any packet of the MPTCP
session. The attacker can be in the forward and/or backward
directions for the initial subflow and/or other subflows. The
specific needs of the attacker will be made explicit in the attack
description.
o Active attacker. The attacker is able to change, discard, or
delay some of the packets of the MPTCP session. The attacker can
be in the forward and/or backward directions for the initial
subflow and/or other subflows. The specific needs of the attacker
will be made explicit in the attack description.
In this document, we consider the following possible combinations of
attackers:
o an on-path eavesdropper
o an on-path active attacker
o an off-path active attacker
o a partial-time on-path eavesdropper
o a partial-time on-path active attacker
In the rest of the document, we describe different attacks that are
possible against the MPTCP protocol specified in <a href="./rfc6824">RFC 6824</a> and propose
possible security enhancements to address them.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. ADD_ADDR Attack</span>
Summary of the attack:
Type of attack: MPTCP session hijack enabling a man-in-the-middle
(MitM) attack
Type of attacker: off-path active attacker
<span class="grey">Bagnulo, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Description:
In this attack, the attacker uses the ADD_ADDR option defined in <a href="./rfc6824">RFC</a>
<a href="./rfc6824">6824</a> to hijack an ongoing MPTCP session and enable himself to perform
a man-in-the-middle attack on the MPTCP session.
Consider the following scenario. Host A with address IPA has one
MPTCP session with Host B with address IPB. The MPTCP subflow
between IPA and IPB is using port PA on Host A and port PB on Host B.
The tokens for the MPTCP session are TA and TB for Host A and Host B,
respectively. Host C is the attacker. It owns address IPC. The
attack is executed as follows:
1. Host C sends a forged packet with source address IPA, destination
address IPB, source port PA, and destination port PB. The packet
has the ACK flag set. The TCP sequence number for the segment is
i, and the ACK sequence number is j. We will assume all these
are valid; later, we discuss what the attacker needs to figure
them out. The packet contains the ADD_ADDR option. The ADD_ADDR
option announces IPC as an alternative address for the
connection. It also contains an 8-bit address identifier that
does not provide any strong security benefit.
2. Host B receives the ADD_ADDR message and replies by sending a TCP
SYN packet.
Note: The MPTCP specification [<a href="./rfc6824" title=""TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6824</a>] states that the host
receiving the ADD_ADDR option may initiate a new subflow. If
the host is configured so that it does not initiate a new
subflow, the attack will not succeed. For example, on the
current Linux implementation, the server does not create
subflows. Only the client does so.
The source address for the packet is IPB; the destination address
for the packet is IPC; the source port is PB'; and the
destination port is PA' (it is not required that PA=PA' nor that
PB=PB'). The sequence number for this packet is the new initial
sequence number for this subflow. The ACK sequence number is not
relevant as the ACK flag is not set. The packet carries an
MP_JOIN option and the token TA. It also carries a random nonce
generated by Host B called RB.
3. Host C receives the SYN+MP_JOIN packet from Host B and alters it
in the following way. It changes the source address to IPC and
the destination address to IPA. It sends the modified packet to
Host A, impersonating Host B.
<span class="grey">Bagnulo, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
4. Host A receives the SYN+MP_JOIN message and replies with a
SYN/ACK+MP_JOIN message. The packet has source address IPA and
destination address IPC, as well as all the other needed
parameters. In particular, Host A computes a valid Hashed
Message Authentication Code (HMAC) and places it in the MP_JOIN
option.
5. Host C receives the SYN/ACK+MP_JOIN message and changes the
source address to IPC and the destination address to IPB. It
sends the modified packet to IPB, impersonating Host A.
6. Host B receives the SYN/ACK+MP_JOIN message. Host B verifies the
HMAC of the MP_JOIN option and confirms its validity. It replies
with an ACK+MP_JOIN packet. The packet has source address IPB
and destination address IPC, as well as all the other needed
parameters. The returned MP_JOIN option contains a valid HMAC
computed by Host B.
7. Host C receives the ACK+MP_JOIN message from B and alters it in
the following way. It changes the source address to IPC and the
destination address to IPA. It sends the modified packet to Host
A, impersonating Host B.
8. Host A receives the ACK+MP_JOIN message and creates the new
subflow. At this point, the attacker has managed to place itself
as a MitM for one subflow for the existing MPTCP session. It
should be noted that the subflow between addresses IPA and IPB
that does not flow through the attacker still exists, so the
attacker has not completely intercepted all the packets in the
communication (yet). If the attacker wishes to completely
intercept the MPTCP session, it can do the following additional
step.
9. Host C sends two TCP RST messages. One TCP RST packet is sent to
Host B, with source address IPA, destination address IPB, and
source and destination ports PA and PB, respectively. The other
TCP RST message is sent to Host A, with source address IPB,
destination address IPA, and source and destination ports PB and
PA, respectively. Both RST messages must contain a valid
sequence number. Note that figuring the sequence numbers to be
used here for subflow A is the same difficulty as being able to
send the initial ADD_ADDR option with valid sequence number and
ACK value. If there are more subflows, then the attacker needs
to find the sequence number and ACK for each subflow. At this
point, the attacker has managed to fully hijack the MPTCP
session.
<span class="grey">Bagnulo, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Information required by the attacker to perform the described attack:
In order to perform this attack the attacker needs to guess or know
the following pieces of information. The attacker needs this
information for one of the subflows belonging to the MPTCP session.
o the four-tuple {Client-side IP Address, Client-side Port, Server-
side Address, Server-side Port} that identifies the target TCP
connection
o a valid sequence number for the subflow
o a valid ACK sequence number for the subflow
o a valid address identifier for IPC
TCP connections are uniquely identified by the four-tuple {Source
Address, Source Port, Destination Address, Destination Port}. Thus,
in order to attack a TCP connection, an attacker needs to know or be
able to guess each of the values in that four-tuple. Assuming the
two peers of the target TCP connection are known, the Source Address
and the Destination Address can be assumed to be known.
Note: In order to be able to successfully perform this attack, the
attacker needs to be able to send packets with a forged source
address. This means that the attacker cannot be located in a
network where techniques like ingress filtering [<a href="./rfc2827" title=""Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing"">RFC2827</a>] or
source address validation [<a href="./rfc7039" title=""Source Address Validation Improvement (SAVI) Framework"">RFC7039</a>] are deployed. However,
ingress filtering is not as widely implemented as one would expect
and hence cannot be relied upon as a mitigation for this kind of
attack.
Assuming the attacker knows the application protocol for which the
TCP connection is being employed, the server-side port can also be
assumed to be known. Finally, the client-side port will generally
not be known and will need to be guessed by the attacker. The
chances of an attacker guessing the client-side port will depend on
the ephemeral port range employed by the client and whether or not
the client implements port randomization [<a href="./rfc6056" title=""Recommendations for Transport- Protocol Port Randomization"">RFC6056</a>].
Assuming TCP sequence number randomization is in place (see e.g.,
[<a href="./rfc6528" title=""Defending against Sequence Number Attacks"">RFC6528</a>]), an attacker would have to blindly guess a valid TCP
sequence number. That is,
RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND or RCV.NXT =<
SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
<span class="grey">Bagnulo, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
As a result, the chances of an attacker succeeding will depend on the
TCP receive window size at the target TCP peer.
Note: Automatic TCP buffer tuning mechanisms have become common
for popular TCP implementations; hence, very large TCP window
sizes of values up to 2 MB could end up being employed by such TCP
implementations.
According to [<a href="./rfc793" title=""Transmission Control Protocol"">RFC793</a>], the acknowledgement number is considered valid
as long as it does not acknowledge the receipt of data that has not
yet been sent. That is, the following expression must be true:
SEG.ACK <= SND.NXT
However, for implementations that support [<a href="./rfc5961" title=""Improving TCP's Robustness to Blind In-Window Attacks"">RFC5961</a>], the following
(stricter) validation check is enforced:
SND.UNA - MAX.SND.WND <= SEG.ACK <= SND.NXT
Finally, in order for the address identifier to be valid, the only
requirement is that it needs to be different from the ones already
being used by Host A in that MPTCP session, so a random identifier is
likely to work.
Given that a large number of factors affect the chances of an
attacker successfully performing the aforementioned off-path attacks,
we provide two general expressions for the expected number of packets
the attacker needs to send to succeed in the attack: one for MPTCP
implementations that support [<a href="./rfc5961" title=""Improving TCP's Robustness to Blind In-Window Attacks"">RFC5961</a>] and another for MPTCP
implementations that do not.
Implementations that do not support <a href="./rfc5961">RFC 5961</a>:
Packets = (2^32/(RCV_WND)) * 2 * EPH_PORT_SIZE/2 * 1/MSS
Where the new parameters are:
Packets:
Maximum number of packets required to successfully perform an off-
path (blind) attack.
RCV_WND:
TCP receive window size (RCV.WND) at the target node.
<span class="grey">Bagnulo, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
EPH_PORT_SIZE:
Number of ports comprising the ephemeral port range at the
"client" system.
MSS:
Maximum Segment Size, assuming the attacker will send full
segments to maximize the chances of getting a hit.
Notes:
The value "2^32" represents the size of the TCP sequence number
space.
The value "2" accounts for two different ACK numbers (separated by
2^31) that should be employed to make sure the ACK number is
valid.
The following table contains some sample results for the number of
required packets, based on different values of RCV_WND and
EPH_PORT_SIZE for an MSS of 1500 bytes.
+-------------+---------+---------+--------+---------+
| Ports \ Win | 16 KB | 128 KB | 256 KB | 2048 KB |
+-------------+---------+---------+--------+---------+
| 4000 | 699050 | 87381 | 43690 | 5461 |
+-------------+---------+---------+--------+---------+
| 10000 | 1747626 | 218453 | 109226 | 13653 |
+-------------+---------+---------+--------+---------+
| 50000 | 8738133 | 1092266 | 546133 | 68266 |
+-------------+---------+---------+--------+---------+
Table 1: Maximum Number of Packets for Successful Attack
Implementations that do support <a href="./rfc5961">RFC 5961</a>:
Packets = (2^32/(RCV_WND)) * (2^32/(2 * SND_MAX_WND)) *
EPH_PORT_SIZE/2 * 1/MSS
Where:
Packets:
Maximum number of packets required to successfully perform an off-
path (blind) attack.
RCV_WND:
TCP receive window size (RCV.WND) at the target MPTCP endpoint.
<span class="grey">Bagnulo, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
SND_MAX_WND:
Maximum TCP send window size ever employed by the target MPTCP
endpoint (MAX.SND.WND).
EPH_PORT_SIZE:
Number of ports comprising the ephemeral port range at the
"client" system.
Notes:
The value "2^32" represents the size of the TCP sequence number
space.
The parameter "MAX.SND.WND" is specified in [<a href="./rfc5961" title=""Improving TCP's Robustness to Blind In-Window Attacks"">RFC5961</a>].
The value "2 * SND_MAX_WND" results from the expression "SND.NXT -
SND.UNA - MAX.SND.WND", assuming that, for connections that
perform bulk data transfers, "SND.NXT - SND.UNA == MAX.SND.WND".
If an attacker targets a TCP endpoint that is not actively
transferring data, "2 * SND_MAX_WND" would become "SND_MAX_WND"
(and hence a successful attack would typically require more
packets).
The following table contains some sample results for the number of
required packets, based on different values of RCV_WND, SND_MAX_WND,
and EPH_PORT_SIZE. For these implementations, only a limited number
of sample results are provided (as an indication of how [<a href="./rfc5961" title=""Improving TCP's Robustness to Blind In-Window Attacks"">RFC5961</a>]
increases the difficulty of performing these attacks).
+-------------+-------------+-----------+-----------+---------+
| Ports \ Win | 16 KB | 128 KB | 256 KB | 2048 KB |
+-------------+-------------+-----------+-----------+---------+
| 4000 | 45812984490 | 715827882 | 178956970 | 2796202 |
+-------------+-------------+-----------+-----------+---------+
Table 2: Maximum Number of Packets for Successful Attack
Note:
In the aforementioned table, all values are computed with RCV_WND
equal to SND_MAX_WND.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Possible Security Enhancements to Prevent This Attack</span>
1. To include the token of the connection in the ADD_ADDR option.
This would make it harder for the attacker to launch the attack,
since the attacker needs to either eavesdrop the token (so this
can no longer be a blind attack) or to guess it, but a random
32-bit number is not easy to guess. However, this would imply
that any eavesdropper that is able to see the token would be able
<span class="grey">Bagnulo, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
to launch this attack. This solution then increases the
vulnerability window against eavesdroppers from the initial 3-way
handshake for the MPTCP session to any exchange of the ADD_ADDR
messages.
2. To include the HMAC of the address contained in the ADD_ADDR
option. The key used for the HMAC is the concatenation of the
key of the receiver and the key of the sender (in the same way
they are used for generating the HMAC of the MP_JOIN message).
This makes it much more secure, since it requires the attacker to
have both keys (either by eavesdropping it in the first exchange
or by guessing it). Because this solution relies on the key used
in the MPTCP session, the protection of this solution would
increase if new key generation methods are defined for MPTCP
(e.g., using Secure Socket Layer (SSL) keys as has been
proposed).
3. To include the destination address of the SYN packet in the HMAC
of the MP_JOIN message. As the attacker requires changing the
destination address to perform the described attack, protecting
it would prevent the attack. It wouldn't allow hosts behind NATs
to be reached by an address in the ADD_ADDR option, even with
static NAT bindings (like a web server at home).
Of the options described above, option 2 is recommended as it
achieves a higher security level while preserving the required
functionality (i.e., NAT compatibility).
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. DoS Attack on MP_JOIN</span>
Summary of the attack:
Type of attack: MPTCP denial-of-service attack, preventing the
hosts from creating new subflows
Type of attacker: off-path active attacker
Description:
As currently specified, the initial SYN+MP_JOIN message of the 3-way
handshake for additional subflows creates state in the host receiving
the message. This is because the SYN+MP_JOIN contains the 32-bit
token that allows the receiver to identify the MPTCP session and the
32-bit random nonce used in the HMAC calculation. As this
information is not re-sent in the third ACK of the 3-way handshake, a
host must create state upon reception of a SYN+MP_JOIN.
<span class="grey">Bagnulo, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Assume that an MPTCP session exists between Host A and Host B, with
tokens TA and TB. An attacker, sending a SYN+MP_JOIN to Host B, with
the valid token TB, will trigger the creation of state on Host B.
The number of these half-open connections a host can store per MPTCP
session is limited by a certain number and is implementation-
dependent. The attacker can simply exhaust this limit by sending
multiple SYN+MP_JOINs with different 5-tuples. The (possibly forged)
source address of the attack packets will typically correspond to an
address that is not in use, or else, the SYN/ACK sent by Host B would
elicit a RST from the impersonated node, thus removing the
corresponding state at Host B. Further discussion of traditional SYN
flooding attacks and common mitigations can be found in [<a href="./rfc4987" title=""TCP SYN Flooding Attacks and Common Mitigations"">RFC4987</a>].
This effectively prevents Host A from sending any more SYN+MP_JOINs
to Host B, as the number of acceptable half-open connections per
MPTCP session on Host B has been exhausted.
The attacker needs to know the token TB in order to perform the
described attack. This can be achieved if it is a partial-time on-
path eavesdropper observing the 3-way handshake of the establishment
of an additional subflow between Host A and Host B. If the attacker
is never on-path, it has to guess the 32-bit token.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Possible Security Enhancements to Prevent This Attack</span>
The third packet of the 3-way handshake could be extended to also
contain the 32-bit token and the random nonce that has been sent in
the SYN+MP_JOIN. Further, Host B will have to generate its own
random nonce in a reproducible fashion (e.g., a hash of the 5-tuple +
initial sequence number + local secret). This will allow Host B to
reply to a SYN+MP_JOIN without having to create state. Upon the
reception of the third ACK, Host B can then verify the correctness of
the HMAC and create the state.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. SYN Flooding Amplification</span>
Summary of the attack:
Type of attack: The attacker uses SYN+MP_JOIN messages to amplify
the SYN flooding attack.
Type of attacker: off-path active attacker
<span class="grey">Bagnulo, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Description:
SYN flooding attacks [<a href="./rfc4987" title=""TCP SYN Flooding Attacks and Common Mitigations"">RFC4987</a>] use SYN messages to exhaust the
server's resources and prevent new TCP connections. A common
mitigation is the use of SYN cookies [<a href="./rfc4987" title=""TCP SYN Flooding Attacks and Common Mitigations"">RFC4987</a>] that allow stateless
processing of the initial SYN message.
With MPTCP, the initial SYN can be processed in a stateless fashion
using the aforementioned SYN cookies. However, as described in the
previous section, as currently specified, SYN+MP_JOIN messages are
not processed in a stateless manner. This opens a new attack vector.
The attacker can now open an MPTCP session by sending a regular SYN
and creating the associated state but then sending as many
SYN+MP_JOIN messages as supported by the server with different
combinations of source address and source port, consuming the
server's resources without having to create state in the attacker.
This is an amplification attack, where the cost on the attacker side
is only the cost of the state associated with the initial SYN while
the cost on the server side is the state for the initial SYN plus all
the state associated with all the following SYN+MP_JOINs.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Possible Security Enhancements to Prevent This Attack</span>
1. The solution described for the previous DoS attack on MP_JOIN
would also prevent this attack.
2. Limiting the number of half-open subflows to a low number (e.g.,
three subflows) would also limit the impact of this attack.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Eavesdropper in the Initial Handshake</span>
Summary of the attack:
Type of attack: An eavesdropper present in the initial handshake
where the keys are exchanged can hijack the MPTCP session at any
time in the future.
Type of attacker: partial-time on-path eavesdropper
Description:
In this case, the attacker is present along the path when the initial
3-way handshake takes place and therefore is able to learn the keys
used in the MPTCP session. This allows the attacker to move away
from the MPTCP session path and still be able to hijack the MPTCP
session in the future. This vulnerability was readily identified
when designing the MPTCP security solution [<a href="./rfc6181" title=""Threat Analysis for TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6181</a>], and the threat
was considered acceptable.
<span class="grey">Bagnulo, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Possible Security Enhancements to Prevent This Attack</span>
There are many techniques that can be used to prevent this attack,
and each of them represents different trade-offs. At this point, we
limit ourselves to enumerate them and provide useful pointers.
1. Use of hash chains. The use of hash chains for MPTCP has been
explored in [<a href="#ref-HASH-CHAINS">HASH-CHAINS</a>].
2. Use of SSL keys for MPTCP security as described in [<a href="#ref-MPTCP-SSL">MPTCP-SSL</a>].
3. Use of Cryptographically Generated Addresses (CGAs) for MPTCP
security. CGAs [<a href="./rfc3972" title=""Cryptographically Generated Addresses (CGA)"">RFC3972</a>] have been used in the past to secure
multi-addressed protocols like Shim6 [<a href="./rfc5533" title=""Shim6: Level 3 Multihoming Shim Protocol for IPv6"">RFC5533</a>].
4. Use of tcpcrypt [<a href="#ref-TCPCRYPT" title=""Cryptographic protection of TCP Streams (tcpcrypt)"">TCPCRYPT</a>].
5. Use of DNSSEC. DNSSEC has been proposed to secure the Mobile IP
protocol [<a href="#ref-DNSSEC" title=""ROAM-DNSSEC: Route Optimization for Aeronautical Mobility using DNSSEC"">DNSSEC</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. SYN/JOIN Attack</span>
Summary of the attack:
Type of attack: An attacker that can intercept the SYN/JOIN
message can alter the source address being added.
Type of attacker: partial-time on-path eavesdropper
Description:
The attacker is present along the path when the SYN/JOIN exchange
takes place. This allows the attacker to add any new address it
wants to by simply substituting the source address of the SYN/JOIN
packet for one it chooses. This vulnerability was readily identified
when designing the MPTCP security solution [<a href="./rfc6181" title=""Threat Analysis for TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6181</a>], and the threat
was considered acceptable.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Possible Security Enhancements to Prevent This Attack</span>
It should be noted that this vulnerability is fundamental due to the
NAT support requirement. In other words, MPTCP must work through
NATs in order to be deployable in the current Internet. NAT behavior
is unfortunately indistinguishable from this attack. It is
impossible to secure the source address, since doing so would prevent
MPTCP from working through NATs. This basically implies that the
solution cannot rely on securing the address. A more promising
approach would be to look into securing the payload exchanged and
<span class="grey">Bagnulo, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
thus limiting the impact that the attack would have in the
communication (e.g., tcpcrypt [<a href="#ref-TCPCRYPT" title=""Cryptographic protection of TCP Streams (tcpcrypt)"">TCPCRYPT</a>] or similar).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Recommendations</span>
The current MPTCP specification [<a href="./rfc6824" title=""TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6824</a>] is Experimental. There is
an ongoing effort to move it to Standards Track. We believe that the
work on MPTCP security should follow two threads:
o The work on improving MPTCP security so that the MPTCP
specification [<a href="./rfc6824" title=""TCP Extensions for Multipath Operation with Multiple Addresses"">RFC6824</a>] can become a Standards Track document.
o The work on analyzing possible additional security enhancements to
provide a more secure version of MPTCP.
We expand on these in the following subsections.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. MPTCP Security Improvements for a Standards Track Specification</span>
We believe that in order for MPTCP to progress to Standards Track,
the ADD_ADDR attack must be addressed. We believe that the solution
that should be adopted in order to deal with this attack is to
include an HMAC to the ADD_ADDR message (with the address being added
used as input to the HMAC as well as the key). This would make the
ADD_ADDR message as secure as the JOIN message. In addition, this
implies that if we implement a more secure way to create the key used
in the MPTCP connection, then the security of both the MP_JOIN and
the ADD_ADDR messages is automatically improved (since both use the
same key in the HMAC).
We believe that this is enough for MPTCP to progress as a Standards
Track document because the security level is similar to single-path
TCP per our previous analysis. Moreover, the security level achieved
with these changes is exactly the same as other Standards Track
documents. In particular, this would be the same security level as
SCTP with dynamic addresses as defined in [<a href="./rfc5061" title=""Stream Control Transmission Protocol (SCTP) Dynamic Address Reconfiguration"">RFC5061</a>]. The Security
Considerations section of <a href="./rfc5061">RFC 5061</a> (which is a Standards Track
document) reads:
The addition and or deletion of an IP address to an existing
association does provide an additional mechanism by which existing
associations can be hijacked. Therefore, this document requires
the use of the authentication mechanism defined in [<a href="./rfc4895" title=""Authenticated Chunks for the Stream Control Transmission Protocol (SCTP)"">RFC4895</a>] to
limit the ability of an attacker to hijack an association.
Hijacking an association by using the addition and deletion of an
IP address is only possible for an attacker who is able to
intercept the initial two packets of the association setup when
<span class="grey">Bagnulo, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
the SCTP-AUTH extension is used without pre-shared keys. If such
a threat is considered a possibility, then the [<a href="./rfc4895" title=""Authenticated Chunks for the Stream Control Transmission Protocol (SCTP)"">RFC4895</a>] extension
MUST be used with a preconfigured shared endpoint pair key to
mitigate this threat.
This is the same security level that would be achieved by MPTCP with
the addition of the ADD_ADDR security measure recommended in this
document.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Security Enhancements for MPTCP</span>
We also believe that is worthwhile to explore alternatives to secure
MPTCP. As we identified earlier, the problem of securing JOIN
messages is fundamentally incompatible with NAT support, so it is
likely that a solution to this problem involves the protection of the
data itself. Exploring the integration of MPTCP and approaches like
tcpcrypt [<a href="#ref-TCPCRYPT" title=""Cryptographic protection of TCP Streams (tcpcrypt)"">TCPCRYPT</a>] and exploring integration with SSL seem
promising.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
This whole document is about security considerations for MPTCP.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC793">RFC793</a>] Postel, J., "Transmission Control Protocol", STD 7,
<a href="./rfc793">RFC 793</a>, DOI 10.17487/RFC0793, September 1981,
<<a href="http://www.rfc-editor.org/info/rfc793">http://www.rfc-editor.org/info/rfc793</a>>.
[<a id="ref-RFC3972">RFC3972</a>] Aura, T., "Cryptographically Generated Addresses (CGA)",
<a href="./rfc3972">RFC 3972</a>, DOI 10.17487/RFC3972, March 2005,
<<a href="http://www.rfc-editor.org/info/rfc3972">http://www.rfc-editor.org/info/rfc3972</a>>.
[<a id="ref-RFC4895">RFC4895</a>] Tuexen, M., Stewart, R., Lei, P., and E. Rescorla,
"Authenticated Chunks for the Stream Control Transmission
Protocol (SCTP)", <a href="./rfc4895">RFC 4895</a>, DOI 10.17487/RFC4895, August
2007, <<a href="http://www.rfc-editor.org/info/rfc4895">http://www.rfc-editor.org/info/rfc4895</a>>.
[<a id="ref-RFC5061">RFC5061</a>] Stewart, R., Xie, Q., Tuexen, M., Maruyama, S., and M.
Kozuka, "Stream Control Transmission Protocol (SCTP)
Dynamic Address Reconfiguration", <a href="./rfc5061">RFC 5061</a>,
DOI 10.17487/RFC5061, September 2007,
<<a href="http://www.rfc-editor.org/info/rfc5061">http://www.rfc-editor.org/info/rfc5061</a>>.
<span class="grey">Bagnulo, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
[<a id="ref-RFC5961">RFC5961</a>] Ramaiah, A., Stewart, R., and M. Dalal, "Improving TCP's
Robustness to Blind In-Window Attacks", <a href="./rfc5961">RFC 5961</a>,
DOI 10.17487/RFC5961, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5961">http://www.rfc-editor.org/info/rfc5961</a>>.
[<a id="ref-RFC6056">RFC6056</a>] Larsen, M. and F. Gont, "Recommendations for Transport-
Protocol Port Randomization", <a href="https://www.rfc-editor.org/bcp/bcp156">BCP 156</a>, <a href="./rfc6056">RFC 6056</a>,
DOI 10.17487/RFC6056, January 2011,
<<a href="http://www.rfc-editor.org/info/rfc6056">http://www.rfc-editor.org/info/rfc6056</a>>.
[<a id="ref-RFC6528">RFC6528</a>] Gont, F. and S. Bellovin, "Defending against Sequence
Number Attacks", <a href="./rfc6528">RFC 6528</a>, DOI 10.17487/RFC6528, February
2012, <<a href="http://www.rfc-editor.org/info/rfc6528">http://www.rfc-editor.org/info/rfc6528</a>>.
[<a id="ref-RFC6824">RFC6824</a>] Ford, A., Raiciu, C., Handley, M., and O. Bonaventure,
"TCP Extensions for Multipath Operation with Multiple
Addresses", <a href="./rfc6824">RFC 6824</a>, DOI 10.17487/RFC6824, January 2013,
<<a href="http://www.rfc-editor.org/info/rfc6824">http://www.rfc-editor.org/info/rfc6824</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-DNSSEC">DNSSEC</a>] Kukec, A., Bagnulo, M., Ayaz, S., Bauer, C., and W. Eddy,
"ROAM-DNSSEC: Route Optimization for Aeronautical Mobility
using DNSSEC", 4th ACM International Workshop on Mobility
in the Evolving Internet Architecture (MobiArch), 2009.
[<a id="ref-HASH-CHAINS">HASH-CHAINS</a>]
Diez, J., Bagnulo, M., Valera, F., and I. Vidal, "Security
for multipath TCP: a constructive approach", International
Journal of Internet Protocol Technology, Vol. 6, No. 3,
2011.
[<a id="ref-MPTCP-SSL">MPTCP-SSL</a>]
Paasch, C. and O. Bonaventure, "Securing the MultiPath TCP
handshake with external keys", Work in Progress,
<a href="./draft-paasch-mptcp-ssl-00">draft-paasch-mptcp-ssl-00</a>, October 2012.
[<a id="ref-RFC2827">RFC2827</a>] Ferguson, P. and D. Senie, "Network Ingress Filtering:
Defeating Denial of Service Attacks which employ IP Source
Address Spoofing", <a href="https://www.rfc-editor.org/bcp/bcp38">BCP 38</a>, <a href="./rfc2827">RFC 2827</a>, DOI 10.17487/RFC2827,
May 2000, <<a href="http://www.rfc-editor.org/info/rfc2827">http://www.rfc-editor.org/info/rfc2827</a>>.
[<a id="ref-RFC4960">RFC4960</a>] Stewart, R., Ed., "Stream Control Transmission Protocol",
<a href="./rfc4960">RFC 4960</a>, DOI 10.17487/RFC4960, September 2007,
<<a href="http://www.rfc-editor.org/info/rfc4960">http://www.rfc-editor.org/info/rfc4960</a>>.
<span class="grey">Bagnulo, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
[<a id="ref-RFC4987">RFC4987</a>] Eddy, W., "TCP SYN Flooding Attacks and Common
Mitigations", <a href="./rfc4987">RFC 4987</a>, DOI 10.17487/RFC4987, August 2007,
<<a href="http://www.rfc-editor.org/info/rfc4987">http://www.rfc-editor.org/info/rfc4987</a>>.
[<a id="ref-RFC5533">RFC5533</a>] Nordmark, E. and M. Bagnulo, "Shim6: Level 3 Multihoming
Shim Protocol for IPv6", <a href="./rfc5533">RFC 5533</a>, DOI 10.17487/RFC5533,
June 2009, <<a href="http://www.rfc-editor.org/info/rfc5533">http://www.rfc-editor.org/info/rfc5533</a>>.
[<a id="ref-RFC6181">RFC6181</a>] Bagnulo, M., "Threat Analysis for TCP Extensions for
Multipath Operation with Multiple Addresses", <a href="./rfc6181">RFC 6181</a>,
DOI 10.17487/RFC6181, March 2011,
<<a href="http://www.rfc-editor.org/info/rfc6181">http://www.rfc-editor.org/info/rfc6181</a>>.
[<a id="ref-RFC6275">RFC6275</a>] Perkins, C., Ed., Johnson, D., and J. Arkko, "Mobility
Support in IPv6", <a href="./rfc6275">RFC 6275</a>, DOI 10.17487/RFC6275, July
2011, <<a href="http://www.rfc-editor.org/info/rfc6275">http://www.rfc-editor.org/info/rfc6275</a>>.
[<a id="ref-RFC7039">RFC7039</a>] Wu, J., Bi, J., Bagnulo, M., Baker, F., and C. Vogt, Ed.,
"Source Address Validation Improvement (SAVI) Framework",
<a href="./rfc7039">RFC 7039</a>, DOI 10.17487/RFC7039, October 2013,
<<a href="http://www.rfc-editor.org/info/rfc7039">http://www.rfc-editor.org/info/rfc7039</a>>.
[<a id="ref-TCPCRYPT">TCPCRYPT</a>] Bittau, A., Boneh, D., Hamburg, M., Handley, M., Mazieres,
D., and Q. Slack, "Cryptographic protection of TCP Streams
(tcpcrypt)", Work in Progress, <a href="./draft-bittau-tcp-crypt-04">draft-bittau-tcp-crypt-04</a>,
February 2014.
Acknowledgements
We would like to thank Mark Handley for his comments on the attacks
and countermeasures discussed in this document. We would also like
to thank to Alissa Cooper, Phil Eardley, Yoshifumi Nishida, Barry
Leiba, Stephen Farrell, and Stefan Winter for their comments and
reviews.
Marcelo Bagnulo, Christoph Paasch, Oliver Bonaventure, and Costin
Raiciu are partially funded by the EU Trilogy 2 project.
<span class="grey">Bagnulo, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7430">RFC 7430</a> MPTCP Residual Threats July 2015</span>
Authors' Addresses
Marcelo Bagnulo
Universidad Carlos III de Madrid
Av. Universidad 30
Leganes, Madrid 28911
Spain
Phone: 34 91 6249500
Email: marcelo@it.uc3m.es
URI: <a href="http://www.it.uc3m.es">http://www.it.uc3m.es</a>
Christoph Paasch
UCLouvain
Email: christoph.paasch@gmail.com
Fernando Gont
SI6 Networks / UTN-FRH
Evaristo Carriego 2644
Haedo, Provincia de Buenos Aires 1706
Argentina
Phone: +54 11 4650 8472
Email: fgont@si6networks.com
URI: <a href="http://www.si6networks.com">http://www.si6networks.com</a>
Olivier Bonaventure
UCLouvain
Place Sainte Barbe, 2
Louvain-la-Neuve, 1348
Belgium
Email: olivier.bonaventure@uclouvain.be
Costin Raiciu
Universitatea Politehnica Bucuresti
Splaiul Independentei 313a
Bucuresti
Romania
Email: costin.raiciu@cs.pub.ro
Bagnulo, et al. Informational [Page 19]
</pre>
|