// https://syzkaller.appspot.com/bug?id=db4e568fef441244bcd2baf5c185754a9ad24b66 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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; } struct fs_image_segment { void* data; uintptr_t size; uintptr_t offset; }; #define IMAGE_MAX_SEGMENTS 4096 #define IMAGE_MAX_SIZE (129 << 20) static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, struct fs_image_segment* segs) { if (nsegs > IMAGE_MAX_SEGMENTS) nsegs = IMAGE_MAX_SEGMENTS; for (size_t i = 0; i < nsegs; i++) { if (segs[i].size > IMAGE_MAX_SIZE) segs[i].size = IMAGE_MAX_SIZE; segs[i].offset %= IMAGE_MAX_SIZE; if (segs[i].offset > IMAGE_MAX_SIZE - segs[i].size) segs[i].offset = IMAGE_MAX_SIZE - segs[i].size; if (size < segs[i].offset + segs[i].offset) size = segs[i].offset + segs[i].offset; } if (size > IMAGE_MAX_SIZE) size = IMAGE_MAX_SIZE; return size; } static int setup_loop_device(long unsigned size, long unsigned nsegs, struct fs_image_segment* segs, const char* loopname, int* memfd_p, int* loopfd_p) { int err = 0, loopfd = -1; size = fs_image_segment_check(size, nsegs, segs); int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (ftruncate(memfd, size)) { err = errno; goto error_close_memfd; } for (size_t i = 0; i < nsegs; i++) { if (pwrite(memfd, segs[i].data, segs[i].size, segs[i].offset) < 0) { } } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } *memfd_p = memfd; *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile unsigned long size, volatile unsigned long nsegs, volatile long segments, volatile long flags, volatile long optsarg) { struct fs_image_segment* segs = (struct fs_image_segment*)segments; int res = -1, err = 0, loopfd = -1, memfd = -1, need_loop_device = !!segs; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(size, nsegs, segs, loopname, &memfd, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); close(memfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000100, "./file0\000", 8); *(uint64_t*)0x20000200 = 0x20010000; memcpy( (void*)0x20010000, "\x4a\x46\x53\x31\x01\x00\x00\x00\x60\x76\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x0c\x00\x03\x00\x00\x02\x00\x00\x09\x00\x00\x00\x00\x20\x00\x00" "\x00\x09\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x18\x00" "\x00\x00\x02\x00\x00\x00\x16\x00\x00\x00\x2c\x07\x00\x00\x01\x00\x00\x00" "\x00\x01\x00\x00\x00\x0f\x00\x00\x34\x00\x00\x00\xcc\x0e\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x32\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x29\x02\xe6\x07\xa2\xe0\x48\xcf" "\xb9\x48\x68\xe6\xc5\x0b\x16\xb9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x36\x8c\x61" "\xfc\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 192); *(uint64_t*)0x20000208 = 0xc0; *(uint64_t*)0x20000210 = 0x8000; *(uint64_t*)0x20000218 = 0; *(uint64_t*)0x20000220 = 0; *(uint64_t*)0x20000228 = 0x9000; *(uint64_t*)0x20000230 = 0; *(uint64_t*)0x20000238 = 0; *(uint64_t*)0x20000240 = 0x9800; *(uint64_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0; *(uint64_t*)0x20000258 = 0xa800; *(uint64_t*)0x20000260 = 0; *(uint64_t*)0x20000268 = 0; *(uint64_t*)0x20000270 = 0xaa00; *(uint64_t*)0x20000278 = 0; *(uint64_t*)0x20000280 = 0; *(uint64_t*)0x20000288 = 0xac00; *(uint64_t*)0x20000290 = 0; *(uint64_t*)0x20000298 = 0; *(uint64_t*)0x200002a0 = 0xb020; *(uint64_t*)0x200002a8 = 0x20010f00; memcpy( (void*)0x20010f00, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x0b\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200002b0 = 0xa0; *(uint64_t*)0x200002b8 = 0xb200; *(uint64_t*)0x200002c0 = 0x20011000; memcpy((void*)0x20011000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200002c8 = 0x40; *(uint64_t*)0x200002d0 = 0xb2e0; *(uint64_t*)0x200002d8 = 0x20011100; memcpy((void*)0x20011100, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04" "\x00\x00\x00\x0b\x00\x00\x00\x00\x60\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200002e0 = 0x80; *(uint64_t*)0x200002e8 = 0xb400; *(uint64_t*)0x200002f0 = 0x20011200; memcpy((void*)0x20011200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200002f8 = 0x40; *(uint64_t*)0x20000300 = 0xb4e0; *(uint64_t*)0x20000308 = 0; *(uint64_t*)0x20000310 = 0; *(uint64_t*)0x20000318 = 0xb600; *(uint64_t*)0x20000320 = 0; *(uint64_t*)0x20000328 = 0; *(uint64_t*)0x20000330 = 0xb6e0; *(uint64_t*)0x20000338 = 0; *(uint64_t*)0x20000340 = 0; *(uint64_t*)0x20000348 = 0xb800; *(uint64_t*)0x20000350 = 0; *(uint64_t*)0x20000358 = 0; *(uint64_t*)0x20000360 = 0xb8e0; *(uint64_t*)0x20000368 = 0x20011700; memcpy( (void*)0x20011700, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x0b\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20000370 = 0xa0; *(uint64_t*)0x20000378 = 0xd000; *(uint64_t*)0x20000380 = 0x20011800; memcpy((void*)0x20011800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000388 = 0x40; *(uint64_t*)0x20000390 = 0xd0e0; *(uint64_t*)0x20000398 = 0; *(uint64_t*)0x200003a0 = 0; *(uint64_t*)0x200003a8 = 0xf000; *(uint64_t*)0x200003b0 = 0; *(uint64_t*)0x200003b8 = 0; *(uint64_t*)0x200003c0 = 0x10000; *(uint64_t*)0x200003c8 = 0; *(uint64_t*)0x200003d0 = 0; *(uint64_t*)0x200003d8 = 0x10420; *(uint64_t*)0x200003e0 = 0; *(uint64_t*)0x200003e8 = 0; *(uint64_t*)0x200003f0 = 0x13000; *(uint64_t*)0x200003f8 = 0; *(uint64_t*)0x20000400 = 0; *(uint64_t*)0x20000408 = 0x14000; *(uint64_t*)0x20000410 = 0; *(uint64_t*)0x20000418 = 0; *(uint64_t*)0x20000420 = 0x14800; *(uint64_t*)0x20000428 = 0; *(uint64_t*)0x20000430 = 0; *(uint64_t*)0x20000438 = 0x149c0; *(uint64_t*)0x20000440 = 0; *(uint64_t*)0x20000448 = 0; *(uint64_t*)0x20000450 = 0x14dc0; *(uint64_t*)0x20000458 = 0; *(uint64_t*)0x20000460 = 0; *(uint64_t*)0x20000468 = 0x16000; *(uint64_t*)0x20000470 = 0; *(uint64_t*)0x20000478 = 0; *(uint64_t*)0x20000480 = 0x16800; *(uint64_t*)0x20000488 = 0; *(uint64_t*)0x20000490 = 0; *(uint64_t*)0x20000498 = 0x17800; *(uint64_t*)0x200004a0 = 0; *(uint64_t*)0x200004a8 = 0; *(uint64_t*)0x200004b0 = 0x17a00; *(uint64_t*)0x200004b8 = 0; *(uint64_t*)0x200004c0 = 0; *(uint64_t*)0x200004c8 = 0x17c00; *(uint64_t*)0x200004d0 = 0; *(uint64_t*)0x200004d8 = 0; *(uint64_t*)0x200004e0 = 0x18020; *(uint64_t*)0x200004e8 = 0x20013900; memcpy( (void*)0x20013900, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x18\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200004f0 = 0xa0; *(uint64_t*)0x200004f8 = 0x18200; *(uint64_t*)0x20000500 = 0x20013a00; memcpy((void*)0x20013a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000508 = 0x40; *(uint64_t*)0x20000510 = 0x182e0; *(uint64_t*)0x20000518 = 0; *(uint64_t*)0x20000520 = 0; *(uint64_t*)0x20000528 = 0x18400; *(uint64_t*)0x20000530 = 0; *(uint64_t*)0x20000538 = 0; *(uint64_t*)0x20000540 = 0x184e0; *(uint64_t*)0x20000548 = 0; *(uint64_t*)0x20000550 = 0; *(uint64_t*)0x20000558 = 0x18600; *(uint64_t*)0x20000560 = 0; *(uint64_t*)0x20000568 = 0; *(uint64_t*)0x20000570 = 0x186e0; *(uint64_t*)0x20000578 = 0; *(uint64_t*)0x20000580 = 0; *(uint64_t*)0x20000588 = 0x18800; *(uint64_t*)0x20000590 = 0; *(uint64_t*)0x20000598 = 0; *(uint64_t*)0x200005a0 = 0x188e0; *(uint64_t*)0x200005a8 = 0; *(uint64_t*)0x200005b0 = 0; *(uint64_t*)0x200005b8 = 0x1a000; *(uint64_t*)0x200005c0 = 0; *(uint64_t*)0x200005c8 = 0; *(uint64_t*)0x200005d0 = 0x1a0e0; *(uint64_t*)0x200005d8 = 0; *(uint64_t*)0x200005e0 = 0; *(uint64_t*)0x200005e8 = 0x1c000; *(uint64_t*)0x200005f0 = 0; *(uint64_t*)0x200005f8 = 0; *(uint64_t*)0x20000600 = 0x1c0e0; *(uint64_t*)0x20000608 = 0; *(uint64_t*)0x20000610 = 0; *(uint64_t*)0x20000618 = 0x1c200; *(uint64_t*)0x20000620 = 0; *(uint64_t*)0x20000628 = 0; *(uint64_t*)0x20000630 = 0x1c2e0; *(uint64_t*)0x20000638 = 0; *(uint64_t*)0x20000640 = 0; *(uint64_t*)0x20000648 = 0x1c400; *(uint64_t*)0x20000650 = 0; *(uint64_t*)0x20000658 = 0; *(uint64_t*)0x20000660 = 0x1c4e0; *(uint64_t*)0x20000668 = 0; *(uint64_t*)0x20000670 = 0; *(uint64_t*)0x20000678 = 0x1c6e0; *(uint64_t*)0x20000680 = 0; *(uint64_t*)0x20000688 = 0; *(uint64_t*)0x20000690 = 0x1c800; *(uint64_t*)0x20000698 = 0; *(uint64_t*)0x200006a0 = 0; *(uint64_t*)0x200006a8 = 0x1c8e0; *(uint64_t*)0x200006b0 = 0; *(uint64_t*)0x200006b8 = 0; *(uint64_t*)0x200006c0 = 0x1c980; *(uint64_t*)0x200006c8 = 0; *(uint64_t*)0x200006d0 = 0; *(uint64_t*)0x200006d8 = 0x1ca00; *(uint64_t*)0x200006e0 = 0; *(uint64_t*)0x200006e8 = 0; *(uint64_t*)0x200006f0 = 0x1cae0; *(uint64_t*)0x200006f8 = 0; *(uint64_t*)0x20000700 = 0; *(uint64_t*)0x20000708 = 0x1cc00; *(uint64_t*)0x20000710 = 0; *(uint64_t*)0x20000718 = 0; *(uint64_t*)0x20000720 = 0x1cce0; *(uint64_t*)0x20000728 = 0; *(uint64_t*)0x20000730 = 0; *(uint64_t*)0x20000738 = 0x20000; *(uint64_t*)0x20000740 = 0; *(uint64_t*)0x20000748 = 0; *(uint64_t*)0x20000750 = 0x20800; *(uint64_t*)0x20000758 = 0; *(uint64_t*)0x20000760 = 0; *(uint64_t*)0x20000768 = 0x21800; *(uint64_t*)0x20000770 = 0; *(uint64_t*)0x20000778 = 0; *(uint64_t*)0x20000780 = 0x21a00; *(uint64_t*)0x20000788 = 0; *(uint64_t*)0x20000790 = 0; *(uint64_t*)0x20000798 = 0x21c00; *(uint64_t*)0x200007a0 = 0; *(uint64_t*)0x200007a8 = 0; *(uint64_t*)0x200007b0 = 0x22000; *(uint64_t*)0x200007b8 = 0; *(uint64_t*)0x200007c0 = 0; *(uint64_t*)0x200007c8 = 0x24000; *(uint64_t*)0x200007d0 = 0; *(uint64_t*)0x200007d8 = 0; *(uint64_t*)0x200007e0 = 0x240e0; *(uint64_t*)0x200007e8 = 0x20016300; memcpy((void*)0x20016300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x28\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200007f0 = 0x40; *(uint64_t*)0x200007f8 = 0x242e0; *(uint64_t*)0x20000800 = 0; *(uint64_t*)0x20000808 = 0; *(uint64_t*)0x20000810 = 0x24400; *(uint64_t*)0x20000818 = 0; *(uint64_t*)0x20000820 = 0; *(uint64_t*)0x20000828 = 0x244e0; *(uint64_t*)0x20000830 = 0; *(uint64_t*)0x20000838 = 0; *(uint64_t*)0x20000840 = 0x24600; *(uint64_t*)0x20000848 = 0x20016700; *(uint64_t*)0x20000850 = 0; *(uint64_t*)0x20000858 = 0x24800; *(uint64_t*)0x20000860 = 0; *(uint64_t*)0x20000868 = 0; *(uint64_t*)0x20000870 = 0x24a00; *(uint64_t*)0x20000878 = 0; *(uint64_t*)0x20000880 = 0; *(uint64_t*)0x20000888 = 0x24c00; *(uint64_t*)0x20000890 = 0; *(uint64_t*)0x20000898 = 0; *(uint64_t*)0x200008a0 = 0x24e00; *(uint64_t*)0x200008a8 = 0; *(uint64_t*)0x200008b0 = 0; *(uint64_t*)0x200008b8 = 0x25000; *(uint64_t*)0x200008c0 = 0; *(uint64_t*)0x200008c8 = 0; *(uint64_t*)0x200008d0 = 0x25200; *(uint64_t*)0x200008d8 = 0; *(uint64_t*)0x200008e0 = 0; *(uint64_t*)0x200008e8 = 0x25400; *(uint64_t*)0x200008f0 = 0; *(uint64_t*)0x200008f8 = 0; *(uint64_t*)0x20000900 = 0x25600; *(uint64_t*)0x20000908 = 0; *(uint64_t*)0x20000910 = 0; *(uint64_t*)0x20000918 = 0x25800; *(uint64_t*)0x20000920 = 0; *(uint64_t*)0x20000928 = 0; *(uint64_t*)0x20000930 = 0x25a00; *(uint64_t*)0x20000938 = 0x20017100; *(uint64_t*)0x20000940 = 0; *(uint64_t*)0x20000948 = 0x25c00; *(uint64_t*)0x20000950 = 0; *(uint64_t*)0x20000958 = 0; *(uint64_t*)0x20000960 = 0x25e00; *(uint64_t*)0x20000968 = 0; *(uint64_t*)0x20000970 = 0; *(uint64_t*)0x20000978 = 0x26000; *(uint64_t*)0x20000980 = 0; *(uint64_t*)0x20000988 = 0; *(uint64_t*)0x20000990 = 0x26200; *(uint64_t*)0x20000998 = 0; *(uint64_t*)0x200009a0 = 0; *(uint64_t*)0x200009a8 = 0x26400; *(uint64_t*)0x200009b0 = 0; *(uint64_t*)0x200009b8 = 0; *(uint64_t*)0x200009c0 = 0x26600; *(uint64_t*)0x200009c8 = 0; *(uint64_t*)0x200009d0 = 0; *(uint64_t*)0x200009d8 = 0x26800; *(uint64_t*)0x200009e0 = 0; *(uint64_t*)0x200009e8 = 0; *(uint64_t*)0x200009f0 = 0x26a00; *(uint64_t*)0x200009f8 = 0; *(uint64_t*)0x20000a00 = 0; *(uint64_t*)0x20000a08 = 0x26c00; *(uint64_t*)0x20000a10 = 0; *(uint64_t*)0x20000a18 = 0; *(uint64_t*)0x20000a20 = 0x26e00; *(uint64_t*)0x20000a28 = 0; *(uint64_t*)0x20000a30 = 0; *(uint64_t*)0x20000a38 = 0x27000; *(uint64_t*)0x20000a40 = 0; *(uint64_t*)0x20000a48 = 0; *(uint64_t*)0x20000a50 = 0x27200; *(uint64_t*)0x20000a58 = 0; *(uint64_t*)0x20000a60 = 0; *(uint64_t*)0x20000a68 = 0x27400; *(uint64_t*)0x20000a70 = 0; *(uint64_t*)0x20000a78 = 0; *(uint64_t*)0x20000a80 = 0x27600; *(uint64_t*)0x20000a88 = 0; *(uint64_t*)0x20000a90 = 0; *(uint64_t*)0x20000a98 = 0x27800; *(uint64_t*)0x20000aa0 = 0; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0x27a00; *(uint64_t*)0x20000ab8 = 0; *(uint64_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac8 = 0x27c00; *(uint64_t*)0x20000ad0 = 0; *(uint64_t*)0x20000ad8 = 0; *(uint64_t*)0x20000ae0 = 0x27e00; *(uint64_t*)0x20000ae8 = 0; *(uint64_t*)0x20000af0 = 0; *(uint64_t*)0x20000af8 = 0x28000; *(uint64_t*)0x20000b00 = 0; *(uint64_t*)0x20000b08 = 0; *(uint64_t*)0x20000b10 = 0x2b000; *(uint64_t*)0x20000b18 = 0; *(uint64_t*)0x20000b20 = 0; *(uint64_t*)0x20000b28 = 0xf01000; *(uint64_t*)0x20000b30 = 0; *(uint64_t*)0x20000b38 = 0; *(uint64_t*)0x20000b40 = 0xf02000; *(uint64_t*)0x20000b48 = 0x20019100; memcpy( (void*)0x20019100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x0a\x00\x02\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x22\x00\x00\x00" "\x03\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00\x26\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\xa1\x06\x00\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4" "\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x01\x00\x10\xc4\x64\x5f\x10\x00" "\x00\x00\x20\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x20\x10\xc4\x64\x5f" "\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\xa1\x13" "\xd7\x2a\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x03\x00\x00\x00\x54\x26\x00\x00\x00\x08\x0c\x02\x00\x00\x00\x00\x01\x00" "\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x24\x00\x00\x00" "\x03\x00\x00\x00\x84\x28\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x24\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00" "\x02\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x08\x24\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x04\x00\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x1c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x02" "\x06\x03\x02\x00\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x04\x00\x00\x00\xff\x05\x66\x00\x69\x00\x6c\x00\x65\x00\x31\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x00" "\x04\x00\x00\x00\xf0\x28\x00\x00\x00\x08\x48\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x02\x00\x00\x00\x14\x00\x05\x00\x01\x00\x00\x00\x1c\x00\x00\x00" "\x10\xc4\x64\x5f\x10\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00" "\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81" "\x06\x00\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\xa1\x13\xd7\x2a" "\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x10\x00\x01\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x02\x00\x00\x00" "\x01\x00\x00\x00\x04\x00\x00\x00\x1c\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x41\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4" "\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f\xa1\x13\xd7\x2a\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x08\x00\x01\x00\x04\x00\x00\x00\x5c\x29" "\x00\x00\x00\x08\x08\x01\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00" "\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x04\x00\x00\x00\x88\x2a" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00" "\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x03\x00\x0a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x22\x00\x00\x00\x02\x00\x01\x00\x05\x00\x00\x00" "\x00\x00\x00\x00\x00\x08\x38\x00\x00\x00\x00\x00\x10\x00\x00\x00\x04\x00" "\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x1a\x00\x00\x00" "\x00\x0b\x06\x00\x75\x73\x65\x72\x2e\x78\x61\x74\x74\x72\x31\x00\x78\x61" "\x74\x74\x72\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 1024); *(uint64_t*)0x20000b50 = 0x400; *(uint64_t*)0x20000b58 = 0xf02740; *(uint64_t*)0x20000b60 = 0; *(uint64_t*)0x20000b68 = 0; *(uint64_t*)0x20000b70 = 0xf02b80; *(uint64_t*)0x20000b78 = 0; *(uint64_t*)0x20000b80 = 0; *(uint64_t*)0x20000b88 = 0xf02cc0; *(uint64_t*)0x20000b90 = 0; *(uint64_t*)0x20000b98 = 0; *(uint64_t*)0x20000ba0 = 0xf03fe0; *(uint64_t*)0x20000ba8 = 0; *(uint64_t*)0x20000bb0 = 0; *(uint64_t*)0x20000bb8 = 0xf04fe0; *(uint64_t*)0x20000bc0 = 0; *(uint64_t*)0x20000bc8 = 0; *(uint64_t*)0x20000bd0 = 0xf05fe0; *(uint64_t*)0x20000bd8 = 0; *(uint64_t*)0x20000be0 = 0; *(uint64_t*)0x20000be8 = 0xf06fe0; *(uint64_t*)0x20000bf0 = 0; *(uint64_t*)0x20000bf8 = 0; *(uint64_t*)0x20000c00 = 0xf07120; *(uint64_t*)0x20000c08 = 0x2001aa00; *(uint64_t*)0x20000c10 = 0; *(uint64_t*)0x20000c18 = 0xf07580; *(uint64_t*)0x20000c20 = 0; *(uint64_t*)0x20000c28 = 0; *(uint64_t*)0x20000c30 = 0xf076e0; *(uint64_t*)0x20000c38 = 0; *(uint64_t*)0x20000c40 = 0; *(uint64_t*)0x20000c48 = 0xf07720; *(uint64_t*)0x20000c50 = 0x2001b200; memcpy((void*)0x2001b200, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000c58 = 0x80; *(uint64_t*)0x20000c60 = 0xf07d80; *(uint64_t*)0x20000c68 = 0; *(uint64_t*)0x20000c70 = 0; *(uint64_t*)0x20000c78 = 0xf07e40; *(uint64_t*)0x20000c80 = 0; *(uint64_t*)0x20000c88 = 0; *(uint64_t*)0x20000c90 = 0xf08fe0; *(uint64_t*)0x20000c98 = 0x2001b600; *(uint64_t*)0x20000ca0 = 0; *(uint64_t*)0x20000ca8 = 0xf09fe0; *(uint64_t*)0x20000cb0 = 0; *(uint64_t*)0x20000cb8 = 0; *(uint64_t*)0x20000cc0 = 0xf0afe0; *(uint64_t*)0x20000cc8 = 0; *(uint64_t*)0x20000cd0 = 0; *(uint64_t*)0x20000cd8 = 0xf0b120; *(uint64_t*)0x20000ce0 = 0; *(uint64_t*)0x20000ce8 = 0; *(uint64_t*)0x20000cf0 = 0xf0b580; *(uint64_t*)0x20000cf8 = 0; *(uint64_t*)0x20000d00 = 0; *(uint64_t*)0x20000d08 = 0xf0b6e0; *(uint64_t*)0x20000d10 = 0x2001bf00; *(uint64_t*)0x20000d18 = 0; *(uint64_t*)0x20000d20 = 0xf0b720; *(uint64_t*)0x20000d28 = 0; *(uint64_t*)0x20000d30 = 0; *(uint64_t*)0x20000d38 = 0xf0bd80; *(uint64_t*)0x20000d40 = 0; *(uint64_t*)0x20000d48 = 0; *(uint64_t*)0x20000d50 = 0xf0be40; *(uint64_t*)0x20000d58 = 0x2001c800; *(uint64_t*)0x20000d60 = 0; *(uint64_t*)0x20000d68 = 0xf0cfe0; *(uint64_t*)0x20000d70 = 0; *(uint64_t*)0x20000d78 = 0; *(uint64_t*)0x20000d80 = 0xf0dfe0; *(uint64_t*)0x20000d88 = 0x2001ca00; memcpy((void*)0x2001ca00, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\v\000\000\000\000\000\b\000\f\000\000" "\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20000d90 = 0x40; *(uint64_t*)0x20000d98 = 0xf0efe0; *(uint64_t*)0x20000da0 = 0; *(uint64_t*)0x20000da8 = 0; *(uint64_t*)0x20000db0 = 0xf0f120; *(uint64_t*)0x20000db8 = 0; *(uint64_t*)0x20000dc0 = 0; *(uint64_t*)0x20000dc8 = 0xf0f580; *(uint64_t*)0x20000dd0 = 0; *(uint64_t*)0x20000dd8 = 0; *(uint64_t*)0x20000de0 = 0xf0f6e0; *(uint64_t*)0x20000de8 = 0; *(uint64_t*)0x20000df0 = 0; *(uint64_t*)0x20000df8 = 0xf0f720; *(uint64_t*)0x20000e00 = 0; *(uint64_t*)0x20000e08 = 0; *(uint64_t*)0x20000e10 = 0xf0fd80; *(uint64_t*)0x20000e18 = 0; *(uint64_t*)0x20000e20 = 0; *(uint64_t*)0x20000e28 = 0xf0fe40; *(uint64_t*)0x20000e30 = 0; *(uint64_t*)0x20000e38 = 0; *(uint64_t*)0x20000e40 = 0xf10fe0; *(uint64_t*)0x20000e48 = 0; *(uint64_t*)0x20000e50 = 0; *(uint64_t*)0x20000e58 = 0xf11fe0; *(uint64_t*)0x20000e60 = 0; *(uint64_t*)0x20000e68 = 0; *(uint64_t*)0x20000e70 = 0xf12fe0; *(uint64_t*)0x20000e78 = 0; *(uint64_t*)0x20000e80 = 0; *(uint64_t*)0x20000e88 = 0xf13120; *(uint64_t*)0x20000e90 = 0; *(uint64_t*)0x20000e98 = 0; *(uint64_t*)0x20000ea0 = 0xf13580; *(uint64_t*)0x20000ea8 = 0; *(uint64_t*)0x20000eb0 = 0; *(uint64_t*)0x20000eb8 = 0xf136e0; *(uint64_t*)0x20000ec0 = 0; *(uint64_t*)0x20000ec8 = 0; *(uint64_t*)0x20000ed0 = 0xf13720; *(uint64_t*)0x20000ed8 = 0; *(uint64_t*)0x20000ee0 = 0; *(uint64_t*)0x20000ee8 = 0xf13d80; *(uint64_t*)0x20000ef0 = 0x2001ec00; *(uint64_t*)0x20000ef8 = 0; *(uint64_t*)0x20000f00 = 0xf13e40; *(uint64_t*)0x20000f08 = 0; *(uint64_t*)0x20000f10 = 0; *(uint64_t*)0x20000f18 = 0xf14fe0; *(uint64_t*)0x20000f20 = 0; *(uint64_t*)0x20000f28 = 0; *(uint64_t*)0x20000f30 = 0xf15fe0; *(uint64_t*)0x20000f38 = 0; *(uint64_t*)0x20000f40 = 0; *(uint64_t*)0x20000f48 = 0xf16fe0; *(uint64_t*)0x20000f50 = 0; *(uint64_t*)0x20000f58 = 0; *(uint64_t*)0x20000f60 = 0xf17120; *(uint64_t*)0x20000f68 = 0x2001f600; *(uint64_t*)0x20000f70 = 0; *(uint64_t*)0x20000f78 = 0xf17580; *(uint64_t*)0x20000f80 = 0; *(uint64_t*)0x20000f88 = 0; *(uint64_t*)0x20000f90 = 0xf176e0; *(uint64_t*)0x20000f98 = 0x2001f800; *(uint64_t*)0x20000fa0 = 0; *(uint64_t*)0x20000fa8 = 0xf17720; *(uint64_t*)0x20000fb0 = 0; *(uint64_t*)0x20000fb8 = 0; *(uint64_t*)0x20000fc0 = 0xf17d80; *(uint64_t*)0x20000fc8 = 0x2001ff00; *(uint64_t*)0x20000fd0 = 0; *(uint64_t*)0x20000fd8 = 0xf17e40; *(uint64_t*)0x20000fe0 = 0; *(uint64_t*)0x20000fe8 = 0; *(uint64_t*)0x20000ff0 = 0xf18fe0; *(uint64_t*)0x20000ff8 = 0; *(uint64_t*)0x20001000 = 0; *(uint64_t*)0x20001008 = 0xf19fe0; *(uint64_t*)0x20001010 = 0x20020300; *(uint64_t*)0x20001018 = 0; *(uint64_t*)0x20001020 = 0xf1afe0; *(uint64_t*)0x20001028 = 0; *(uint64_t*)0x20001030 = 0; *(uint64_t*)0x20001038 = 0xf1b120; *(uint64_t*)0x20001040 = 0; *(uint64_t*)0x20001048 = 0; *(uint64_t*)0x20001050 = 0xf1b580; *(uint64_t*)0x20001058 = 0; *(uint64_t*)0x20001060 = 0; *(uint64_t*)0x20001068 = 0xf1b6e0; *(uint64_t*)0x20001070 = 0; *(uint64_t*)0x20001078 = 0; *(uint64_t*)0x20001080 = 0xf1b720; *(uint64_t*)0x20001088 = 0x20021100; *(uint64_t*)0x20001090 = 0; *(uint64_t*)0x20001098 = 0xf1bd80; *(uint64_t*)0x200010a0 = 0; *(uint64_t*)0x200010a8 = 0; *(uint64_t*)0x200010b0 = 0xf1be40; *(uint64_t*)0x200010b8 = 0; *(uint64_t*)0x200010c0 = 0; *(uint64_t*)0x200010c8 = 0xf1cfe0; *(uint64_t*)0x200010d0 = 0; *(uint64_t*)0x200010d8 = 0; *(uint64_t*)0x200010e0 = 0xf1dfe0; *(uint64_t*)0x200010e8 = 0; *(uint64_t*)0x200010f0 = 0; *(uint64_t*)0x200010f8 = 0xf1efe0; *(uint64_t*)0x20001100 = 0; *(uint64_t*)0x20001108 = 0; *(uint64_t*)0x20001110 = 0xf1f120; *(uint64_t*)0x20001118 = 0; *(uint64_t*)0x20001120 = 0; *(uint64_t*)0x20001128 = 0xf1f580; *(uint64_t*)0x20001130 = 0; *(uint64_t*)0x20001138 = 0; *(uint64_t*)0x20001140 = 0xf1f6e0; *(uint64_t*)0x20001148 = 0; *(uint64_t*)0x20001150 = 0; *(uint64_t*)0x20001158 = 0xf1f720; *(uint64_t*)0x20001160 = 0; *(uint64_t*)0x20001168 = 0; *(uint64_t*)0x20001170 = 0xf1fd80; *(uint64_t*)0x20001178 = 0; *(uint64_t*)0x20001180 = 0; *(uint64_t*)0x20001188 = 0xf1fe40; *(uint64_t*)0x20001190 = 0x20022700; *(uint64_t*)0x20001198 = 0; *(uint64_t*)0x200011a0 = 0xf20fe0; *(uint64_t*)0x200011a8 = 0; *(uint64_t*)0x200011b0 = 0; *(uint64_t*)0x200011b8 = 0xf21fe0; *(uint64_t*)0x200011c0 = 0; *(uint64_t*)0x200011c8 = 0; *(uint64_t*)0x200011d0 = 0xf22fe0; *(uint64_t*)0x200011d8 = 0; *(uint64_t*)0x200011e0 = 0; *(uint64_t*)0x200011e8 = 0xf23120; *(uint64_t*)0x200011f0 = 0; *(uint64_t*)0x200011f8 = 0; *(uint64_t*)0x20001200 = 0xf23580; *(uint64_t*)0x20001208 = 0; *(uint64_t*)0x20001210 = 0; *(uint64_t*)0x20001218 = 0xf236e0; *(uint64_t*)0x20001220 = 0; *(uint64_t*)0x20001228 = 0; *(uint64_t*)0x20001230 = 0xf23720; *(uint64_t*)0x20001238 = 0; *(uint64_t*)0x20001240 = 0; *(uint64_t*)0x20001248 = 0xf23d80; *(uint64_t*)0x20001250 = 0x20023800; *(uint64_t*)0x20001258 = 0; *(uint64_t*)0x20001260 = 0xf23e40; *(uint64_t*)0x20001268 = 0; *(uint64_t*)0x20001270 = 0; *(uint64_t*)0x20001278 = 0xf24fe0; *(uint64_t*)0x20001280 = 0; *(uint64_t*)0x20001288 = 0; *(uint64_t*)0x20001290 = 0xf25fe0; *(uint64_t*)0x20001298 = 0; *(uint64_t*)0x200012a0 = 0; *(uint64_t*)0x200012a8 = 0xf26fe0; *(uint64_t*)0x200012b0 = 0x20023d00; *(uint64_t*)0x200012b8 = 0; *(uint64_t*)0x200012c0 = 0xf27120; *(uint64_t*)0x200012c8 = 0; *(uint64_t*)0x200012d0 = 0; *(uint64_t*)0x200012d8 = 0xf27580; *(uint64_t*)0x200012e0 = 0; *(uint64_t*)0x200012e8 = 0; *(uint64_t*)0x200012f0 = 0xf276e0; *(uint64_t*)0x200012f8 = 0; *(uint64_t*)0x20001300 = 0; *(uint64_t*)0x20001308 = 0xf27720; *(uint64_t*)0x20001310 = 0; *(uint64_t*)0x20001318 = 0; *(uint64_t*)0x20001320 = 0xf27d80; *(uint64_t*)0x20001328 = 0; *(uint64_t*)0x20001330 = 0; *(uint64_t*)0x20001338 = 0xf27e40; *(uint64_t*)0x20001340 = 0; *(uint64_t*)0x20001348 = 0; *(uint64_t*)0x20001350 = 0xf28fe0; *(uint64_t*)0x20001358 = 0; *(uint64_t*)0x20001360 = 0; *(uint64_t*)0x20001368 = 0xf29fe0; *(uint64_t*)0x20001370 = 0; *(uint64_t*)0x20001378 = 0; *(uint64_t*)0x20001380 = 0xf2afe0; *(uint64_t*)0x20001388 = 0; *(uint64_t*)0x20001390 = 0; *(uint64_t*)0x20001398 = 0xf2b120; *(uint64_t*)0x200013a0 = 0; *(uint64_t*)0x200013a8 = 0; *(uint64_t*)0x200013b0 = 0xf2b580; *(uint64_t*)0x200013b8 = 0; *(uint64_t*)0x200013c0 = 0; *(uint64_t*)0x200013c8 = 0xf2b6e0; *(uint64_t*)0x200013d0 = 0; *(uint64_t*)0x200013d8 = 0; *(uint64_t*)0x200013e0 = 0xf2b720; *(uint64_t*)0x200013e8 = 0; *(uint64_t*)0x200013f0 = 0; *(uint64_t*)0x200013f8 = 0xf2bd80; *(uint64_t*)0x20001400 = 0; *(uint64_t*)0x20001408 = 0; *(uint64_t*)0x20001410 = 0xf2be40; *(uint64_t*)0x20001418 = 0; *(uint64_t*)0x20001420 = 0; *(uint64_t*)0x20001428 = 0xf2cfe0; *(uint64_t*)0x20001430 = 0; *(uint64_t*)0x20001438 = 0; *(uint64_t*)0x20001440 = 0xf2dfe0; *(uint64_t*)0x20001448 = 0; *(uint64_t*)0x20001450 = 0; *(uint64_t*)0x20001458 = 0xf2efe0; *(uint64_t*)0x20001460 = 0; *(uint64_t*)0x20001468 = 0; *(uint64_t*)0x20001470 = 0xf2f120; *(uint64_t*)0x20001478 = 0; *(uint64_t*)0x20001480 = 0; *(uint64_t*)0x20001488 = 0xf2f580; *(uint64_t*)0x20001490 = 0; *(uint64_t*)0x20001498 = 0; *(uint64_t*)0x200014a0 = 0xf2f6e0; *(uint64_t*)0x200014a8 = 0; *(uint64_t*)0x200014b0 = 0; *(uint64_t*)0x200014b8 = 0xf2f720; *(uint64_t*)0x200014c0 = 0; *(uint64_t*)0x200014c8 = 0; *(uint64_t*)0x200014d0 = 0xf2fd80; *(uint64_t*)0x200014d8 = 0; *(uint64_t*)0x200014e0 = 0; *(uint64_t*)0x200014e8 = 0xf2fe40; *(uint64_t*)0x200014f0 = 0; *(uint64_t*)0x200014f8 = 0; *(uint64_t*)0x20001500 = 0xf30fe0; *(uint64_t*)0x20001508 = 0; *(uint64_t*)0x20001510 = 0; *(uint64_t*)0x20001518 = 0xf31fe0; *(uint64_t*)0x20001520 = 0; *(uint64_t*)0x20001528 = 0; *(uint64_t*)0x20001530 = 0xf32fe0; *(uint64_t*)0x20001538 = 0; *(uint64_t*)0x20001540 = 0; *(uint64_t*)0x20001548 = 0xf33120; *(uint64_t*)0x20001550 = 0; *(uint64_t*)0x20001558 = 0; *(uint64_t*)0x20001560 = 0xf33580; *(uint64_t*)0x20001568 = 0; *(uint64_t*)0x20001570 = 0; *(uint64_t*)0x20001578 = 0xf336e0; *(uint64_t*)0x20001580 = 0; *(uint64_t*)0x20001588 = 0; *(uint64_t*)0x20001590 = 0xf33720; *(uint64_t*)0x20001598 = 0; *(uint64_t*)0x200015a0 = 0; *(uint64_t*)0x200015a8 = 0xf33d80; *(uint64_t*)0x200015b0 = 0x20028400; memcpy( (void*)0x20028400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc4\xe4\x2c\xe2\xeb\x55\x00\x00\x2f\x00\x00\x00" "\x00\x00\x00\x00\xb5\x9a\xe6\x64\xc6\x7f\x00\x00\x30\x8d\xe6\x64\xc6\x7f" "\x00\x00\x00\x81\x56\xd2\x1d\x1c\x6c\xd2\x00\x00\x00\x00\x00\x00\x00\x00" "\xa0\x74\xfa\x64\xc6\x7f\x00\x00\xb0\xe2\x2c\xe2\xeb\x55\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xe0\xac\x80\xe0\xeb\x55\x00\x00\x01\xfe\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00" "\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xda\x8b\x64\x5f" "\x00\x00\x00\x00\xf5\xab\x27\x0d\x00\x00\x00\x00\x69\x17\xe6\x5e\x00\x00" "\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x69\x17\xe6\x5e\x00\x00\x00\x00" "\x7d\x45\xd8\x13\x00\x00\x00\x00\x73\xaf\x80\xe0\xeb\x55\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfe\x00\x00" "\x00\x00\x00\x00\x7b\x0e\x82\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x81\x00\x00\x5c\xf9\x01\x00\x53\x5f\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00" "\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x00\x43\xae\x1e\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x08\x00\x31\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 480); *(uint64_t*)0x200015b8 = 0x1e0; *(uint64_t*)0x200015c0 = 0xf33e40; *(uint64_t*)0x200015c8 = 0x20028600; *(uint64_t*)0x200015d0 = 0; *(uint64_t*)0x200015d8 = 0xf34fe0; *(uint64_t*)0x200015e0 = 0x20028700; *(uint64_t*)0x200015e8 = 0; *(uint64_t*)0x200015f0 = 0xf35fe0; *(uint64_t*)0x200015f8 = 0; *(uint64_t*)0x20001600 = 0; *(uint64_t*)0x20001608 = 0xf36fe0; *(uint64_t*)0x20001610 = 0; *(uint64_t*)0x20001618 = 0; *(uint64_t*)0x20001620 = 0xf37120; *(uint64_t*)0x20001628 = 0; *(uint64_t*)0x20001630 = 0; *(uint64_t*)0x20001638 = 0xf37580; *(uint64_t*)0x20001640 = 0; *(uint64_t*)0x20001648 = 0; *(uint64_t*)0x20001650 = 0xf376e0; *(uint64_t*)0x20001658 = 0; *(uint64_t*)0x20001660 = 0; *(uint64_t*)0x20001668 = 0xf37720; *(uint64_t*)0x20001670 = 0; *(uint64_t*)0x20001678 = 0; *(uint64_t*)0x20001680 = 0xf37d80; *(uint64_t*)0x20001688 = 0; *(uint64_t*)0x20001690 = 0; *(uint64_t*)0x20001698 = 0xf37e40; *(uint64_t*)0x200016a0 = 0; *(uint64_t*)0x200016a8 = 0; *(uint64_t*)0x200016b0 = 0xf38fe0; *(uint64_t*)0x200016b8 = 0; *(uint64_t*)0x200016c0 = 0; *(uint64_t*)0x200016c8 = 0xf39fe0; *(uint64_t*)0x200016d0 = 0x20029b00; memcpy((void*)0x20029b00, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\0007\000\000\000\000\000\b\0008\000\000\000" "\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x200016d8 = 0x40; *(uint64_t*)0x200016e0 = 0xf3afe0; *(uint64_t*)0x200016e8 = 0; *(uint64_t*)0x200016f0 = 0; *(uint64_t*)0x200016f8 = 0xf3b120; *(uint64_t*)0x20001700 = 0; *(uint64_t*)0x20001708 = 0; *(uint64_t*)0x20001710 = 0xf3b580; *(uint64_t*)0x20001718 = 0; *(uint64_t*)0x20001720 = 0; *(uint64_t*)0x20001728 = 0xf3b6e0; *(uint64_t*)0x20001730 = 0; *(uint64_t*)0x20001738 = 0; *(uint64_t*)0x20001740 = 0xf3b720; *(uint64_t*)0x20001748 = 0; *(uint64_t*)0x20001750 = 0; *(uint64_t*)0x20001758 = 0xf3bd80; *(uint64_t*)0x20001760 = 0; *(uint64_t*)0x20001768 = 0; *(uint64_t*)0x20001770 = 0xf3be40; *(uint64_t*)0x20001778 = 0; *(uint64_t*)0x20001780 = 0; *(uint64_t*)0x20001788 = 0xf3cfe0; *(uint64_t*)0x20001790 = 0x2002ad00; *(uint64_t*)0x20001798 = 0; *(uint64_t*)0x200017a0 = 0xf3dfe0; *(uint64_t*)0x200017a8 = 0; *(uint64_t*)0x200017b0 = 0; *(uint64_t*)0x200017b8 = 0xf3efe0; *(uint64_t*)0x200017c0 = 0; *(uint64_t*)0x200017c8 = 0; *(uint64_t*)0x200017d0 = 0xf3f120; *(uint64_t*)0x200017d8 = 0; *(uint64_t*)0x200017e0 = 0; *(uint64_t*)0x200017e8 = 0xf3f580; *(uint64_t*)0x200017f0 = 0; *(uint64_t*)0x200017f8 = 0; *(uint64_t*)0x20001800 = 0xf3f6e0; *(uint64_t*)0x20001808 = 0; *(uint64_t*)0x20001810 = 0; *(uint64_t*)0x20001818 = 0xf3f720; *(uint64_t*)0x20001820 = 0; *(uint64_t*)0x20001828 = 0; *(uint64_t*)0x20001830 = 0xf3fd80; *(uint64_t*)0x20001838 = 0; *(uint64_t*)0x20001840 = 0; *(uint64_t*)0x20001848 = 0xf3fe40; *(uint64_t*)0x20001850 = 0; *(uint64_t*)0x20001858 = 0; *(uint64_t*)0x20001860 = 0xf40fe0; *(uint64_t*)0x20001868 = 0x2002c000; *(uint64_t*)0x20001870 = 0; *(uint64_t*)0x20001878 = 0xf41fe0; *(uint64_t*)0x20001880 = 0; *(uint64_t*)0x20001888 = 0; *(uint64_t*)0x20001890 = 0xf42fe0; *(uint64_t*)0x20001898 = 0; *(uint64_t*)0x200018a0 = 0; *(uint64_t*)0x200018a8 = 0xf43120; *(uint64_t*)0x200018b0 = 0; *(uint64_t*)0x200018b8 = 0; *(uint64_t*)0x200018c0 = 0xf43580; *(uint64_t*)0x200018c8 = 0x2002c800; *(uint64_t*)0x200018d0 = 0; *(uint64_t*)0x200018d8 = 0xf436e0; *(uint64_t*)0x200018e0 = 0; *(uint64_t*)0x200018e8 = 0; *(uint64_t*)0x200018f0 = 0xf43720; *(uint64_t*)0x200018f8 = 0; *(uint64_t*)0x20001900 = 0; *(uint64_t*)0x20001908 = 0xf43d80; *(uint64_t*)0x20001910 = 0; *(uint64_t*)0x20001918 = 0; *(uint64_t*)0x20001920 = 0xf43e40; *(uint64_t*)0x20001928 = 0; *(uint64_t*)0x20001930 = 0; *(uint64_t*)0x20001938 = 0xf44fe0; *(uint64_t*)0x20001940 = 0; *(uint64_t*)0x20001948 = 0; *(uint64_t*)0x20001950 = 0xf45fe0; *(uint64_t*)0x20001958 = 0x2002d400; memcpy((void*)0x2002d400, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000C\000\000\000\000\000\b\000D\000\000\000" "\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001960 = 0x40; *(uint64_t*)0x20001968 = 0xf46fe0; *(uint64_t*)0x20001970 = 0; *(uint64_t*)0x20001978 = 0; *(uint64_t*)0x20001980 = 0xf47120; *(uint64_t*)0x20001988 = 0; *(uint64_t*)0x20001990 = 0; *(uint64_t*)0x20001998 = 0xf47580; *(uint64_t*)0x200019a0 = 0; *(uint64_t*)0x200019a8 = 0; *(uint64_t*)0x200019b0 = 0xf476e0; *(uint64_t*)0x200019b8 = 0x2002dc00; *(uint64_t*)0x200019c0 = 0; *(uint64_t*)0x200019c8 = 0xf47720; *(uint64_t*)0x200019d0 = 0; *(uint64_t*)0x200019d8 = 0; *(uint64_t*)0x200019e0 = 0xf47d80; *(uint64_t*)0x200019e8 = 0; *(uint64_t*)0x200019f0 = 0; *(uint64_t*)0x200019f8 = 0xf47e40; *(uint64_t*)0x20001a00 = 0; *(uint64_t*)0x20001a08 = 0; *(uint64_t*)0x20001a10 = 0xf48fe0; *(uint64_t*)0x20001a18 = 0; *(uint64_t*)0x20001a20 = 0; *(uint64_t*)0x20001a28 = 0xf49fe0; *(uint64_t*)0x20001a30 = 0; *(uint64_t*)0x20001a38 = 0; *(uint64_t*)0x20001a40 = 0xf4afe0; *(uint64_t*)0x20001a48 = 0; *(uint64_t*)0x20001a50 = 0; *(uint64_t*)0x20001a58 = 0xf4b120; *(uint64_t*)0x20001a60 = 0; *(uint64_t*)0x20001a68 = 0; *(uint64_t*)0x20001a70 = 0xf4b580; *(uint64_t*)0x20001a78 = 0; *(uint64_t*)0x20001a80 = 0; *(uint64_t*)0x20001a88 = 0xf4b6e0; *(uint64_t*)0x20001a90 = 0; *(uint64_t*)0x20001a98 = 0; *(uint64_t*)0x20001aa0 = 0xf4b720; *(uint64_t*)0x20001aa8 = 0x2002f500; *(uint64_t*)0x20001ab0 = 0; *(uint64_t*)0x20001ab8 = 0xf4bd80; *(uint64_t*)0x20001ac0 = 0x2002f600; *(uint64_t*)0x20001ac8 = 0; *(uint64_t*)0x20001ad0 = 0xf4be40; *(uint64_t*)0x20001ad8 = 0; *(uint64_t*)0x20001ae0 = 0; *(uint64_t*)0x20001ae8 = 0xf4cfe0; *(uint64_t*)0x20001af0 = 0; *(uint64_t*)0x20001af8 = 0; *(uint64_t*)0x20001b00 = 0xf4dfe0; *(uint64_t*)0x20001b08 = 0; *(uint64_t*)0x20001b10 = 0; *(uint64_t*)0x20001b18 = 0xf4efe0; *(uint64_t*)0x20001b20 = 0; *(uint64_t*)0x20001b28 = 0; *(uint64_t*)0x20001b30 = 0xf4f120; *(uint64_t*)0x20001b38 = 0; *(uint64_t*)0x20001b40 = 0; *(uint64_t*)0x20001b48 = 0xf4f580; *(uint64_t*)0x20001b50 = 0; *(uint64_t*)0x20001b58 = 0; *(uint64_t*)0x20001b60 = 0xf4f6e0; *(uint64_t*)0x20001b68 = 0; *(uint64_t*)0x20001b70 = 0; *(uint64_t*)0x20001b78 = 0xf4f720; *(uint64_t*)0x20001b80 = 0x20030800; *(uint64_t*)0x20001b88 = 0; *(uint64_t*)0x20001b90 = 0xf4fd80; *(uint64_t*)0x20001b98 = 0x20030900; *(uint64_t*)0x20001ba0 = 0; *(uint64_t*)0x20001ba8 = 0xf4fe40; *(uint64_t*)0x20001bb0 = 0; *(uint64_t*)0x20001bb8 = 0; *(uint64_t*)0x20001bc0 = 0xf50fe0; *(uint64_t*)0x20001bc8 = 0; *(uint64_t*)0x20001bd0 = 0; *(uint64_t*)0x20001bd8 = 0xf51fe0; *(uint64_t*)0x20001be0 = 0x20030d00; *(uint64_t*)0x20001be8 = 0; *(uint64_t*)0x20001bf0 = 0xf52fe0; *(uint64_t*)0x20001bf8 = 0; *(uint64_t*)0x20001c00 = 0; *(uint64_t*)0x20001c08 = 0xf53120; *(uint64_t*)0x20001c10 = 0; *(uint64_t*)0x20001c18 = 0; *(uint64_t*)0x20001c20 = 0xf53580; *(uint64_t*)0x20001c28 = 0; *(uint64_t*)0x20001c30 = 0; *(uint64_t*)0x20001c38 = 0xf536e0; *(uint64_t*)0x20001c40 = 0; *(uint64_t*)0x20001c48 = 0; *(uint64_t*)0x20001c50 = 0xf53720; *(uint64_t*)0x20001c58 = 0; *(uint64_t*)0x20001c60 = 0; *(uint64_t*)0x20001c68 = 0xf53d80; *(uint64_t*)0x20001c70 = 0; *(uint64_t*)0x20001c78 = 0; *(uint64_t*)0x20001c80 = 0xf53e40; *(uint64_t*)0x20001c88 = 0; *(uint64_t*)0x20001c90 = 0; *(uint64_t*)0x20001c98 = 0xf54fe0; *(uint64_t*)0x20001ca0 = 0; *(uint64_t*)0x20001ca8 = 0; *(uint64_t*)0x20001cb0 = 0xf55fe0; *(uint64_t*)0x20001cb8 = 0; *(uint64_t*)0x20001cc0 = 0; *(uint64_t*)0x20001cc8 = 0xf56fe0; *(uint64_t*)0x20001cd0 = 0; *(uint64_t*)0x20001cd8 = 0; *(uint64_t*)0x20001ce0 = 0xf57120; *(uint64_t*)0x20001ce8 = 0; *(uint64_t*)0x20001cf0 = 0; *(uint64_t*)0x20001cf8 = 0xf57580; *(uint64_t*)0x20001d00 = 0x20032700; *(uint64_t*)0x20001d08 = 0; *(uint64_t*)0x20001d10 = 0xf576e0; *(uint64_t*)0x20001d18 = 0; *(uint64_t*)0x20001d20 = 0; *(uint64_t*)0x20001d28 = 0xf57720; *(uint64_t*)0x20001d30 = 0; *(uint64_t*)0x20001d38 = 0; *(uint64_t*)0x20001d40 = 0xf57d80; *(uint64_t*)0x20001d48 = 0; *(uint64_t*)0x20001d50 = 0; *(uint64_t*)0x20001d58 = 0xf57e40; *(uint64_t*)0x20001d60 = 0; *(uint64_t*)0x20001d68 = 0; *(uint64_t*)0x20001d70 = 0xf58fe0; *(uint64_t*)0x20001d78 = 0; *(uint64_t*)0x20001d80 = 0; *(uint64_t*)0x20001d88 = 0xf59fe0; *(uint64_t*)0x20001d90 = 0; *(uint64_t*)0x20001d98 = 0; *(uint64_t*)0x20001da0 = 0xf5afe0; *(uint64_t*)0x20001da8 = 0; *(uint64_t*)0x20001db0 = 0; *(uint64_t*)0x20001db8 = 0xf5b120; *(uint64_t*)0x20001dc0 = 0; *(uint64_t*)0x20001dc8 = 0; *(uint64_t*)0x20001dd0 = 0xf5b580; *(uint64_t*)0x20001dd8 = 0; *(uint64_t*)0x20001de0 = 0; *(uint64_t*)0x20001de8 = 0xf5b6e0; *(uint64_t*)0x20001df0 = 0; *(uint64_t*)0x20001df8 = 0; *(uint64_t*)0x20001e00 = 0xf5b720; *(uint64_t*)0x20001e08 = 0; *(uint64_t*)0x20001e10 = 0; *(uint64_t*)0x20001e18 = 0xf5bd80; *(uint64_t*)0x20001e20 = 0x20034200; *(uint64_t*)0x20001e28 = 0; *(uint64_t*)0x20001e30 = 0xf5be40; *(uint64_t*)0x20001e38 = 0; *(uint64_t*)0x20001e40 = 0; *(uint64_t*)0x20001e48 = 0xf5cfe0; *(uint64_t*)0x20001e50 = 0; *(uint64_t*)0x20001e58 = 0; *(uint64_t*)0x20001e60 = 0xf5dfe0; *(uint64_t*)0x20001e68 = 0; *(uint64_t*)0x20001e70 = 0; *(uint64_t*)0x20001e78 = 0xf5efe0; *(uint64_t*)0x20001e80 = 0; *(uint64_t*)0x20001e88 = 0; *(uint64_t*)0x20001e90 = 0xf5f120; *(uint64_t*)0x20001e98 = 0; *(uint64_t*)0x20001ea0 = 0; *(uint64_t*)0x20001ea8 = 0xf5f580; *(uint64_t*)0x20001eb0 = 0; *(uint64_t*)0x20001eb8 = 0; *(uint64_t*)0x20001ec0 = 0xf5f6e0; *(uint64_t*)0x20001ec8 = 0; *(uint64_t*)0x20001ed0 = 0; *(uint64_t*)0x20001ed8 = 0xf5f720; *(uint64_t*)0x20001ee0 = 0; *(uint64_t*)0x20001ee8 = 0; *(uint64_t*)0x20001ef0 = 0xf5fd80; *(uint64_t*)0x20001ef8 = 0; *(uint64_t*)0x20001f00 = 0; *(uint64_t*)0x20001f08 = 0xf5fe40; *(uint64_t*)0x20001f10 = 0; *(uint64_t*)0x20001f18 = 0; *(uint64_t*)0x20001f20 = 0xf60fe0; *(uint64_t*)0x20001f28 = 0; *(uint64_t*)0x20001f30 = 0; *(uint64_t*)0x20001f38 = 0xf61fe0; *(uint64_t*)0x20001f40 = 0; *(uint64_t*)0x20001f48 = 0; *(uint64_t*)0x20001f50 = 0xf62fe0; *(uint64_t*)0x20001f58 = 0; *(uint64_t*)0x20001f60 = 0; *(uint64_t*)0x20001f68 = 0xf63120; *(uint64_t*)0x20001f70 = 0; *(uint64_t*)0x20001f78 = 0; *(uint64_t*)0x20001f80 = 0xf63580; *(uint64_t*)0x20001f88 = 0; *(uint64_t*)0x20001f90 = 0; *(uint64_t*)0x20001f98 = 0xf636e0; *(uint64_t*)0x20001fa0 = 0x20036100; *(uint64_t*)0x20001fa8 = 0; *(uint64_t*)0x20001fb0 = 0xf63720; *(uint64_t*)0x20001fb8 = 0; *(uint64_t*)0x20001fc0 = 0; *(uint64_t*)0x20001fc8 = 0xf63d80; *(uint64_t*)0x20001fd0 = 0x20036800; *(uint64_t*)0x20001fd8 = 0; *(uint64_t*)0x20001fe0 = 0xf63e40; *(uint64_t*)0x20001fe8 = 0; *(uint64_t*)0x20001ff0 = 0; *(uint64_t*)0x20001ff8 = 0xf64fe0; *(uint64_t*)0x20002000 = 0; *(uint64_t*)0x20002008 = 0; *(uint64_t*)0x20002010 = 0xf65fe0; *(uint64_t*)0x20002018 = 0; *(uint64_t*)0x20002020 = 0; *(uint64_t*)0x20002028 = 0xf66fe0; *(uint64_t*)0x20002030 = 0; *(uint64_t*)0x20002038 = 0; *(uint64_t*)0x20002040 = 0xf67120; *(uint64_t*)0x20002048 = 0; *(uint64_t*)0x20002050 = 0; *(uint64_t*)0x20002058 = 0xf67580; *(uint64_t*)0x20002060 = 0; *(uint64_t*)0x20002068 = 0; *(uint64_t*)0x20002070 = 0xf676e0; *(uint64_t*)0x20002078 = 0; *(uint64_t*)0x20002080 = 0; *(uint64_t*)0x20002088 = 0xf67720; *(uint64_t*)0x20002090 = 0; *(uint64_t*)0x20002098 = 0; *(uint64_t*)0x200020a0 = 0xf67d80; *(uint64_t*)0x200020a8 = 0; *(uint64_t*)0x200020b0 = 0; *(uint64_t*)0x200020b8 = 0xf67e40; *(uint64_t*)0x200020c0 = 0; *(uint64_t*)0x200020c8 = 0; *(uint64_t*)0x200020d0 = 0xf68fe0; *(uint64_t*)0x200020d8 = 0x20037e00; *(uint64_t*)0x200020e0 = 0; *(uint64_t*)0x200020e8 = 0xf69fe0; *(uint64_t*)0x200020f0 = 0; *(uint64_t*)0x200020f8 = 0; *(uint64_t*)0x20002100 = 0xf6afe0; *(uint64_t*)0x20002108 = 0; *(uint64_t*)0x20002110 = 0; *(uint64_t*)0x20002118 = 0xf6b120; *(uint64_t*)0x20002120 = 0; *(uint64_t*)0x20002128 = 0; *(uint64_t*)0x20002130 = 0xf6b580; *(uint64_t*)0x20002138 = 0; *(uint64_t*)0x20002140 = 0; *(uint64_t*)0x20002148 = 0xf6b6e0; *(uint64_t*)0x20002150 = 0; *(uint64_t*)0x20002158 = 0; *(uint64_t*)0x20002160 = 0xf6b720; *(uint64_t*)0x20002168 = 0; *(uint64_t*)0x20002170 = 0; *(uint64_t*)0x20002178 = 0xf6bd80; *(uint64_t*)0x20002180 = 0; *(uint64_t*)0x20002188 = 0; *(uint64_t*)0x20002190 = 0xf6be40; *(uint64_t*)0x20002198 = 0; *(uint64_t*)0x200021a0 = 0; *(uint64_t*)0x200021a8 = 0xf6cfe0; *(uint64_t*)0x200021b0 = 0; *(uint64_t*)0x200021b8 = 0; *(uint64_t*)0x200021c0 = 0xf6dfe0; *(uint64_t*)0x200021c8 = 0; *(uint64_t*)0x200021d0 = 0; *(uint64_t*)0x200021d8 = 0xf6efe0; *(uint64_t*)0x200021e0 = 0; *(uint64_t*)0x200021e8 = 0; *(uint64_t*)0x200021f0 = 0xf6f120; *(uint64_t*)0x200021f8 = 0; *(uint64_t*)0x20002200 = 0; *(uint64_t*)0x20002208 = 0xf6f580; *(uint64_t*)0x20002210 = 0; *(uint64_t*)0x20002218 = 0; *(uint64_t*)0x20002220 = 0xf6f6e0; *(uint64_t*)0x20002228 = 0; *(uint64_t*)0x20002230 = 0; *(uint64_t*)0x20002238 = 0xf6f720; *(uint64_t*)0x20002240 = 0; *(uint64_t*)0x20002248 = 0; *(uint64_t*)0x20002250 = 0xf6fd80; *(uint64_t*)0x20002258 = 0; *(uint64_t*)0x20002260 = 0; *(uint64_t*)0x20002268 = 0xf6fe40; *(uint64_t*)0x20002270 = 0; *(uint64_t*)0x20002278 = 0; *(uint64_t*)0x20002280 = 0xf70fe0; *(uint64_t*)0x20002288 = 0; *(uint64_t*)0x20002290 = 0; *(uint64_t*)0x20002298 = 0xf71fe0; *(uint64_t*)0x200022a0 = 0; *(uint64_t*)0x200022a8 = 0; *(uint64_t*)0x200022b0 = 0xf72fe0; *(uint64_t*)0x200022b8 = 0; *(uint64_t*)0x200022c0 = 0; *(uint64_t*)0x200022c8 = 0xf73120; *(uint64_t*)0x200022d0 = 0; *(uint64_t*)0x200022d8 = 0; *(uint64_t*)0x200022e0 = 0xf73580; *(uint64_t*)0x200022e8 = 0; *(uint64_t*)0x200022f0 = 0; *(uint64_t*)0x200022f8 = 0xf736e0; *(uint64_t*)0x20002300 = 0; *(uint64_t*)0x20002308 = 0; *(uint64_t*)0x20002310 = 0xf73720; *(uint64_t*)0x20002318 = 0; *(uint64_t*)0x20002320 = 0; *(uint64_t*)0x20002328 = 0xf73d80; *(uint64_t*)0x20002330 = 0; *(uint64_t*)0x20002338 = 0; *(uint64_t*)0x20002340 = 0xf73e40; *(uint64_t*)0x20002348 = 0; *(uint64_t*)0x20002350 = 0; *(uint64_t*)0x20002358 = 0xf74fe0; *(uint64_t*)0x20002360 = 0; *(uint64_t*)0x20002368 = 0; *(uint64_t*)0x20002370 = 0xf75fe0; *(uint64_t*)0x20002378 = 0x2003b800; *(uint64_t*)0x20002380 = 0; *(uint64_t*)0x20002388 = 0xf76fe0; *(uint64_t*)0x20002390 = 0; *(uint64_t*)0x20002398 = 0; *(uint64_t*)0x200023a0 = 0xf77120; *(uint64_t*)0x200023a8 = 0; *(uint64_t*)0x200023b0 = 0; *(uint64_t*)0x200023b8 = 0xf77580; *(uint64_t*)0x200023c0 = 0; *(uint64_t*)0x200023c8 = 0; *(uint64_t*)0x200023d0 = 0xf776e0; *(uint64_t*)0x200023d8 = 0; *(uint64_t*)0x200023e0 = 0; *(uint64_t*)0x200023e8 = 0xf77720; *(uint64_t*)0x200023f0 = 0; *(uint64_t*)0x200023f8 = 0; *(uint64_t*)0x20002400 = 0xf77d80; *(uint64_t*)0x20002408 = 0; *(uint64_t*)0x20002410 = 0; *(uint64_t*)0x20002418 = 0xf77e40; *(uint64_t*)0x20002420 = 0; *(uint64_t*)0x20002428 = 0; *(uint64_t*)0x20002430 = 0xf78fe0; *(uint64_t*)0x20002438 = 0; *(uint64_t*)0x20002440 = 0; *(uint64_t*)0x20002448 = 0xf79fe0; *(uint64_t*)0x20002450 = 0; *(uint64_t*)0x20002458 = 0; *(uint64_t*)0x20002460 = 0xf7afe0; *(uint64_t*)0x20002468 = 0x2003cc00; *(uint64_t*)0x20002470 = 0; *(uint64_t*)0x20002478 = 0xf7b120; *(uint64_t*)0x20002480 = 0x2003d100; memcpy( (void*)0x2003d100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x25\x73\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20002488 = 0xa0; *(uint64_t*)0x20002490 = 0xf7b580; *(uint64_t*)0x20002498 = 0; *(uint64_t*)0x200024a0 = 0; *(uint64_t*)0x200024a8 = 0xf7b6e0; *(uint64_t*)0x200024b0 = 0; *(uint64_t*)0x200024b8 = 0; *(uint64_t*)0x200024c0 = 0xf7b720; *(uint64_t*)0x200024c8 = 0; *(uint64_t*)0x200024d0 = 0; *(uint64_t*)0x200024d8 = 0xf7bd80; *(uint64_t*)0x200024e0 = 0; *(uint64_t*)0x200024e8 = 0; *(uint64_t*)0x200024f0 = 0xf7be40; *(uint64_t*)0x200024f8 = 0; *(uint64_t*)0x20002500 = 0; *(uint64_t*)0x20002508 = 0xf7cfe0; *(uint64_t*)0x20002510 = 0x2003dd00; *(uint64_t*)0x20002518 = 0; *(uint64_t*)0x20002520 = 0xf7dfe0; *(uint64_t*)0x20002528 = 0; *(uint64_t*)0x20002530 = 0; *(uint64_t*)0x20002538 = 0xf7efe0; *(uint64_t*)0x20002540 = 0; *(uint64_t*)0x20002548 = 0; *(uint64_t*)0x20002550 = 0xf7f120; *(uint64_t*)0x20002558 = 0; *(uint64_t*)0x20002560 = 0; *(uint64_t*)0x20002568 = 0xf7f580; *(uint64_t*)0x20002570 = 0; *(uint64_t*)0x20002578 = 0; *(uint64_t*)0x20002580 = 0xf7f6e0; *(uint64_t*)0x20002588 = 0; *(uint64_t*)0x20002590 = 0; *(uint64_t*)0x20002598 = 0xf7f720; *(uint64_t*)0x200025a0 = 0x2003ec00; *(uint64_t*)0x200025a8 = 0; *(uint64_t*)0x200025b0 = 0xf7fd80; *(uint64_t*)0x200025b8 = 0; *(uint64_t*)0x200025c0 = 0; *(uint64_t*)0x200025c8 = 0xf7fe40; *(uint64_t*)0x200025d0 = 0; *(uint64_t*)0x200025d8 = 0; *(uint64_t*)0x200025e0 = 0xf80fe0; *(uint64_t*)0x200025e8 = 0; *(uint64_t*)0x200025f0 = 0; *(uint64_t*)0x200025f8 = 0xf81fe0; *(uint64_t*)0x20002600 = 0; *(uint64_t*)0x20002608 = 0; *(uint64_t*)0x20002610 = 0xf82fe0; *(uint64_t*)0x20002618 = 0; *(uint64_t*)0x20002620 = 0; *(uint64_t*)0x20002628 = 0xf83120; *(uint64_t*)0x20002630 = 0; *(uint64_t*)0x20002638 = 0; *(uint64_t*)0x20002640 = 0xf83580; *(uint64_t*)0x20002648 = 0; *(uint64_t*)0x20002650 = 0; *(uint64_t*)0x20002658 = 0xf836e0; *(uint64_t*)0x20002660 = 0; *(uint64_t*)0x20002668 = 0; *(uint64_t*)0x20002670 = 0xf83720; *(uint64_t*)0x20002678 = 0; *(uint64_t*)0x20002680 = 0; *(uint64_t*)0x20002688 = 0xf83d80; *(uint64_t*)0x20002690 = 0; *(uint64_t*)0x20002698 = 0; *(uint64_t*)0x200026a0 = 0xf83e40; *(uint64_t*)0x200026a8 = 0; *(uint64_t*)0x200026b0 = 0; *(uint64_t*)0x200026b8 = 0xf84fe0; *(uint64_t*)0x200026c0 = 0; *(uint64_t*)0x200026c8 = 0; *(uint64_t*)0x200026d0 = 0xf85fe0; *(uint64_t*)0x200026d8 = 0; *(uint64_t*)0x200026e0 = 0; *(uint64_t*)0x200026e8 = 0xf86fe0; *(uint64_t*)0x200026f0 = 0; *(uint64_t*)0x200026f8 = 0; *(uint64_t*)0x20002700 = 0xf87120; *(uint64_t*)0x20002708 = 0; *(uint64_t*)0x20002710 = 0; *(uint64_t*)0x20002718 = 0xf87580; *(uint64_t*)0x20002720 = 0; *(uint64_t*)0x20002728 = 0; *(uint64_t*)0x20002730 = 0xf876e0; *(uint64_t*)0x20002738 = 0; *(uint64_t*)0x20002740 = 0; *(uint64_t*)0x20002748 = 0xf87720; *(uint64_t*)0x20002750 = 0x20041200; *(uint64_t*)0x20002758 = 0; *(uint64_t*)0x20002760 = 0xf87d80; *(uint64_t*)0x20002768 = 0; *(uint64_t*)0x20002770 = 0; *(uint64_t*)0x20002778 = 0xf87e40; *(uint64_t*)0x20002780 = 0; *(uint64_t*)0x20002788 = 0; *(uint64_t*)0x20002790 = 0xf88fe0; *(uint64_t*)0x20002798 = 0; *(uint64_t*)0x200027a0 = 0; *(uint64_t*)0x200027a8 = 0xf89fe0; *(uint64_t*)0x200027b0 = 0; *(uint64_t*)0x200027b8 = 0; *(uint64_t*)0x200027c0 = 0xf8afe0; *(uint64_t*)0x200027c8 = 0x20041800; *(uint64_t*)0x200027d0 = 0; *(uint64_t*)0x200027d8 = 0xf8b120; *(uint64_t*)0x200027e0 = 0; *(uint64_t*)0x200027e8 = 0; *(uint64_t*)0x200027f0 = 0xf8b580; *(uint64_t*)0x200027f8 = 0; *(uint64_t*)0x20002800 = 0; *(uint64_t*)0x20002808 = 0xf8b6e0; *(uint64_t*)0x20002810 = 0; *(uint64_t*)0x20002818 = 0; *(uint64_t*)0x20002820 = 0xf8b720; *(uint64_t*)0x20002828 = 0; *(uint64_t*)0x20002830 = 0; *(uint64_t*)0x20002838 = 0xf8bd80; *(uint64_t*)0x20002840 = 0; *(uint64_t*)0x20002848 = 0; *(uint64_t*)0x20002850 = 0xf8be40; *(uint64_t*)0x20002858 = 0; *(uint64_t*)0x20002860 = 0; *(uint64_t*)0x20002868 = 0xf8cfe0; *(uint64_t*)0x20002870 = 0; *(uint64_t*)0x20002878 = 0; *(uint64_t*)0x20002880 = 0xf8dfe0; *(uint64_t*)0x20002888 = 0; *(uint64_t*)0x20002890 = 0; *(uint64_t*)0x20002898 = 0xf8efe0; *(uint64_t*)0x200028a0 = 0; *(uint64_t*)0x200028a8 = 0; *(uint64_t*)0x200028b0 = 0xf8f120; *(uint64_t*)0x200028b8 = 0; *(uint64_t*)0x200028c0 = 0; *(uint64_t*)0x200028c8 = 0xf8f580; *(uint64_t*)0x200028d0 = 0x20043100; *(uint64_t*)0x200028d8 = 0; *(uint64_t*)0x200028e0 = 0xf8f6e0; *(uint64_t*)0x200028e8 = 0x20043200; *(uint64_t*)0x200028f0 = 0; *(uint64_t*)0x200028f8 = 0xf8f720; *(uint64_t*)0x20002900 = 0; *(uint64_t*)0x20002908 = 0; *(uint64_t*)0x20002910 = 0xf8fd80; *(uint64_t*)0x20002918 = 0; *(uint64_t*)0x20002920 = 0; *(uint64_t*)0x20002928 = 0xf8fe40; *(uint64_t*)0x20002930 = 0; *(uint64_t*)0x20002938 = 0; *(uint64_t*)0x20002940 = 0xf90fe0; *(uint64_t*)0x20002948 = 0; *(uint64_t*)0x20002950 = 0; *(uint64_t*)0x20002958 = 0xf91fe0; *(uint64_t*)0x20002960 = 0; *(uint64_t*)0x20002968 = 0; *(uint64_t*)0x20002970 = 0xf92fe0; *(uint64_t*)0x20002978 = 0; *(uint64_t*)0x20002980 = 0; *(uint64_t*)0x20002988 = 0xf93120; *(uint64_t*)0x20002990 = 0; *(uint64_t*)0x20002998 = 0; *(uint64_t*)0x200029a0 = 0xf93580; *(uint64_t*)0x200029a8 = 0; *(uint64_t*)0x200029b0 = 0; *(uint64_t*)0x200029b8 = 0xf936e0; *(uint64_t*)0x200029c0 = 0x20044500; *(uint64_t*)0x200029c8 = 0; *(uint64_t*)0x200029d0 = 0xf93720; *(uint64_t*)0x200029d8 = 0; *(uint64_t*)0x200029e0 = 0; *(uint64_t*)0x200029e8 = 0xf93d80; *(uint64_t*)0x200029f0 = 0; *(uint64_t*)0x200029f8 = 0; *(uint64_t*)0x20002a00 = 0xf93e40; *(uint64_t*)0x20002a08 = 0x20044e00; *(uint64_t*)0x20002a10 = 0; *(uint64_t*)0x20002a18 = 0xf94fe0; *(uint64_t*)0x20002a20 = 0; *(uint64_t*)0x20002a28 = 0; *(uint64_t*)0x20002a30 = 0xf95fe0; *(uint64_t*)0x20002a38 = 0x20045000; *(uint64_t*)0x20002a40 = 0; *(uint64_t*)0x20002a48 = 0xf96fe0; *(uint64_t*)0x20002a50 = 0; *(uint64_t*)0x20002a58 = 0; *(uint64_t*)0x20002a60 = 0xf97120; *(uint64_t*)0x20002a68 = 0x20045600; *(uint64_t*)0x20002a70 = 0; *(uint64_t*)0x20002a78 = 0xf97580; *(uint64_t*)0x20002a80 = 0; *(uint64_t*)0x20002a88 = 0; *(uint64_t*)0x20002a90 = 0xf976e0; *(uint64_t*)0x20002a98 = 0; *(uint64_t*)0x20002aa0 = 0; *(uint64_t*)0x20002aa8 = 0xf97720; *(uint64_t*)0x20002ab0 = 0; *(uint64_t*)0x20002ab8 = 0; *(uint64_t*)0x20002ac0 = 0xf97d80; *(uint64_t*)0x20002ac8 = 0; *(uint64_t*)0x20002ad0 = 0; *(uint64_t*)0x20002ad8 = 0xf97e40; *(uint64_t*)0x20002ae0 = 0x20046100; *(uint64_t*)0x20002ae8 = 0; *(uint64_t*)0x20002af0 = 0xf98fe0; *(uint64_t*)0x20002af8 = 0x20046200; *(uint64_t*)0x20002b00 = 0; *(uint64_t*)0x20002b08 = 0xf99fe0; *(uint64_t*)0x20002b10 = 0; *(uint64_t*)0x20002b18 = 0; *(uint64_t*)0x20002b20 = 0xf9afe0; *(uint64_t*)0x20002b28 = 0; *(uint64_t*)0x20002b30 = 0; *(uint64_t*)0x20002b38 = 0xf9b120; *(uint64_t*)0x20002b40 = 0; *(uint64_t*)0x20002b48 = 0; *(uint64_t*)0x20002b50 = 0xf9b580; *(uint64_t*)0x20002b58 = 0; *(uint64_t*)0x20002b60 = 0; *(uint64_t*)0x20002b68 = 0xf9b6e0; *(uint64_t*)0x20002b70 = 0x20046b00; *(uint64_t*)0x20002b78 = 0; *(uint64_t*)0x20002b80 = 0xf9b720; *(uint64_t*)0x20002b88 = 0; *(uint64_t*)0x20002b90 = 0; *(uint64_t*)0x20002b98 = 0xf9bd80; *(uint64_t*)0x20002ba0 = 0; *(uint64_t*)0x20002ba8 = 0; *(uint64_t*)0x20002bb0 = 0xf9be40; *(uint64_t*)0x20002bb8 = 0; *(uint64_t*)0x20002bc0 = 0; *(uint64_t*)0x20002bc8 = 0xf9cfe0; *(uint64_t*)0x20002bd0 = 0; *(uint64_t*)0x20002bd8 = 0; *(uint64_t*)0x20002be0 = 0xf9dfe0; *(uint64_t*)0x20002be8 = 0; *(uint64_t*)0x20002bf0 = 0; *(uint64_t*)0x20002bf8 = 0xf9efe0; *(uint64_t*)0x20002c00 = 0; *(uint64_t*)0x20002c08 = 0; *(uint64_t*)0x20002c10 = 0xf9f120; *(uint64_t*)0x20002c18 = 0; *(uint64_t*)0x20002c20 = 0; *(uint64_t*)0x20002c28 = 0xf9f580; *(uint64_t*)0x20002c30 = 0; *(uint64_t*)0x20002c38 = 0; *(uint64_t*)0x20002c40 = 0xf9f6e0; *(uint64_t*)0x20002c48 = 0; *(uint64_t*)0x20002c50 = 0; *(uint64_t*)0x20002c58 = 0xf9f720; *(uint64_t*)0x20002c60 = 0x20048400; *(uint64_t*)0x20002c68 = 0; *(uint64_t*)0x20002c70 = 0xf9fd80; *(uint64_t*)0x20002c78 = 0; *(uint64_t*)0x20002c80 = 0; *(uint64_t*)0x20002c88 = 0xf9fe40; *(uint64_t*)0x20002c90 = 0; *(uint64_t*)0x20002c98 = 0; *(uint64_t*)0x20002ca0 = 0xfa0fe0; *(uint64_t*)0x20002ca8 = 0; *(uint64_t*)0x20002cb0 = 0; *(uint64_t*)0x20002cb8 = 0xfa1fe0; *(uint64_t*)0x20002cc0 = 0; *(uint64_t*)0x20002cc8 = 0; *(uint64_t*)0x20002cd0 = 0xfa2fe0; *(uint64_t*)0x20002cd8 = 0; *(uint64_t*)0x20002ce0 = 0; *(uint64_t*)0x20002ce8 = 0xfa3120; *(uint64_t*)0x20002cf0 = 0; *(uint64_t*)0x20002cf8 = 0; *(uint64_t*)0x20002d00 = 0xfa3580; *(uint64_t*)0x20002d08 = 0; *(uint64_t*)0x20002d10 = 0; *(uint64_t*)0x20002d18 = 0xfa36e0; *(uint64_t*)0x20002d20 = 0; *(uint64_t*)0x20002d28 = 0; *(uint64_t*)0x20002d30 = 0xfa3720; *(uint64_t*)0x20002d38 = 0; *(uint64_t*)0x20002d40 = 0; *(uint64_t*)0x20002d48 = 0xfa3d80; *(uint64_t*)0x20002d50 = 0; *(uint64_t*)0x20002d58 = 0; *(uint64_t*)0x20002d60 = 0xfa3e40; syz_mount_image(0x20000000, 0x20000100, 0, 0x1cf, 0x20000200, 0, 0x20000040); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }