├── LICENSE ├── README.md ├── task.py └── tasks ├── crypto └── astronaut │ ├── README.md │ ├── desc.md │ ├── dev │ ├── astronaut.py │ ├── flag.txt │ └── output.txt │ ├── public │ └── crypto-astronaut.tar.gz │ ├── solution │ └── solver.sage │ └── task.json ├── forensics ├── crash │ ├── README.md │ ├── desc.md │ ├── dev │ │ ├── __pycache__ │ │ │ └── helper.cpython-39.pyc │ │ ├── cmds.txt │ │ ├── helper.py │ │ ├── helper.pyc │ │ ├── hint.png │ │ └── real_flag.txt │ ├── public │ │ └── dump.zip │ ├── solution │ │ ├── find_mt.py │ │ ├── poc_solution.txt │ │ ├── recover_mt.py │ │ └── recv_mt.py │ └── task.json └── whisper │ ├── README.md │ ├── desc.md │ ├── dev │ ├── client │ │ ├── Makefile │ │ ├── main.c │ │ └── main.h │ └── driver │ │ ├── Makefile │ │ ├── whisper.c │ │ ├── whisper.h │ │ └── whisper.ko │ ├── public │ └── link.txt │ ├── solution │ └── poc-solve.txt │ └── task.json ├── pwn ├── balloon │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── run.sh │ │ └── service │ │ │ ├── Dockerfile │ │ │ ├── balloon.py │ │ │ ├── entrypoint.sh │ │ │ ├── flag │ │ │ └── preload.so │ ├── desc.md │ ├── dev │ │ ├── Makefile │ │ ├── flag.c │ │ └── preload.c │ ├── public │ │ └── pwn-balloon.tar.gz │ ├── solution │ │ └── exploit.py │ └── task.json ├── heap-2022 │ ├── README.md │ ├── deploy │ │ ├── docker-compose.yml │ │ └── service │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ ├── flag.txt │ │ │ ├── ld-linux-x86-64.so.2 │ │ │ ├── libc.so.6 │ │ │ └── main │ ├── desc.md │ ├── dev │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── ld-linux-x86-64.so.2 │ │ ├── libc.so.6 │ │ ├── main │ │ ├── main.c │ │ └── spl2.py │ ├── public │ │ └── heap-2022-public.7z │ ├── solution │ │ └── sploit.py │ └── task.json ├── kernel-gym │ ├── README.md │ ├── deploy │ │ ├── docker-compose.yml │ │ └── service │ │ │ ├── Dockerfile │ │ │ ├── bzImage │ │ │ ├── compr.sh │ │ │ ├── decompress.sh │ │ │ ├── deploy_manager.py │ │ │ ├── initramfs.cpio.gz │ │ │ └── run.sh │ ├── desc.md │ ├── dev │ │ ├── kernel_gym.c │ │ └── kernel_gym.h │ ├── public │ │ └── kernel-gym-public.7z │ ├── solution │ │ ├── client │ │ ├── main.c │ │ ├── main.h │ │ └── sploit_loader.py │ └── task.json └── one-bullet │ ├── README.md │ ├── deploy │ ├── docker-compose.yml │ └── service │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── flag.txt │ │ └── one_bullet │ ├── desc.md │ ├── dev │ ├── Makefile │ ├── flag.txt │ ├── main.c │ ├── one_bullet │ └── sploit.py │ ├── public │ └── one_bullet │ ├── solution │ └── sploit.py │ └── task.json ├── reverse ├── arctic │ ├── README.md │ ├── desc.md │ ├── dev │ │ ├── Makefile │ │ ├── arctic │ │ ├── arctic.c │ │ ├── arctic.o │ │ ├── construct.py │ │ ├── musl-1.2.3 │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .vscode │ │ │ │ └── settings.json │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── WHATSNEW │ │ │ ├── arch │ │ │ │ ├── aarch64 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── fp_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── arm │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl_fix.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── generic │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── dirent.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ioctl_fix.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── kd.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── link.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── soundcard.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── vt.h │ │ │ │ │ └── fp_arch.h │ │ │ │ ├── i386 │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── m68k │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── microblaze │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── mips │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── mips64 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── mipsn32 │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── or1k │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── powerpc │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── riscv64 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── s390x │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl_fix.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── link.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── sh │ │ │ │ │ ├── arch.mak │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── hwcap.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ipcstat.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ ├── x32 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── ioctl_fix.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ │ └── x86_64 │ │ │ │ │ ├── atomic_arch.h │ │ │ │ │ ├── bits │ │ │ │ │ ├── alltypes.h.in │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── posix.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── sem.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── syscall.h.in │ │ │ │ │ └── user.h │ │ │ │ │ ├── crt_arch.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── pthread_arch.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ └── syscall_arch.h │ │ │ ├── compat │ │ │ │ └── time32 │ │ │ │ │ ├── __xstat.c │ │ │ │ │ ├── adjtime32.c │ │ │ │ │ ├── adjtimex_time32.c │ │ │ │ │ ├── aio_suspend_time32.c │ │ │ │ │ ├── clock_adjtime32.c │ │ │ │ │ ├── clock_getres_time32.c │ │ │ │ │ ├── clock_gettime32.c │ │ │ │ │ ├── clock_nanosleep_time32.c │ │ │ │ │ ├── clock_settime32.c │ │ │ │ │ ├── cnd_timedwait_time32.c │ │ │ │ │ ├── ctime32.c │ │ │ │ │ ├── ctime32_r.c │ │ │ │ │ ├── difftime32.c │ │ │ │ │ ├── fstat_time32.c │ │ │ │ │ ├── fstatat_time32.c │ │ │ │ │ ├── ftime32.c │ │ │ │ │ ├── futimens_time32.c │ │ │ │ │ ├── futimes_time32.c │ │ │ │ │ ├── futimesat_time32.c │ │ │ │ │ ├── getitimer_time32.c │ │ │ │ │ ├── getrusage_time32.c │ │ │ │ │ ├── gettimeofday_time32.c │ │ │ │ │ ├── gmtime32.c │ │ │ │ │ ├── gmtime32_r.c │ │ │ │ │ ├── localtime32.c │ │ │ │ │ ├── localtime32_r.c │ │ │ │ │ ├── lstat_time32.c │ │ │ │ │ ├── lutimes_time32.c │ │ │ │ │ ├── mktime32.c │ │ │ │ │ ├── mq_timedreceive_time32.c │ │ │ │ │ ├── mq_timedsend_time32.c │ │ │ │ │ ├── mtx_timedlock_time32.c │ │ │ │ │ ├── nanosleep_time32.c │ │ │ │ │ ├── ppoll_time32.c │ │ │ │ │ ├── pselect_time32.c │ │ │ │ │ ├── pthread_cond_timedwait_time32.c │ │ │ │ │ ├── pthread_mutex_timedlock_time32.c │ │ │ │ │ ├── pthread_rwlock_timedrdlock_time32.c │ │ │ │ │ ├── pthread_rwlock_timedwrlock_time32.c │ │ │ │ │ ├── pthread_timedjoin_np_time32.c │ │ │ │ │ ├── recvmmsg_time32.c │ │ │ │ │ ├── sched_rr_get_interval_time32.c │ │ │ │ │ ├── select_time32.c │ │ │ │ │ ├── sem_timedwait_time32.c │ │ │ │ │ ├── semtimedop_time32.c │ │ │ │ │ ├── setitimer_time32.c │ │ │ │ │ ├── settimeofday_time32.c │ │ │ │ │ ├── sigtimedwait_time32.c │ │ │ │ │ ├── stat_time32.c │ │ │ │ │ ├── stime32.c │ │ │ │ │ ├── thrd_sleep_time32.c │ │ │ │ │ ├── time32.c │ │ │ │ │ ├── time32.h │ │ │ │ │ ├── time32gm.c │ │ │ │ │ ├── timer_gettime32.c │ │ │ │ │ ├── timer_settime32.c │ │ │ │ │ ├── timerfd_gettime32.c │ │ │ │ │ ├── timerfd_settime32.c │ │ │ │ │ ├── timespec_get_time32.c │ │ │ │ │ ├── utime_time32.c │ │ │ │ │ ├── utimensat_time32.c │ │ │ │ │ ├── utimes_time32.c │ │ │ │ │ ├── wait3_time32.c │ │ │ │ │ └── wait4_time32.c │ │ │ ├── configure │ │ │ ├── crt │ │ │ │ ├── Scrt1.c │ │ │ │ ├── aarch64 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── arm │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── crt1.c │ │ │ │ ├── crti.c │ │ │ │ ├── crtn.c │ │ │ │ ├── i386 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── microblaze │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── mips │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── mips64 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── mipsn32 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── or1k │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── powerpc │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── rcrt1.c │ │ │ │ ├── s390x │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── sh │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ ├── x32 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ │ └── x86_64 │ │ │ │ │ ├── crti.s │ │ │ │ │ └── crtn.s │ │ │ ├── dynamic.list │ │ │ ├── include │ │ │ │ ├── aio.h │ │ │ │ ├── alloca.h │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── ar.h │ │ │ │ ├── arpa │ │ │ │ │ ├── ftp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── nameser.h │ │ │ │ │ ├── nameser_compat.h │ │ │ │ │ ├── telnet.h │ │ │ │ │ └── tftp.h │ │ │ │ ├── assert.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── complex.h │ │ │ │ ├── cpio.h │ │ │ │ ├── crypt.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elf.h │ │ │ │ ├── endian.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── fmtmsg.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── ftw.h │ │ │ │ ├── getopt.h │ │ │ │ ├── glob.h │ │ │ │ ├── grp.h │ │ │ │ ├── iconv.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── langinfo.h │ │ │ │ ├── lastlog.h │ │ │ │ ├── libgen.h │ │ │ │ ├── libintl.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── locale.h │ │ │ │ ├── malloc.h │ │ │ │ ├── math.h │ │ │ │ ├── memory.h │ │ │ │ ├── mntent.h │ │ │ │ ├── monetary.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── net │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── if.h │ │ │ │ │ ├── if_arp.h │ │ │ │ │ └── route.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ │ ├── ether.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── if_ether.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── in.h │ │ │ │ │ ├── in_systm.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip_icmp.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ └── udp.h │ │ │ │ ├── netpacket │ │ │ │ │ └── packet.h │ │ │ │ ├── nl_types.h │ │ │ │ ├── paths.h │ │ │ │ ├── poll.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pty.h │ │ │ │ ├── pwd.h │ │ │ │ ├── regex.h │ │ │ │ ├── resolv.h │ │ │ │ ├── sched.h │ │ │ │ ├── scsi │ │ │ │ │ ├── scsi.h │ │ │ │ │ ├── scsi_ioctl.h │ │ │ │ │ └── sg.h │ │ │ │ ├── search.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shadow.h │ │ │ │ ├── signal.h │ │ │ │ ├── spawn.h │ │ │ │ ├── stdalign.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stdc-predef.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdio_ext.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── stdnoreturn.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── stropts.h │ │ │ │ ├── sys │ │ │ │ │ ├── acct.h │ │ │ │ │ ├── auxv.h │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── dir.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fanotify.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── fsuid.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── kd.h │ │ │ │ │ ├── klog.h │ │ │ │ │ ├── membarrier.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── mount.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── mtio.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── personality.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── prctl.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── quota.h │ │ │ │ │ ├── random.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── sem.h │ │ │ │ │ ├── sendfile.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── soundcard.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── statvfs.h │ │ │ │ │ ├── stropts.h │ │ │ │ │ ├── swap.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── sysmacros.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── timerfd.h │ │ │ │ │ ├── times.h │ │ │ │ │ ├── timex.h │ │ │ │ │ ├── ttydefaults.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── un.h │ │ │ │ │ ├── user.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── vfs.h │ │ │ │ │ ├── vt.h │ │ │ │ │ ├── wait.h │ │ │ │ │ └── xattr.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysexits.h │ │ │ │ ├── syslog.h │ │ │ │ ├── tar.h │ │ │ │ ├── termios.h │ │ │ │ ├── tgmath.h │ │ │ │ ├── threads.h │ │ │ │ ├── time.h │ │ │ │ ├── uchar.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── ulimit.h │ │ │ │ ├── unistd.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utmpx.h │ │ │ │ ├── values.h │ │ │ │ ├── wait.h │ │ │ │ ├── wchar.h │ │ │ │ ├── wctype.h │ │ │ │ └── wordexp.h │ │ │ ├── ldso │ │ │ │ ├── dlstart.c │ │ │ │ └── dynlink.c │ │ │ ├── src │ │ │ │ ├── aio │ │ │ │ │ ├── aio.c │ │ │ │ │ ├── aio_suspend.c │ │ │ │ │ └── lio_listio.c │ │ │ │ ├── complex │ │ │ │ │ ├── __cexp.c │ │ │ │ │ ├── __cexpf.c │ │ │ │ │ ├── cabs.c │ │ │ │ │ ├── cabsf.c │ │ │ │ │ ├── cabsl.c │ │ │ │ │ ├── cacos.c │ │ │ │ │ ├── cacosf.c │ │ │ │ │ ├── cacosh.c │ │ │ │ │ ├── cacoshf.c │ │ │ │ │ ├── cacoshl.c │ │ │ │ │ ├── cacosl.c │ │ │ │ │ ├── carg.c │ │ │ │ │ ├── cargf.c │ │ │ │ │ ├── cargl.c │ │ │ │ │ ├── casin.c │ │ │ │ │ ├── casinf.c │ │ │ │ │ ├── casinh.c │ │ │ │ │ ├── casinhf.c │ │ │ │ │ ├── casinhl.c │ │ │ │ │ ├── casinl.c │ │ │ │ │ ├── catan.c │ │ │ │ │ ├── catanf.c │ │ │ │ │ ├── catanh.c │ │ │ │ │ ├── catanhf.c │ │ │ │ │ ├── catanhl.c │ │ │ │ │ ├── catanl.c │ │ │ │ │ ├── ccos.c │ │ │ │ │ ├── ccosf.c │ │ │ │ │ ├── ccosh.c │ │ │ │ │ ├── ccoshf.c │ │ │ │ │ ├── ccoshl.c │ │ │ │ │ ├── ccosl.c │ │ │ │ │ ├── cexp.c │ │ │ │ │ ├── cexpf.c │ │ │ │ │ ├── cexpl.c │ │ │ │ │ ├── cimag.c │ │ │ │ │ ├── cimagf.c │ │ │ │ │ ├── cimagl.c │ │ │ │ │ ├── clog.c │ │ │ │ │ ├── clogf.c │ │ │ │ │ ├── clogl.c │ │ │ │ │ ├── conj.c │ │ │ │ │ ├── conjf.c │ │ │ │ │ ├── conjl.c │ │ │ │ │ ├── cpow.c │ │ │ │ │ ├── cpowf.c │ │ │ │ │ ├── cpowl.c │ │ │ │ │ ├── cproj.c │ │ │ │ │ ├── cprojf.c │ │ │ │ │ ├── cprojl.c │ │ │ │ │ ├── creal.c │ │ │ │ │ ├── crealf.c │ │ │ │ │ ├── creall.c │ │ │ │ │ ├── csin.c │ │ │ │ │ ├── csinf.c │ │ │ │ │ ├── csinh.c │ │ │ │ │ ├── csinhf.c │ │ │ │ │ ├── csinhl.c │ │ │ │ │ ├── csinl.c │ │ │ │ │ ├── csqrt.c │ │ │ │ │ ├── csqrtf.c │ │ │ │ │ ├── csqrtl.c │ │ │ │ │ ├── ctan.c │ │ │ │ │ ├── ctanf.c │ │ │ │ │ ├── ctanh.c │ │ │ │ │ ├── ctanhf.c │ │ │ │ │ ├── ctanhl.c │ │ │ │ │ └── ctanl.c │ │ │ │ ├── conf │ │ │ │ │ ├── confstr.c │ │ │ │ │ ├── fpathconf.c │ │ │ │ │ ├── legacy.c │ │ │ │ │ ├── pathconf.c │ │ │ │ │ └── sysconf.c │ │ │ │ ├── crypt │ │ │ │ │ ├── crypt.c │ │ │ │ │ ├── crypt_blowfish.c │ │ │ │ │ ├── crypt_des.c │ │ │ │ │ ├── crypt_des.h │ │ │ │ │ ├── crypt_md5.c │ │ │ │ │ ├── crypt_r.c │ │ │ │ │ ├── crypt_sha256.c │ │ │ │ │ ├── crypt_sha512.c │ │ │ │ │ └── encrypt.c │ │ │ │ ├── ctype │ │ │ │ │ ├── __ctype_b_loc.c │ │ │ │ │ ├── __ctype_get_mb_cur_max.c │ │ │ │ │ ├── __ctype_tolower_loc.c │ │ │ │ │ ├── __ctype_toupper_loc.c │ │ │ │ │ ├── alpha.h │ │ │ │ │ ├── casemap.h │ │ │ │ │ ├── isalnum.c │ │ │ │ │ ├── isalpha.c │ │ │ │ │ ├── isascii.c │ │ │ │ │ ├── isblank.c │ │ │ │ │ ├── iscntrl.c │ │ │ │ │ ├── isdigit.c │ │ │ │ │ ├── isgraph.c │ │ │ │ │ ├── islower.c │ │ │ │ │ ├── isprint.c │ │ │ │ │ ├── ispunct.c │ │ │ │ │ ├── isspace.c │ │ │ │ │ ├── isupper.c │ │ │ │ │ ├── iswalnum.c │ │ │ │ │ ├── iswalpha.c │ │ │ │ │ ├── iswblank.c │ │ │ │ │ ├── iswcntrl.c │ │ │ │ │ ├── iswctype.c │ │ │ │ │ ├── iswdigit.c │ │ │ │ │ ├── iswgraph.c │ │ │ │ │ ├── iswlower.c │ │ │ │ │ ├── iswprint.c │ │ │ │ │ ├── iswpunct.c │ │ │ │ │ ├── iswspace.c │ │ │ │ │ ├── iswupper.c │ │ │ │ │ ├── iswxdigit.c │ │ │ │ │ ├── isxdigit.c │ │ │ │ │ ├── nonspacing.h │ │ │ │ │ ├── punct.h │ │ │ │ │ ├── toascii.c │ │ │ │ │ ├── tolower.c │ │ │ │ │ ├── toupper.c │ │ │ │ │ ├── towctrans.c │ │ │ │ │ ├── wcswidth.c │ │ │ │ │ ├── wctrans.c │ │ │ │ │ ├── wcwidth.c │ │ │ │ │ └── wide.h │ │ │ │ ├── dirent │ │ │ │ │ ├── __dirent.h │ │ │ │ │ ├── alphasort.c │ │ │ │ │ ├── closedir.c │ │ │ │ │ ├── dirfd.c │ │ │ │ │ ├── fdopendir.c │ │ │ │ │ ├── opendir.c │ │ │ │ │ ├── readdir.c │ │ │ │ │ ├── readdir_r.c │ │ │ │ │ ├── rewinddir.c │ │ │ │ │ ├── scandir.c │ │ │ │ │ ├── seekdir.c │ │ │ │ │ ├── telldir.c │ │ │ │ │ └── versionsort.c │ │ │ │ ├── env │ │ │ │ │ ├── __environ.c │ │ │ │ │ ├── __init_tls.c │ │ │ │ │ ├── __libc_start_main.c │ │ │ │ │ ├── __reset_tls.c │ │ │ │ │ ├── __stack_chk_fail.c │ │ │ │ │ ├── clearenv.c │ │ │ │ │ ├── getenv.c │ │ │ │ │ ├── putenv.c │ │ │ │ │ ├── secure_getenv.c │ │ │ │ │ ├── setenv.c │ │ │ │ │ └── unsetenv.c │ │ │ │ ├── errno │ │ │ │ │ ├── __errno_location.c │ │ │ │ │ ├── __strerror.h │ │ │ │ │ └── strerror.c │ │ │ │ ├── exit │ │ │ │ │ ├── _Exit.c │ │ │ │ │ ├── abort.c │ │ │ │ │ ├── abort_lock.c │ │ │ │ │ ├── arm │ │ │ │ │ │ └── __aeabi_atexit.c │ │ │ │ │ ├── assert.c │ │ │ │ │ ├── at_quick_exit.c │ │ │ │ │ ├── atexit.c │ │ │ │ │ ├── exit.c │ │ │ │ │ └── quick_exit.c │ │ │ │ ├── fcntl │ │ │ │ │ ├── creat.c │ │ │ │ │ ├── fcntl.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── openat.c │ │ │ │ │ ├── posix_fadvise.c │ │ │ │ │ └── posix_fallocate.c │ │ │ │ ├── fenv │ │ │ │ │ ├── __flt_rounds.c │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ └── fenv.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── fenv-hf.S │ │ │ │ │ │ └── fenv.c │ │ │ │ │ ├── fegetexceptflag.c │ │ │ │ │ ├── feholdexcept.c │ │ │ │ │ ├── fenv.c │ │ │ │ │ ├── fesetexceptflag.c │ │ │ │ │ ├── fesetround.c │ │ │ │ │ ├── feupdateenv.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ └── fenv.s │ │ │ │ │ ├── m68k │ │ │ │ │ │ └── fenv.c │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── fenv-sf.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── fenv-sf.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── mipsn32 │ │ │ │ │ │ ├── fenv-sf.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── fenv-sf.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ └── fenv.c │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ ├── fenv-sf.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── s390x │ │ │ │ │ │ └── fenv.c │ │ │ │ │ ├── sh │ │ │ │ │ │ ├── fenv-nofpu.c │ │ │ │ │ │ └── fenv.S │ │ │ │ │ ├── x32 │ │ │ │ │ │ └── fenv.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── fenv.s │ │ │ │ ├── include │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.h │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── langinfo.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── resolv.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── membarrier.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ └── time.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ └── wchar.h │ │ │ │ ├── internal │ │ │ │ │ ├── aio_impl.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── complex_impl.h │ │ │ │ │ ├── defsysinfo.c │ │ │ │ │ ├── dynlink.h │ │ │ │ │ ├── fdpic_crt.h │ │ │ │ │ ├── floatscan.c │ │ │ │ │ ├── floatscan.h │ │ │ │ │ ├── fork_impl.h │ │ │ │ │ ├── futex.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ └── defsysinfo.s │ │ │ │ │ ├── intscan.c │ │ │ │ │ ├── intscan.h │ │ │ │ │ ├── ksigaction.h │ │ │ │ │ ├── libc.c │ │ │ │ │ ├── libc.h │ │ │ │ │ ├── libm.h │ │ │ │ │ ├── locale_impl.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── procfdname.c │ │ │ │ │ ├── pthread_impl.h │ │ │ │ │ ├── sh │ │ │ │ │ │ └── __shcall.c │ │ │ │ │ ├── shgetc.c │ │ │ │ │ ├── shgetc.h │ │ │ │ │ ├── stdio_impl.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── syscall_ret.c │ │ │ │ │ ├── vdso.c │ │ │ │ │ └── version.c │ │ │ │ ├── ipc │ │ │ │ │ ├── ftok.c │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── msgctl.c │ │ │ │ │ ├── msgget.c │ │ │ │ │ ├── msgrcv.c │ │ │ │ │ ├── msgsnd.c │ │ │ │ │ ├── semctl.c │ │ │ │ │ ├── semget.c │ │ │ │ │ ├── semop.c │ │ │ │ │ ├── semtimedop.c │ │ │ │ │ ├── shmat.c │ │ │ │ │ ├── shmctl.c │ │ │ │ │ ├── shmdt.c │ │ │ │ │ └── shmget.c │ │ │ │ ├── ldso │ │ │ │ │ ├── __dlsym.c │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── tlsdesc.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ ├── dlsym_time64.S │ │ │ │ │ │ ├── find_exidx.c │ │ │ │ │ │ └── tlsdesc.S │ │ │ │ │ ├── dl_iterate_phdr.c │ │ │ │ │ ├── dladdr.c │ │ │ │ │ ├── dlclose.c │ │ │ │ │ ├── dlerror.c │ │ │ │ │ ├── dlinfo.c │ │ │ │ │ ├── dlopen.c │ │ │ │ │ ├── dlsym.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ ├── dlsym_time64.S │ │ │ │ │ │ └── tlsdesc.s │ │ │ │ │ ├── m68k │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── microblaze │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── mips64 │ │ │ │ │ │ └── dlsym.s │ │ │ │ │ ├── mipsn32 │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── or1k │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ └── dlsym.s │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ └── dlsym.s │ │ │ │ │ ├── s390x │ │ │ │ │ │ └── dlsym.s │ │ │ │ │ ├── sh │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── dlsym_time64.S │ │ │ │ │ ├── tlsdesc.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ └── dlsym.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── dlsym.s │ │ │ │ │ │ └── tlsdesc.s │ │ │ │ ├── legacy │ │ │ │ │ ├── cuserid.c │ │ │ │ │ ├── daemon.c │ │ │ │ │ ├── err.c │ │ │ │ │ ├── euidaccess.c │ │ │ │ │ ├── ftw.c │ │ │ │ │ ├── futimes.c │ │ │ │ │ ├── getdtablesize.c │ │ │ │ │ ├── getloadavg.c │ │ │ │ │ ├── getpagesize.c │ │ │ │ │ ├── getpass.c │ │ │ │ │ ├── getusershell.c │ │ │ │ │ ├── isastream.c │ │ │ │ │ ├── lutimes.c │ │ │ │ │ ├── ulimit.c │ │ │ │ │ ├── utmpx.c │ │ │ │ │ └── valloc.c │ │ │ │ ├── linux │ │ │ │ │ ├── adjtime.c │ │ │ │ │ ├── adjtimex.c │ │ │ │ │ ├── arch_prctl.c │ │ │ │ │ ├── brk.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cap.c │ │ │ │ │ ├── chroot.c │ │ │ │ │ ├── clock_adjtime.c │ │ │ │ │ ├── clone.c │ │ │ │ │ ├── copy_file_range.c │ │ │ │ │ ├── epoll.c │ │ │ │ │ ├── eventfd.c │ │ │ │ │ ├── fallocate.c │ │ │ │ │ ├── fanotify.c │ │ │ │ │ ├── flock.c │ │ │ │ │ ├── getdents.c │ │ │ │ │ ├── getrandom.c │ │ │ │ │ ├── gettid.c │ │ │ │ │ ├── inotify.c │ │ │ │ │ ├── ioperm.c │ │ │ │ │ ├── iopl.c │ │ │ │ │ ├── klogctl.c │ │ │ │ │ ├── membarrier.c │ │ │ │ │ ├── memfd_create.c │ │ │ │ │ ├── mlock2.c │ │ │ │ │ ├── module.c │ │ │ │ │ ├── mount.c │ │ │ │ │ ├── name_to_handle_at.c │ │ │ │ │ ├── open_by_handle_at.c │ │ │ │ │ ├── personality.c │ │ │ │ │ ├── pivot_root.c │ │ │ │ │ ├── ppoll.c │ │ │ │ │ ├── prctl.c │ │ │ │ │ ├── prlimit.c │ │ │ │ │ ├── process_vm.c │ │ │ │ │ ├── ptrace.c │ │ │ │ │ ├── quotactl.c │ │ │ │ │ ├── readahead.c │ │ │ │ │ ├── reboot.c │ │ │ │ │ ├── remap_file_pages.c │ │ │ │ │ ├── sbrk.c │ │ │ │ │ ├── sendfile.c │ │ │ │ │ ├── setfsgid.c │ │ │ │ │ ├── setfsuid.c │ │ │ │ │ ├── setgroups.c │ │ │ │ │ ├── sethostname.c │ │ │ │ │ ├── setns.c │ │ │ │ │ ├── settimeofday.c │ │ │ │ │ ├── signalfd.c │ │ │ │ │ ├── splice.c │ │ │ │ │ ├── stime.c │ │ │ │ │ ├── swap.c │ │ │ │ │ ├── sync_file_range.c │ │ │ │ │ ├── syncfs.c │ │ │ │ │ ├── sysinfo.c │ │ │ │ │ ├── tee.c │ │ │ │ │ ├── timerfd.c │ │ │ │ │ ├── unshare.c │ │ │ │ │ ├── utimes.c │ │ │ │ │ ├── vhangup.c │ │ │ │ │ ├── vmsplice.c │ │ │ │ │ ├── wait3.c │ │ │ │ │ ├── wait4.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ └── sysinfo.c │ │ │ │ │ └── xattr.c │ │ │ │ ├── locale │ │ │ │ │ ├── __lctrans.c │ │ │ │ │ ├── __mo_lookup.c │ │ │ │ │ ├── big5.h │ │ │ │ │ ├── bind_textdomain_codeset.c │ │ │ │ │ ├── c_locale.c │ │ │ │ │ ├── catclose.c │ │ │ │ │ ├── catgets.c │ │ │ │ │ ├── catopen.c │ │ │ │ │ ├── codepages.h │ │ │ │ │ ├── dcngettext.c │ │ │ │ │ ├── duplocale.c │ │ │ │ │ ├── freelocale.c │ │ │ │ │ ├── gb18030.h │ │ │ │ │ ├── hkscs.h │ │ │ │ │ ├── iconv.c │ │ │ │ │ ├── iconv_close.c │ │ │ │ │ ├── jis0208.h │ │ │ │ │ ├── ksc.h │ │ │ │ │ ├── langinfo.c │ │ │ │ │ ├── legacychars.h │ │ │ │ │ ├── locale_map.c │ │ │ │ │ ├── localeconv.c │ │ │ │ │ ├── newlocale.c │ │ │ │ │ ├── pleval.c │ │ │ │ │ ├── pleval.h │ │ │ │ │ ├── revjis.h │ │ │ │ │ ├── setlocale.c │ │ │ │ │ ├── strcoll.c │ │ │ │ │ ├── strfmon.c │ │ │ │ │ ├── strtod_l.c │ │ │ │ │ ├── strxfrm.c │ │ │ │ │ ├── textdomain.c │ │ │ │ │ ├── uselocale.c │ │ │ │ │ ├── wcscoll.c │ │ │ │ │ └── wcsxfrm.c │ │ │ │ ├── malloc │ │ │ │ │ ├── calloc.c │ │ │ │ │ ├── free.c │ │ │ │ │ ├── libc_calloc.c │ │ │ │ │ ├── lite_malloc.c │ │ │ │ │ ├── mallocng │ │ │ │ │ │ ├── aligned_alloc.c │ │ │ │ │ │ ├── donate.c │ │ │ │ │ │ ├── free.c │ │ │ │ │ │ ├── glue.h │ │ │ │ │ │ ├── malloc.c │ │ │ │ │ │ ├── malloc_usable_size.c │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ └── realloc.c │ │ │ │ │ ├── memalign.c │ │ │ │ │ ├── oldmalloc │ │ │ │ │ │ ├── aligned_alloc.c │ │ │ │ │ │ ├── malloc.c │ │ │ │ │ │ ├── malloc_impl.h │ │ │ │ │ │ └── malloc_usable_size.c │ │ │ │ │ ├── posix_memalign.c │ │ │ │ │ ├── realloc.c │ │ │ │ │ ├── reallocarray.c │ │ │ │ │ └── replaced.c │ │ │ │ ├── math │ │ │ │ │ ├── __cos.c │ │ │ │ │ ├── __cosdf.c │ │ │ │ │ ├── __cosl.c │ │ │ │ │ ├── __expo2.c │ │ │ │ │ ├── __expo2f.c │ │ │ │ │ ├── __fpclassify.c │ │ │ │ │ ├── __fpclassifyf.c │ │ │ │ │ ├── __fpclassifyl.c │ │ │ │ │ ├── __invtrigl.c │ │ │ │ │ ├── __invtrigl.h │ │ │ │ │ ├── __math_divzero.c │ │ │ │ │ ├── __math_divzerof.c │ │ │ │ │ ├── __math_invalid.c │ │ │ │ │ ├── __math_invalidf.c │ │ │ │ │ ├── __math_invalidl.c │ │ │ │ │ ├── __math_oflow.c │ │ │ │ │ ├── __math_oflowf.c │ │ │ │ │ ├── __math_uflow.c │ │ │ │ │ ├── __math_uflowf.c │ │ │ │ │ ├── __math_xflow.c │ │ │ │ │ ├── __math_xflowf.c │ │ │ │ │ ├── __polevll.c │ │ │ │ │ ├── __rem_pio2.c │ │ │ │ │ ├── __rem_pio2_large.c │ │ │ │ │ ├── __rem_pio2f.c │ │ │ │ │ ├── __rem_pio2l.c │ │ │ │ │ ├── __signbit.c │ │ │ │ │ ├── __signbitf.c │ │ │ │ │ ├── __signbitl.c │ │ │ │ │ ├── __sin.c │ │ │ │ │ ├── __sindf.c │ │ │ │ │ ├── __sinl.c │ │ │ │ │ ├── __tan.c │ │ │ │ │ ├── __tandf.c │ │ │ │ │ ├── __tanl.c │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── ceil.c │ │ │ │ │ │ ├── ceilf.c │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── floor.c │ │ │ │ │ │ ├── floorf.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── fmax.c │ │ │ │ │ │ ├── fmaxf.c │ │ │ │ │ │ ├── fmin.c │ │ │ │ │ │ ├── fminf.c │ │ │ │ │ │ ├── llrint.c │ │ │ │ │ │ ├── llrintf.c │ │ │ │ │ │ ├── llround.c │ │ │ │ │ │ ├── llroundf.c │ │ │ │ │ │ ├── lrint.c │ │ │ │ │ │ ├── lrintf.c │ │ │ │ │ │ ├── lround.c │ │ │ │ │ │ ├── lroundf.c │ │ │ │ │ │ ├── nearbyint.c │ │ │ │ │ │ ├── nearbyintf.c │ │ │ │ │ │ ├── rint.c │ │ │ │ │ │ ├── rintf.c │ │ │ │ │ │ ├── round.c │ │ │ │ │ │ ├── roundf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ │ ├── trunc.c │ │ │ │ │ │ └── truncf.c │ │ │ │ │ ├── acos.c │ │ │ │ │ ├── acosf.c │ │ │ │ │ ├── acosh.c │ │ │ │ │ ├── acoshf.c │ │ │ │ │ ├── acoshl.c │ │ │ │ │ ├── acosl.c │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ └── sqrtf.c │ │ │ │ │ ├── asin.c │ │ │ │ │ ├── asinf.c │ │ │ │ │ ├── asinh.c │ │ │ │ │ ├── asinhf.c │ │ │ │ │ ├── asinhl.c │ │ │ │ │ ├── asinl.c │ │ │ │ │ ├── atan.c │ │ │ │ │ ├── atan2.c │ │ │ │ │ ├── atan2f.c │ │ │ │ │ ├── atan2l.c │ │ │ │ │ ├── atanf.c │ │ │ │ │ ├── atanh.c │ │ │ │ │ ├── atanhf.c │ │ │ │ │ ├── atanhl.c │ │ │ │ │ ├── atanl.c │ │ │ │ │ ├── cbrt.c │ │ │ │ │ ├── cbrtf.c │ │ │ │ │ ├── cbrtl.c │ │ │ │ │ ├── ceil.c │ │ │ │ │ ├── ceilf.c │ │ │ │ │ ├── ceill.c │ │ │ │ │ ├── copysign.c │ │ │ │ │ ├── copysignf.c │ │ │ │ │ ├── copysignl.c │ │ │ │ │ ├── cos.c │ │ │ │ │ ├── cosf.c │ │ │ │ │ ├── cosh.c │ │ │ │ │ ├── coshf.c │ │ │ │ │ ├── coshl.c │ │ │ │ │ ├── cosl.c │ │ │ │ │ ├── erf.c │ │ │ │ │ ├── erff.c │ │ │ │ │ ├── erfl.c │ │ │ │ │ ├── exp.c │ │ │ │ │ ├── exp10.c │ │ │ │ │ ├── exp10f.c │ │ │ │ │ ├── exp10l.c │ │ │ │ │ ├── exp2.c │ │ │ │ │ ├── exp2f.c │ │ │ │ │ ├── exp2f_data.c │ │ │ │ │ ├── exp2f_data.h │ │ │ │ │ ├── exp2l.c │ │ │ │ │ ├── exp_data.c │ │ │ │ │ ├── exp_data.h │ │ │ │ │ ├── expf.c │ │ │ │ │ ├── expl.c │ │ │ │ │ ├── expm1.c │ │ │ │ │ ├── expm1f.c │ │ │ │ │ ├── expm1l.c │ │ │ │ │ ├── fabs.c │ │ │ │ │ ├── fabsf.c │ │ │ │ │ ├── fabsl.c │ │ │ │ │ ├── fdim.c │ │ │ │ │ ├── fdimf.c │ │ │ │ │ ├── fdiml.c │ │ │ │ │ ├── finite.c │ │ │ │ │ ├── finitef.c │ │ │ │ │ ├── floor.c │ │ │ │ │ ├── floorf.c │ │ │ │ │ ├── floorl.c │ │ │ │ │ ├── fma.c │ │ │ │ │ ├── fmaf.c │ │ │ │ │ ├── fmal.c │ │ │ │ │ ├── fmax.c │ │ │ │ │ ├── fmaxf.c │ │ │ │ │ ├── fmaxl.c │ │ │ │ │ ├── fmin.c │ │ │ │ │ ├── fminf.c │ │ │ │ │ ├── fminl.c │ │ │ │ │ ├── fmod.c │ │ │ │ │ ├── fmodf.c │ │ │ │ │ ├── fmodl.c │ │ │ │ │ ├── frexp.c │ │ │ │ │ ├── frexpf.c │ │ │ │ │ ├── frexpl.c │ │ │ │ │ ├── hypot.c │ │ │ │ │ ├── hypotf.c │ │ │ │ │ ├── hypotl.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── __invtrigl.s │ │ │ │ │ │ ├── acos.s │ │ │ │ │ │ ├── acosf.s │ │ │ │ │ │ ├── acosl.s │ │ │ │ │ │ ├── asin.s │ │ │ │ │ │ ├── asinf.s │ │ │ │ │ │ ├── asinl.s │ │ │ │ │ │ ├── atan.s │ │ │ │ │ │ ├── atan2.s │ │ │ │ │ │ ├── atan2f.s │ │ │ │ │ │ ├── atan2l.s │ │ │ │ │ │ ├── atanf.s │ │ │ │ │ │ ├── atanl.s │ │ │ │ │ │ ├── ceil.s │ │ │ │ │ │ ├── ceilf.s │ │ │ │ │ │ ├── ceill.s │ │ │ │ │ │ ├── exp2l.s │ │ │ │ │ │ ├── exp_ld.s │ │ │ │ │ │ ├── expl.s │ │ │ │ │ │ ├── expm1l.s │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fabsl.c │ │ │ │ │ │ ├── floor.s │ │ │ │ │ │ ├── floorf.s │ │ │ │ │ │ ├── floorl.s │ │ │ │ │ │ ├── fmod.c │ │ │ │ │ │ ├── fmodf.c │ │ │ │ │ │ ├── fmodl.c │ │ │ │ │ │ ├── hypot.s │ │ │ │ │ │ ├── hypotf.s │ │ │ │ │ │ ├── ldexp.s │ │ │ │ │ │ ├── ldexpf.s │ │ │ │ │ │ ├── ldexpl.s │ │ │ │ │ │ ├── llrint.c │ │ │ │ │ │ ├── llrintf.c │ │ │ │ │ │ ├── llrintl.c │ │ │ │ │ │ ├── log.s │ │ │ │ │ │ ├── log10.s │ │ │ │ │ │ ├── log10f.s │ │ │ │ │ │ ├── log10l.s │ │ │ │ │ │ ├── log1p.s │ │ │ │ │ │ ├── log1pf.s │ │ │ │ │ │ ├── log1pl.s │ │ │ │ │ │ ├── log2.s │ │ │ │ │ │ ├── log2f.s │ │ │ │ │ │ ├── log2l.s │ │ │ │ │ │ ├── logf.s │ │ │ │ │ │ ├── logl.s │ │ │ │ │ │ ├── lrint.c │ │ │ │ │ │ ├── lrintf.c │ │ │ │ │ │ ├── lrintl.c │ │ │ │ │ │ ├── remainder.c │ │ │ │ │ │ ├── remainderf.c │ │ │ │ │ │ ├── remainderl.c │ │ │ │ │ │ ├── remquo.s │ │ │ │ │ │ ├── remquof.s │ │ │ │ │ │ ├── remquol.s │ │ │ │ │ │ ├── rint.c │ │ │ │ │ │ ├── rintf.c │ │ │ │ │ │ ├── rintl.c │ │ │ │ │ │ ├── scalbln.s │ │ │ │ │ │ ├── scalblnf.s │ │ │ │ │ │ ├── scalblnl.s │ │ │ │ │ │ ├── scalbn.s │ │ │ │ │ │ ├── scalbnf.s │ │ │ │ │ │ ├── scalbnl.s │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ │ ├── sqrtl.c │ │ │ │ │ │ ├── trunc.s │ │ │ │ │ │ ├── truncf.s │ │ │ │ │ │ └── truncl.s │ │ │ │ │ ├── ilogb.c │ │ │ │ │ ├── ilogbf.c │ │ │ │ │ ├── ilogbl.c │ │ │ │ │ ├── j0.c │ │ │ │ │ ├── j0f.c │ │ │ │ │ ├── j1.c │ │ │ │ │ ├── j1f.c │ │ │ │ │ ├── jn.c │ │ │ │ │ ├── jnf.c │ │ │ │ │ ├── ldexp.c │ │ │ │ │ ├── ldexpf.c │ │ │ │ │ ├── ldexpl.c │ │ │ │ │ ├── lgamma.c │ │ │ │ │ ├── lgamma_r.c │ │ │ │ │ ├── lgammaf.c │ │ │ │ │ ├── lgammaf_r.c │ │ │ │ │ ├── lgammal.c │ │ │ │ │ ├── llrint.c │ │ │ │ │ ├── llrintf.c │ │ │ │ │ ├── llrintl.c │ │ │ │ │ ├── llround.c │ │ │ │ │ ├── llroundf.c │ │ │ │ │ ├── llroundl.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── log10.c │ │ │ │ │ ├── log10f.c │ │ │ │ │ ├── log10l.c │ │ │ │ │ ├── log1p.c │ │ │ │ │ ├── log1pf.c │ │ │ │ │ ├── log1pl.c │ │ │ │ │ ├── log2.c │ │ │ │ │ ├── log2_data.c │ │ │ │ │ ├── log2_data.h │ │ │ │ │ ├── log2f.c │ │ │ │ │ ├── log2f_data.c │ │ │ │ │ ├── log2f_data.h │ │ │ │ │ ├── log2l.c │ │ │ │ │ ├── log_data.c │ │ │ │ │ ├── log_data.h │ │ │ │ │ ├── logb.c │ │ │ │ │ ├── logbf.c │ │ │ │ │ ├── logbl.c │ │ │ │ │ ├── logf.c │ │ │ │ │ ├── logf_data.c │ │ │ │ │ ├── logf_data.h │ │ │ │ │ ├── logl.c │ │ │ │ │ ├── lrint.c │ │ │ │ │ ├── lrintf.c │ │ │ │ │ ├── lrintl.c │ │ │ │ │ ├── lround.c │ │ │ │ │ ├── lroundf.c │ │ │ │ │ ├── lroundl.c │ │ │ │ │ ├── m68k │ │ │ │ │ │ └── sqrtl.c │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ └── sqrtf.c │ │ │ │ │ ├── modf.c │ │ │ │ │ ├── modff.c │ │ │ │ │ ├── modfl.c │ │ │ │ │ ├── nan.c │ │ │ │ │ ├── nanf.c │ │ │ │ │ ├── nanl.c │ │ │ │ │ ├── nearbyint.c │ │ │ │ │ ├── nearbyintf.c │ │ │ │ │ ├── nearbyintl.c │ │ │ │ │ ├── nextafter.c │ │ │ │ │ ├── nextafterf.c │ │ │ │ │ ├── nextafterl.c │ │ │ │ │ ├── nexttoward.c │ │ │ │ │ ├── nexttowardf.c │ │ │ │ │ ├── nexttowardl.c │ │ │ │ │ ├── pow.c │ │ │ │ │ ├── pow_data.c │ │ │ │ │ ├── pow_data.h │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ └── sqrtf.c │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ ├── ceil.c │ │ │ │ │ │ ├── ceilf.c │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── floor.c │ │ │ │ │ │ ├── floorf.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── fmax.c │ │ │ │ │ │ ├── fmaxf.c │ │ │ │ │ │ ├── fmin.c │ │ │ │ │ │ ├── fminf.c │ │ │ │ │ │ ├── lrint.c │ │ │ │ │ │ ├── lrintf.c │ │ │ │ │ │ ├── lround.c │ │ │ │ │ │ ├── lroundf.c │ │ │ │ │ │ ├── round.c │ │ │ │ │ │ ├── roundf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ │ ├── trunc.c │ │ │ │ │ │ └── truncf.c │ │ │ │ │ ├── powf.c │ │ │ │ │ ├── powf_data.c │ │ │ │ │ ├── powf_data.h │ │ │ │ │ ├── powl.c │ │ │ │ │ ├── remainder.c │ │ │ │ │ ├── remainderf.c │ │ │ │ │ ├── remainderl.c │ │ │ │ │ ├── remquo.c │ │ │ │ │ ├── remquof.c │ │ │ │ │ ├── remquol.c │ │ │ │ │ ├── rint.c │ │ │ │ │ ├── rintf.c │ │ │ │ │ ├── rintl.c │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ ├── copysign.c │ │ │ │ │ │ ├── copysignf.c │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── fmax.c │ │ │ │ │ │ ├── fmaxf.c │ │ │ │ │ │ ├── fmin.c │ │ │ │ │ │ ├── fminf.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ └── sqrtf.c │ │ │ │ │ ├── round.c │ │ │ │ │ ├── roundf.c │ │ │ │ │ ├── roundl.c │ │ │ │ │ ├── s390x │ │ │ │ │ │ ├── ceil.c │ │ │ │ │ │ ├── ceilf.c │ │ │ │ │ │ ├── ceill.c │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fabsl.c │ │ │ │ │ │ ├── floor.c │ │ │ │ │ │ ├── floorf.c │ │ │ │ │ │ ├── floorl.c │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── nearbyint.c │ │ │ │ │ │ ├── nearbyintf.c │ │ │ │ │ │ ├── nearbyintl.c │ │ │ │ │ │ ├── rint.c │ │ │ │ │ │ ├── rintf.c │ │ │ │ │ │ ├── rintl.c │ │ │ │ │ │ ├── round.c │ │ │ │ │ │ ├── roundf.c │ │ │ │ │ │ ├── roundl.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ │ ├── sqrtl.c │ │ │ │ │ │ ├── trunc.c │ │ │ │ │ │ ├── truncf.c │ │ │ │ │ │ └── truncl.c │ │ │ │ │ ├── scalb.c │ │ │ │ │ ├── scalbf.c │ │ │ │ │ ├── scalbln.c │ │ │ │ │ ├── scalblnf.c │ │ │ │ │ ├── scalblnl.c │ │ │ │ │ ├── scalbn.c │ │ │ │ │ ├── scalbnf.c │ │ │ │ │ ├── scalbnl.c │ │ │ │ │ ├── signgam.c │ │ │ │ │ ├── significand.c │ │ │ │ │ ├── significandf.c │ │ │ │ │ ├── sin.c │ │ │ │ │ ├── sincos.c │ │ │ │ │ ├── sincosf.c │ │ │ │ │ ├── sincosl.c │ │ │ │ │ ├── sinf.c │ │ │ │ │ ├── sinh.c │ │ │ │ │ ├── sinhf.c │ │ │ │ │ ├── sinhl.c │ │ │ │ │ ├── sinl.c │ │ │ │ │ ├── sqrt.c │ │ │ │ │ ├── sqrt_data.c │ │ │ │ │ ├── sqrt_data.h │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ ├── sqrtl.c │ │ │ │ │ ├── tan.c │ │ │ │ │ ├── tanf.c │ │ │ │ │ ├── tanh.c │ │ │ │ │ ├── tanhf.c │ │ │ │ │ ├── tanhl.c │ │ │ │ │ ├── tanl.c │ │ │ │ │ ├── tgamma.c │ │ │ │ │ ├── tgammaf.c │ │ │ │ │ ├── tgammal.c │ │ │ │ │ ├── trunc.c │ │ │ │ │ ├── truncf.c │ │ │ │ │ ├── truncl.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ ├── __invtrigl.s │ │ │ │ │ │ ├── acosl.s │ │ │ │ │ │ ├── asinl.s │ │ │ │ │ │ ├── atan2l.s │ │ │ │ │ │ ├── atanl.s │ │ │ │ │ │ ├── ceill.s │ │ │ │ │ │ ├── exp2l.s │ │ │ │ │ │ ├── expl.s │ │ │ │ │ │ ├── expm1l.s │ │ │ │ │ │ ├── fabs.s │ │ │ │ │ │ ├── fabsf.s │ │ │ │ │ │ ├── fabsl.s │ │ │ │ │ │ ├── floorl.s │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── fmodl.s │ │ │ │ │ │ ├── llrint.s │ │ │ │ │ │ ├── llrintf.s │ │ │ │ │ │ ├── llrintl.s │ │ │ │ │ │ ├── log10l.s │ │ │ │ │ │ ├── log1pl.s │ │ │ │ │ │ ├── log2l.s │ │ │ │ │ │ ├── logl.s │ │ │ │ │ │ ├── lrint.s │ │ │ │ │ │ ├── lrintf.s │ │ │ │ │ │ ├── lrintl.s │ │ │ │ │ │ ├── remainderl.s │ │ │ │ │ │ ├── rintl.s │ │ │ │ │ │ ├── sqrt.s │ │ │ │ │ │ ├── sqrtf.s │ │ │ │ │ │ ├── sqrtl.s │ │ │ │ │ │ └── truncl.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── __invtrigl.s │ │ │ │ │ │ ├── acosl.s │ │ │ │ │ │ ├── asinl.s │ │ │ │ │ │ ├── atan2l.s │ │ │ │ │ │ ├── atanl.s │ │ │ │ │ │ ├── ceill.s │ │ │ │ │ │ ├── exp2l.s │ │ │ │ │ │ ├── expl.s │ │ │ │ │ │ ├── expm1l.s │ │ │ │ │ │ ├── fabs.c │ │ │ │ │ │ ├── fabsf.c │ │ │ │ │ │ ├── fabsl.c │ │ │ │ │ │ ├── floorl.s │ │ │ │ │ │ ├── fma.c │ │ │ │ │ │ ├── fmaf.c │ │ │ │ │ │ ├── fmodl.c │ │ │ │ │ │ ├── llrint.c │ │ │ │ │ │ ├── llrintf.c │ │ │ │ │ │ ├── llrintl.c │ │ │ │ │ │ ├── log10l.s │ │ │ │ │ │ ├── log1pl.s │ │ │ │ │ │ ├── log2l.s │ │ │ │ │ │ ├── logl.s │ │ │ │ │ │ ├── lrint.c │ │ │ │ │ │ ├── lrintf.c │ │ │ │ │ │ ├── lrintl.c │ │ │ │ │ │ ├── remainderl.c │ │ │ │ │ │ ├── remquol.c │ │ │ │ │ │ ├── rintl.c │ │ │ │ │ │ ├── sqrt.c │ │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ │ ├── sqrtl.c │ │ │ │ │ │ └── truncl.s │ │ │ │ ├── misc │ │ │ │ │ ├── a64l.c │ │ │ │ │ ├── basename.c │ │ │ │ │ ├── dirname.c │ │ │ │ │ ├── ffs.c │ │ │ │ │ ├── ffsl.c │ │ │ │ │ ├── ffsll.c │ │ │ │ │ ├── fmtmsg.c │ │ │ │ │ ├── forkpty.c │ │ │ │ │ ├── get_current_dir_name.c │ │ │ │ │ ├── getauxval.c │ │ │ │ │ ├── getdomainname.c │ │ │ │ │ ├── getentropy.c │ │ │ │ │ ├── gethostid.c │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── getopt_long.c │ │ │ │ │ ├── getpriority.c │ │ │ │ │ ├── getresgid.c │ │ │ │ │ ├── getresuid.c │ │ │ │ │ ├── getrlimit.c │ │ │ │ │ ├── getrusage.c │ │ │ │ │ ├── getsubopt.c │ │ │ │ │ ├── initgroups.c │ │ │ │ │ ├── ioctl.c │ │ │ │ │ ├── issetugid.c │ │ │ │ │ ├── lockf.c │ │ │ │ │ ├── login_tty.c │ │ │ │ │ ├── mntent.c │ │ │ │ │ ├── nftw.c │ │ │ │ │ ├── openpty.c │ │ │ │ │ ├── ptsname.c │ │ │ │ │ ├── pty.c │ │ │ │ │ ├── realpath.c │ │ │ │ │ ├── setdomainname.c │ │ │ │ │ ├── setpriority.c │ │ │ │ │ ├── setrlimit.c │ │ │ │ │ ├── syscall.c │ │ │ │ │ ├── syslog.c │ │ │ │ │ ├── uname.c │ │ │ │ │ └── wordexp.c │ │ │ │ ├── mman │ │ │ │ │ ├── madvise.c │ │ │ │ │ ├── mincore.c │ │ │ │ │ ├── mlock.c │ │ │ │ │ ├── mlockall.c │ │ │ │ │ ├── mmap.c │ │ │ │ │ ├── mprotect.c │ │ │ │ │ ├── mremap.c │ │ │ │ │ ├── msync.c │ │ │ │ │ ├── munlock.c │ │ │ │ │ ├── munlockall.c │ │ │ │ │ ├── munmap.c │ │ │ │ │ ├── posix_madvise.c │ │ │ │ │ └── shm_open.c │ │ │ │ ├── mq │ │ │ │ │ ├── mq_close.c │ │ │ │ │ ├── mq_getattr.c │ │ │ │ │ ├── mq_notify.c │ │ │ │ │ ├── mq_open.c │ │ │ │ │ ├── mq_receive.c │ │ │ │ │ ├── mq_send.c │ │ │ │ │ ├── mq_setattr.c │ │ │ │ │ ├── mq_timedreceive.c │ │ │ │ │ ├── mq_timedsend.c │ │ │ │ │ └── mq_unlink.c │ │ │ │ ├── multibyte │ │ │ │ │ ├── btowc.c │ │ │ │ │ ├── c16rtomb.c │ │ │ │ │ ├── c32rtomb.c │ │ │ │ │ ├── internal.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── mblen.c │ │ │ │ │ ├── mbrlen.c │ │ │ │ │ ├── mbrtoc16.c │ │ │ │ │ ├── mbrtoc32.c │ │ │ │ │ ├── mbrtowc.c │ │ │ │ │ ├── mbsinit.c │ │ │ │ │ ├── mbsnrtowcs.c │ │ │ │ │ ├── mbsrtowcs.c │ │ │ │ │ ├── mbstowcs.c │ │ │ │ │ ├── mbtowc.c │ │ │ │ │ ├── wcrtomb.c │ │ │ │ │ ├── wcsnrtombs.c │ │ │ │ │ ├── wcsrtombs.c │ │ │ │ │ ├── wcstombs.c │ │ │ │ │ ├── wctob.c │ │ │ │ │ └── wctomb.c │ │ │ │ ├── network │ │ │ │ │ ├── accept.c │ │ │ │ │ ├── accept4.c │ │ │ │ │ ├── bind.c │ │ │ │ │ ├── connect.c │ │ │ │ │ ├── dn_comp.c │ │ │ │ │ ├── dn_expand.c │ │ │ │ │ ├── dn_skipname.c │ │ │ │ │ ├── dns_parse.c │ │ │ │ │ ├── ent.c │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── freeaddrinfo.c │ │ │ │ │ ├── gai_strerror.c │ │ │ │ │ ├── getaddrinfo.c │ │ │ │ │ ├── gethostbyaddr.c │ │ │ │ │ ├── gethostbyaddr_r.c │ │ │ │ │ ├── gethostbyname.c │ │ │ │ │ ├── gethostbyname2.c │ │ │ │ │ ├── gethostbyname2_r.c │ │ │ │ │ ├── gethostbyname_r.c │ │ │ │ │ ├── getifaddrs.c │ │ │ │ │ ├── getnameinfo.c │ │ │ │ │ ├── getpeername.c │ │ │ │ │ ├── getservbyname.c │ │ │ │ │ ├── getservbyname_r.c │ │ │ │ │ ├── getservbyport.c │ │ │ │ │ ├── getservbyport_r.c │ │ │ │ │ ├── getsockname.c │ │ │ │ │ ├── getsockopt.c │ │ │ │ │ ├── h_errno.c │ │ │ │ │ ├── herror.c │ │ │ │ │ ├── hstrerror.c │ │ │ │ │ ├── htonl.c │ │ │ │ │ ├── htons.c │ │ │ │ │ ├── if_freenameindex.c │ │ │ │ │ ├── if_indextoname.c │ │ │ │ │ ├── if_nameindex.c │ │ │ │ │ ├── if_nametoindex.c │ │ │ │ │ ├── in6addr_any.c │ │ │ │ │ ├── in6addr_loopback.c │ │ │ │ │ ├── inet_addr.c │ │ │ │ │ ├── inet_aton.c │ │ │ │ │ ├── inet_legacy.c │ │ │ │ │ ├── inet_ntoa.c │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── inet_pton.c │ │ │ │ │ ├── listen.c │ │ │ │ │ ├── lookup.h │ │ │ │ │ ├── lookup_ipliteral.c │ │ │ │ │ ├── lookup_name.c │ │ │ │ │ ├── lookup_serv.c │ │ │ │ │ ├── netlink.c │ │ │ │ │ ├── netlink.h │ │ │ │ │ ├── netname.c │ │ │ │ │ ├── ns_parse.c │ │ │ │ │ ├── ntohl.c │ │ │ │ │ ├── ntohs.c │ │ │ │ │ ├── proto.c │ │ │ │ │ ├── recv.c │ │ │ │ │ ├── recvfrom.c │ │ │ │ │ ├── recvmmsg.c │ │ │ │ │ ├── recvmsg.c │ │ │ │ │ ├── res_init.c │ │ │ │ │ ├── res_mkquery.c │ │ │ │ │ ├── res_msend.c │ │ │ │ │ ├── res_query.c │ │ │ │ │ ├── res_querydomain.c │ │ │ │ │ ├── res_send.c │ │ │ │ │ ├── res_state.c │ │ │ │ │ ├── resolvconf.c │ │ │ │ │ ├── send.c │ │ │ │ │ ├── sendmmsg.c │ │ │ │ │ ├── sendmsg.c │ │ │ │ │ ├── sendto.c │ │ │ │ │ ├── serv.c │ │ │ │ │ ├── setsockopt.c │ │ │ │ │ ├── shutdown.c │ │ │ │ │ ├── sockatmark.c │ │ │ │ │ ├── socket.c │ │ │ │ │ └── socketpair.c │ │ │ │ ├── passwd │ │ │ │ │ ├── fgetgrent.c │ │ │ │ │ ├── fgetpwent.c │ │ │ │ │ ├── fgetspent.c │ │ │ │ │ ├── getgr_a.c │ │ │ │ │ ├── getgr_r.c │ │ │ │ │ ├── getgrent.c │ │ │ │ │ ├── getgrent_a.c │ │ │ │ │ ├── getgrouplist.c │ │ │ │ │ ├── getpw_a.c │ │ │ │ │ ├── getpw_r.c │ │ │ │ │ ├── getpwent.c │ │ │ │ │ ├── getpwent_a.c │ │ │ │ │ ├── getspent.c │ │ │ │ │ ├── getspnam.c │ │ │ │ │ ├── getspnam_r.c │ │ │ │ │ ├── lckpwdf.c │ │ │ │ │ ├── nscd.h │ │ │ │ │ ├── nscd_query.c │ │ │ │ │ ├── putgrent.c │ │ │ │ │ ├── putpwent.c │ │ │ │ │ ├── putspent.c │ │ │ │ │ └── pwf.h │ │ │ │ ├── prng │ │ │ │ │ ├── __rand48_step.c │ │ │ │ │ ├── __seed48.c │ │ │ │ │ ├── drand48.c │ │ │ │ │ ├── lcong48.c │ │ │ │ │ ├── lrand48.c │ │ │ │ │ ├── mrand48.c │ │ │ │ │ ├── rand.c │ │ │ │ │ ├── rand48.h │ │ │ │ │ ├── rand_r.c │ │ │ │ │ ├── random.c │ │ │ │ │ ├── seed48.c │ │ │ │ │ └── srand48.c │ │ │ │ ├── process │ │ │ │ │ ├── _Fork.c │ │ │ │ │ ├── arm │ │ │ │ │ │ └── vfork.s │ │ │ │ │ ├── execl.c │ │ │ │ │ ├── execle.c │ │ │ │ │ ├── execlp.c │ │ │ │ │ ├── execv.c │ │ │ │ │ ├── execve.c │ │ │ │ │ ├── execvp.c │ │ │ │ │ ├── fdop.h │ │ │ │ │ ├── fexecve.c │ │ │ │ │ ├── fork.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ └── vfork.s │ │ │ │ │ ├── posix_spawn.c │ │ │ │ │ ├── posix_spawn_file_actions_addchdir.c │ │ │ │ │ ├── posix_spawn_file_actions_addclose.c │ │ │ │ │ ├── posix_spawn_file_actions_adddup2.c │ │ │ │ │ ├── posix_spawn_file_actions_addfchdir.c │ │ │ │ │ ├── posix_spawn_file_actions_addopen.c │ │ │ │ │ ├── posix_spawn_file_actions_destroy.c │ │ │ │ │ ├── posix_spawn_file_actions_init.c │ │ │ │ │ ├── posix_spawnattr_destroy.c │ │ │ │ │ ├── posix_spawnattr_getflags.c │ │ │ │ │ ├── posix_spawnattr_getpgroup.c │ │ │ │ │ ├── posix_spawnattr_getsigdefault.c │ │ │ │ │ ├── posix_spawnattr_getsigmask.c │ │ │ │ │ ├── posix_spawnattr_init.c │ │ │ │ │ ├── posix_spawnattr_sched.c │ │ │ │ │ ├── posix_spawnattr_setflags.c │ │ │ │ │ ├── posix_spawnattr_setpgroup.c │ │ │ │ │ ├── posix_spawnattr_setsigdefault.c │ │ │ │ │ ├── posix_spawnattr_setsigmask.c │ │ │ │ │ ├── posix_spawnp.c │ │ │ │ │ ├── s390x │ │ │ │ │ │ └── vfork.s │ │ │ │ │ ├── sh │ │ │ │ │ │ └── vfork.s │ │ │ │ │ ├── system.c │ │ │ │ │ ├── vfork.c │ │ │ │ │ ├── wait.c │ │ │ │ │ ├── waitid.c │ │ │ │ │ ├── waitpid.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ └── vfork.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── vfork.s │ │ │ │ ├── regex │ │ │ │ │ ├── fnmatch.c │ │ │ │ │ ├── glob.c │ │ │ │ │ ├── regcomp.c │ │ │ │ │ ├── regerror.c │ │ │ │ │ ├── regexec.c │ │ │ │ │ ├── tre-mem.c │ │ │ │ │ └── tre.h │ │ │ │ ├── sched │ │ │ │ │ ├── affinity.c │ │ │ │ │ ├── sched_cpucount.c │ │ │ │ │ ├── sched_get_priority_max.c │ │ │ │ │ ├── sched_getcpu.c │ │ │ │ │ ├── sched_getparam.c │ │ │ │ │ ├── sched_getscheduler.c │ │ │ │ │ ├── sched_rr_get_interval.c │ │ │ │ │ ├── sched_setparam.c │ │ │ │ │ ├── sched_setscheduler.c │ │ │ │ │ └── sched_yield.c │ │ │ │ ├── search │ │ │ │ │ ├── hsearch.c │ │ │ │ │ ├── insque.c │ │ │ │ │ ├── lsearch.c │ │ │ │ │ ├── tdelete.c │ │ │ │ │ ├── tdestroy.c │ │ │ │ │ ├── tfind.c │ │ │ │ │ ├── tsearch.c │ │ │ │ │ ├── tsearch.h │ │ │ │ │ └── twalk.c │ │ │ │ ├── select │ │ │ │ │ ├── poll.c │ │ │ │ │ ├── pselect.c │ │ │ │ │ └── select.c │ │ │ │ ├── setjmp │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── longjmp.c │ │ │ │ │ ├── m68k │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── microblaze │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── mipsn32 │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── or1k │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── s390x │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ ├── setjmp.c │ │ │ │ │ ├── sh │ │ │ │ │ │ ├── longjmp.S │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── x32 │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── longjmp.s │ │ │ │ │ │ └── setjmp.s │ │ │ │ ├── signal │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── block.c │ │ │ │ │ ├── getitimer.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── kill.c │ │ │ │ │ ├── killpg.c │ │ │ │ │ ├── m68k │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── microblaze │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── mipsn32 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── or1k │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── psiginfo.c │ │ │ │ │ ├── psignal.c │ │ │ │ │ ├── raise.c │ │ │ │ │ ├── restore.c │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── s390x │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── setitimer.c │ │ │ │ │ ├── sh │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ ├── sigaction.c │ │ │ │ │ ├── sigaddset.c │ │ │ │ │ ├── sigaltstack.c │ │ │ │ │ ├── sigandset.c │ │ │ │ │ ├── sigdelset.c │ │ │ │ │ ├── sigemptyset.c │ │ │ │ │ ├── sigfillset.c │ │ │ │ │ ├── sighold.c │ │ │ │ │ ├── sigignore.c │ │ │ │ │ ├── siginterrupt.c │ │ │ │ │ ├── sigisemptyset.c │ │ │ │ │ ├── sigismember.c │ │ │ │ │ ├── siglongjmp.c │ │ │ │ │ ├── signal.c │ │ │ │ │ ├── sigorset.c │ │ │ │ │ ├── sigpause.c │ │ │ │ │ ├── sigpending.c │ │ │ │ │ ├── sigprocmask.c │ │ │ │ │ ├── sigqueue.c │ │ │ │ │ ├── sigrelse.c │ │ │ │ │ ├── sigrtmax.c │ │ │ │ │ ├── sigrtmin.c │ │ │ │ │ ├── sigset.c │ │ │ │ │ ├── sigsetjmp.c │ │ │ │ │ ├── sigsetjmp_tail.c │ │ │ │ │ ├── sigsuspend.c │ │ │ │ │ ├── sigtimedwait.c │ │ │ │ │ ├── sigwait.c │ │ │ │ │ ├── sigwaitinfo.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ ├── getitimer.c │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ ├── setitimer.c │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── restore.s │ │ │ │ │ │ └── sigsetjmp.s │ │ │ │ ├── stat │ │ │ │ │ ├── __xstat.c │ │ │ │ │ ├── chmod.c │ │ │ │ │ ├── fchmod.c │ │ │ │ │ ├── fchmodat.c │ │ │ │ │ ├── fstat.c │ │ │ │ │ ├── fstatat.c │ │ │ │ │ ├── futimens.c │ │ │ │ │ ├── futimesat.c │ │ │ │ │ ├── lchmod.c │ │ │ │ │ ├── lstat.c │ │ │ │ │ ├── mkdir.c │ │ │ │ │ ├── mkdirat.c │ │ │ │ │ ├── mkfifo.c │ │ │ │ │ ├── mkfifoat.c │ │ │ │ │ ├── mknod.c │ │ │ │ │ ├── mknodat.c │ │ │ │ │ ├── stat.c │ │ │ │ │ ├── statvfs.c │ │ │ │ │ ├── umask.c │ │ │ │ │ └── utimensat.c │ │ │ │ ├── stdio │ │ │ │ │ ├── __fclose_ca.c │ │ │ │ │ ├── __fdopen.c │ │ │ │ │ ├── __fmodeflags.c │ │ │ │ │ ├── __fopen_rb_ca.c │ │ │ │ │ ├── __lockfile.c │ │ │ │ │ ├── __overflow.c │ │ │ │ │ ├── __stdio_close.c │ │ │ │ │ ├── __stdio_exit.c │ │ │ │ │ ├── __stdio_read.c │ │ │ │ │ ├── __stdio_seek.c │ │ │ │ │ ├── __stdio_write.c │ │ │ │ │ ├── __stdout_write.c │ │ │ │ │ ├── __toread.c │ │ │ │ │ ├── __towrite.c │ │ │ │ │ ├── __uflow.c │ │ │ │ │ ├── asprintf.c │ │ │ │ │ ├── clearerr.c │ │ │ │ │ ├── dprintf.c │ │ │ │ │ ├── ext.c │ │ │ │ │ ├── ext2.c │ │ │ │ │ ├── fclose.c │ │ │ │ │ ├── feof.c │ │ │ │ │ ├── ferror.c │ │ │ │ │ ├── fflush.c │ │ │ │ │ ├── fgetc.c │ │ │ │ │ ├── fgetln.c │ │ │ │ │ ├── fgetpos.c │ │ │ │ │ ├── fgets.c │ │ │ │ │ ├── fgetwc.c │ │ │ │ │ ├── fgetws.c │ │ │ │ │ ├── fileno.c │ │ │ │ │ ├── flockfile.c │ │ │ │ │ ├── fmemopen.c │ │ │ │ │ ├── fopen.c │ │ │ │ │ ├── fopencookie.c │ │ │ │ │ ├── fprintf.c │ │ │ │ │ ├── fputc.c │ │ │ │ │ ├── fputs.c │ │ │ │ │ ├── fputwc.c │ │ │ │ │ ├── fputws.c │ │ │ │ │ ├── fread.c │ │ │ │ │ ├── freopen.c │ │ │ │ │ ├── fscanf.c │ │ │ │ │ ├── fseek.c │ │ │ │ │ ├── fsetpos.c │ │ │ │ │ ├── ftell.c │ │ │ │ │ ├── ftrylockfile.c │ │ │ │ │ ├── funlockfile.c │ │ │ │ │ ├── fwide.c │ │ │ │ │ ├── fwprintf.c │ │ │ │ │ ├── fwrite.c │ │ │ │ │ ├── fwscanf.c │ │ │ │ │ ├── getc.c │ │ │ │ │ ├── getc.h │ │ │ │ │ ├── getc_unlocked.c │ │ │ │ │ ├── getchar.c │ │ │ │ │ ├── getchar_unlocked.c │ │ │ │ │ ├── getdelim.c │ │ │ │ │ ├── getline.c │ │ │ │ │ ├── gets.c │ │ │ │ │ ├── getw.c │ │ │ │ │ ├── getwc.c │ │ │ │ │ ├── getwchar.c │ │ │ │ │ ├── ofl.c │ │ │ │ │ ├── ofl_add.c │ │ │ │ │ ├── open_memstream.c │ │ │ │ │ ├── open_wmemstream.c │ │ │ │ │ ├── pclose.c │ │ │ │ │ ├── perror.c │ │ │ │ │ ├── popen.c │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── putc.c │ │ │ │ │ ├── putc.h │ │ │ │ │ ├── putc_unlocked.c │ │ │ │ │ ├── putchar.c │ │ │ │ │ ├── putchar_unlocked.c │ │ │ │ │ ├── puts.c │ │ │ │ │ ├── putw.c │ │ │ │ │ ├── putwc.c │ │ │ │ │ ├── putwchar.c │ │ │ │ │ ├── remove.c │ │ │ │ │ ├── rename.c │ │ │ │ │ ├── rewind.c │ │ │ │ │ ├── scanf.c │ │ │ │ │ ├── setbuf.c │ │ │ │ │ ├── setbuffer.c │ │ │ │ │ ├── setlinebuf.c │ │ │ │ │ ├── setvbuf.c │ │ │ │ │ ├── snprintf.c │ │ │ │ │ ├── sprintf.c │ │ │ │ │ ├── sscanf.c │ │ │ │ │ ├── stderr.c │ │ │ │ │ ├── stdin.c │ │ │ │ │ ├── stdout.c │ │ │ │ │ ├── swprintf.c │ │ │ │ │ ├── swscanf.c │ │ │ │ │ ├── tempnam.c │ │ │ │ │ ├── tmpfile.c │ │ │ │ │ ├── tmpnam.c │ │ │ │ │ ├── ungetc.c │ │ │ │ │ ├── ungetwc.c │ │ │ │ │ ├── vasprintf.c │ │ │ │ │ ├── vdprintf.c │ │ │ │ │ ├── vfprintf.c │ │ │ │ │ ├── vfscanf.c │ │ │ │ │ ├── vfwprintf.c │ │ │ │ │ ├── vfwscanf.c │ │ │ │ │ ├── vprintf.c │ │ │ │ │ ├── vscanf.c │ │ │ │ │ ├── vsnprintf.c │ │ │ │ │ ├── vsprintf.c │ │ │ │ │ ├── vsscanf.c │ │ │ │ │ ├── vswprintf.c │ │ │ │ │ ├── vswscanf.c │ │ │ │ │ ├── vwprintf.c │ │ │ │ │ ├── vwscanf.c │ │ │ │ │ ├── wprintf.c │ │ │ │ │ └── wscanf.c │ │ │ │ ├── stdlib │ │ │ │ │ ├── abs.c │ │ │ │ │ ├── atof.c │ │ │ │ │ ├── atoi.c │ │ │ │ │ ├── atol.c │ │ │ │ │ ├── atoll.c │ │ │ │ │ ├── bsearch.c │ │ │ │ │ ├── div.c │ │ │ │ │ ├── ecvt.c │ │ │ │ │ ├── fcvt.c │ │ │ │ │ ├── gcvt.c │ │ │ │ │ ├── imaxabs.c │ │ │ │ │ ├── imaxdiv.c │ │ │ │ │ ├── labs.c │ │ │ │ │ ├── ldiv.c │ │ │ │ │ ├── llabs.c │ │ │ │ │ ├── lldiv.c │ │ │ │ │ ├── qsort.c │ │ │ │ │ ├── qsort_nr.c │ │ │ │ │ ├── strtod.c │ │ │ │ │ ├── strtol.c │ │ │ │ │ ├── wcstod.c │ │ │ │ │ └── wcstol.c │ │ │ │ ├── string │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── memcpy.S │ │ │ │ │ │ └── memset.S │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── __aeabi_memcpy.s │ │ │ │ │ │ ├── __aeabi_memset.s │ │ │ │ │ │ └── memcpy.S │ │ │ │ │ ├── bcmp.c │ │ │ │ │ ├── bcopy.c │ │ │ │ │ ├── bzero.c │ │ │ │ │ ├── explicit_bzero.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── memcpy.s │ │ │ │ │ │ ├── memmove.s │ │ │ │ │ │ └── memset.s │ │ │ │ │ ├── index.c │ │ │ │ │ ├── memccpy.c │ │ │ │ │ ├── memchr.c │ │ │ │ │ ├── memcmp.c │ │ │ │ │ ├── memcpy.c │ │ │ │ │ ├── memmem.c │ │ │ │ │ ├── memmove.c │ │ │ │ │ ├── mempcpy.c │ │ │ │ │ ├── memrchr.c │ │ │ │ │ ├── memset.c │ │ │ │ │ ├── rindex.c │ │ │ │ │ ├── stpcpy.c │ │ │ │ │ ├── stpncpy.c │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strcasestr.c │ │ │ │ │ ├── strcat.c │ │ │ │ │ ├── strchr.c │ │ │ │ │ ├── strchrnul.c │ │ │ │ │ ├── strcmp.c │ │ │ │ │ ├── strcpy.c │ │ │ │ │ ├── strcspn.c │ │ │ │ │ ├── strdup.c │ │ │ │ │ ├── strerror_r.c │ │ │ │ │ ├── strlcat.c │ │ │ │ │ ├── strlcpy.c │ │ │ │ │ ├── strlen.c │ │ │ │ │ ├── strncasecmp.c │ │ │ │ │ ├── strncat.c │ │ │ │ │ ├── strncmp.c │ │ │ │ │ ├── strncpy.c │ │ │ │ │ ├── strndup.c │ │ │ │ │ ├── strnlen.c │ │ │ │ │ ├── strpbrk.c │ │ │ │ │ ├── strrchr.c │ │ │ │ │ ├── strsep.c │ │ │ │ │ ├── strsignal.c │ │ │ │ │ ├── strspn.c │ │ │ │ │ ├── strstr.c │ │ │ │ │ ├── strtok.c │ │ │ │ │ ├── strtok_r.c │ │ │ │ │ ├── strverscmp.c │ │ │ │ │ ├── swab.c │ │ │ │ │ ├── wcpcpy.c │ │ │ │ │ ├── wcpncpy.c │ │ │ │ │ ├── wcscasecmp.c │ │ │ │ │ ├── wcscasecmp_l.c │ │ │ │ │ ├── wcscat.c │ │ │ │ │ ├── wcschr.c │ │ │ │ │ ├── wcscmp.c │ │ │ │ │ ├── wcscpy.c │ │ │ │ │ ├── wcscspn.c │ │ │ │ │ ├── wcsdup.c │ │ │ │ │ ├── wcslen.c │ │ │ │ │ ├── wcsncasecmp.c │ │ │ │ │ ├── wcsncasecmp_l.c │ │ │ │ │ ├── wcsncat.c │ │ │ │ │ ├── wcsncmp.c │ │ │ │ │ ├── wcsncpy.c │ │ │ │ │ ├── wcsnlen.c │ │ │ │ │ ├── wcspbrk.c │ │ │ │ │ ├── wcsrchr.c │ │ │ │ │ ├── wcsspn.c │ │ │ │ │ ├── wcsstr.c │ │ │ │ │ ├── wcstok.c │ │ │ │ │ ├── wcswcs.c │ │ │ │ │ ├── wmemchr.c │ │ │ │ │ ├── wmemcmp.c │ │ │ │ │ ├── wmemcpy.c │ │ │ │ │ ├── wmemmove.c │ │ │ │ │ ├── wmemset.c │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── memcpy.s │ │ │ │ │ │ ├── memmove.s │ │ │ │ │ │ └── memset.s │ │ │ │ ├── temp │ │ │ │ │ ├── __randname.c │ │ │ │ │ ├── mkdtemp.c │ │ │ │ │ ├── mkostemp.c │ │ │ │ │ ├── mkostemps.c │ │ │ │ │ ├── mkstemp.c │ │ │ │ │ ├── mkstemps.c │ │ │ │ │ └── mktemp.c │ │ │ │ ├── termios │ │ │ │ │ ├── cfgetospeed.c │ │ │ │ │ ├── cfmakeraw.c │ │ │ │ │ ├── cfsetospeed.c │ │ │ │ │ ├── tcdrain.c │ │ │ │ │ ├── tcflow.c │ │ │ │ │ ├── tcflush.c │ │ │ │ │ ├── tcgetattr.c │ │ │ │ │ ├── tcgetsid.c │ │ │ │ │ ├── tcgetwinsize.c │ │ │ │ │ ├── tcsendbreak.c │ │ │ │ │ ├── tcsetattr.c │ │ │ │ │ └── tcsetwinsize.c │ │ │ │ ├── thread │ │ │ │ │ ├── __lock.c │ │ │ │ │ ├── __set_thread_area.c │ │ │ │ │ ├── __syscall_cp.c │ │ │ │ │ ├── __timedwait.c │ │ │ │ │ ├── __tls_get_addr.c │ │ │ │ │ ├── __unmapself.c │ │ │ │ │ ├── __wait.c │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── __aeabi_read_tp.s │ │ │ │ │ │ ├── __set_thread_area.c │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── atomics.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── call_once.c │ │ │ │ │ ├── clone.c │ │ │ │ │ ├── cnd_broadcast.c │ │ │ │ │ ├── cnd_destroy.c │ │ │ │ │ ├── cnd_init.c │ │ │ │ │ ├── cnd_signal.c │ │ │ │ │ ├── cnd_timedwait.c │ │ │ │ │ ├── cnd_wait.c │ │ │ │ │ ├── default_attr.c │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ ├── syscall_cp.s │ │ │ │ │ │ └── tls.s │ │ │ │ │ ├── lock_ptc.c │ │ │ │ │ ├── m68k │ │ │ │ │ │ ├── __m68k_read_tp.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── microblaze │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── mipsn32 │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── mtx_destroy.c │ │ │ │ │ ├── mtx_init.c │ │ │ │ │ ├── mtx_lock.c │ │ │ │ │ ├── mtx_timedlock.c │ │ │ │ │ ├── mtx_trylock.c │ │ │ │ │ ├── mtx_unlock.c │ │ │ │ │ ├── or1k │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── powerpc │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── pthread_atfork.c │ │ │ │ │ ├── pthread_attr_destroy.c │ │ │ │ │ ├── pthread_attr_get.c │ │ │ │ │ ├── pthread_attr_init.c │ │ │ │ │ ├── pthread_attr_setdetachstate.c │ │ │ │ │ ├── pthread_attr_setguardsize.c │ │ │ │ │ ├── pthread_attr_setinheritsched.c │ │ │ │ │ ├── pthread_attr_setschedparam.c │ │ │ │ │ ├── pthread_attr_setschedpolicy.c │ │ │ │ │ ├── pthread_attr_setscope.c │ │ │ │ │ ├── pthread_attr_setstack.c │ │ │ │ │ ├── pthread_attr_setstacksize.c │ │ │ │ │ ├── pthread_barrier_destroy.c │ │ │ │ │ ├── pthread_barrier_init.c │ │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ │ ├── pthread_barrierattr_destroy.c │ │ │ │ │ ├── pthread_barrierattr_init.c │ │ │ │ │ ├── pthread_barrierattr_setpshared.c │ │ │ │ │ ├── pthread_cancel.c │ │ │ │ │ ├── pthread_cleanup_push.c │ │ │ │ │ ├── pthread_cond_broadcast.c │ │ │ │ │ ├── pthread_cond_destroy.c │ │ │ │ │ ├── pthread_cond_init.c │ │ │ │ │ ├── pthread_cond_signal.c │ │ │ │ │ ├── pthread_cond_timedwait.c │ │ │ │ │ ├── pthread_cond_wait.c │ │ │ │ │ ├── pthread_condattr_destroy.c │ │ │ │ │ ├── pthread_condattr_init.c │ │ │ │ │ ├── pthread_condattr_setclock.c │ │ │ │ │ ├── pthread_condattr_setpshared.c │ │ │ │ │ ├── pthread_create.c │ │ │ │ │ ├── pthread_detach.c │ │ │ │ │ ├── pthread_equal.c │ │ │ │ │ ├── pthread_getattr_np.c │ │ │ │ │ ├── pthread_getconcurrency.c │ │ │ │ │ ├── pthread_getcpuclockid.c │ │ │ │ │ ├── pthread_getname_np.c │ │ │ │ │ ├── pthread_getschedparam.c │ │ │ │ │ ├── pthread_getspecific.c │ │ │ │ │ ├── pthread_join.c │ │ │ │ │ ├── pthread_key_create.c │ │ │ │ │ ├── pthread_kill.c │ │ │ │ │ ├── pthread_mutex_consistent.c │ │ │ │ │ ├── pthread_mutex_destroy.c │ │ │ │ │ ├── pthread_mutex_getprioceiling.c │ │ │ │ │ ├── pthread_mutex_init.c │ │ │ │ │ ├── pthread_mutex_lock.c │ │ │ │ │ ├── pthread_mutex_setprioceiling.c │ │ │ │ │ ├── pthread_mutex_timedlock.c │ │ │ │ │ ├── pthread_mutex_trylock.c │ │ │ │ │ ├── pthread_mutex_unlock.c │ │ │ │ │ ├── pthread_mutexattr_destroy.c │ │ │ │ │ ├── pthread_mutexattr_init.c │ │ │ │ │ ├── pthread_mutexattr_setprotocol.c │ │ │ │ │ ├── pthread_mutexattr_setpshared.c │ │ │ │ │ ├── pthread_mutexattr_setrobust.c │ │ │ │ │ ├── pthread_mutexattr_settype.c │ │ │ │ │ ├── pthread_once.c │ │ │ │ │ ├── pthread_rwlock_destroy.c │ │ │ │ │ ├── pthread_rwlock_init.c │ │ │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ │ │ ├── pthread_rwlock_unlock.c │ │ │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ │ │ ├── pthread_rwlockattr_destroy.c │ │ │ │ │ ├── pthread_rwlockattr_init.c │ │ │ │ │ ├── pthread_rwlockattr_setpshared.c │ │ │ │ │ ├── pthread_self.c │ │ │ │ │ ├── pthread_setattr_default_np.c │ │ │ │ │ ├── pthread_setcancelstate.c │ │ │ │ │ ├── pthread_setcanceltype.c │ │ │ │ │ ├── pthread_setconcurrency.c │ │ │ │ │ ├── pthread_setname_np.c │ │ │ │ │ ├── pthread_setschedparam.c │ │ │ │ │ ├── pthread_setschedprio.c │ │ │ │ │ ├── pthread_setspecific.c │ │ │ │ │ ├── pthread_sigmask.c │ │ │ │ │ ├── pthread_spin_destroy.c │ │ │ │ │ ├── pthread_spin_init.c │ │ │ │ │ ├── pthread_spin_lock.c │ │ │ │ │ ├── pthread_spin_trylock.c │ │ │ │ │ ├── pthread_spin_unlock.c │ │ │ │ │ ├── pthread_testcancel.c │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── s390x │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __tls_get_offset.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── sem_destroy.c │ │ │ │ │ ├── sem_getvalue.c │ │ │ │ │ ├── sem_init.c │ │ │ │ │ ├── sem_open.c │ │ │ │ │ ├── sem_post.c │ │ │ │ │ ├── sem_timedwait.c │ │ │ │ │ ├── sem_trywait.c │ │ │ │ │ ├── sem_unlink.c │ │ │ │ │ ├── sem_wait.c │ │ │ │ │ ├── sh │ │ │ │ │ │ ├── __set_thread_area.c │ │ │ │ │ │ ├── __unmapself.c │ │ │ │ │ │ ├── __unmapself_mmu.s │ │ │ │ │ │ ├── atomics.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ ├── synccall.c │ │ │ │ │ ├── syscall_cp.c │ │ │ │ │ ├── thrd_create.c │ │ │ │ │ ├── thrd_exit.c │ │ │ │ │ ├── thrd_join.c │ │ │ │ │ ├── thrd_sleep.c │ │ │ │ │ ├── thrd_yield.c │ │ │ │ │ ├── tls.c │ │ │ │ │ ├── tss_create.c │ │ │ │ │ ├── tss_delete.c │ │ │ │ │ ├── tss_set.c │ │ │ │ │ ├── vmlock.c │ │ │ │ │ ├── x32 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── __set_thread_area.s │ │ │ │ │ │ ├── __unmapself.s │ │ │ │ │ │ ├── clone.s │ │ │ │ │ │ └── syscall_cp.s │ │ │ │ ├── time │ │ │ │ │ ├── __map_file.c │ │ │ │ │ ├── __month_to_secs.c │ │ │ │ │ ├── __secs_to_tm.c │ │ │ │ │ ├── __tm_to_secs.c │ │ │ │ │ ├── __tz.c │ │ │ │ │ ├── __year_to_secs.c │ │ │ │ │ ├── asctime.c │ │ │ │ │ ├── asctime_r.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── clock_getcpuclockid.c │ │ │ │ │ ├── clock_getres.c │ │ │ │ │ ├── clock_gettime.c │ │ │ │ │ ├── clock_nanosleep.c │ │ │ │ │ ├── clock_settime.c │ │ │ │ │ ├── ctime.c │ │ │ │ │ ├── ctime_r.c │ │ │ │ │ ├── difftime.c │ │ │ │ │ ├── ftime.c │ │ │ │ │ ├── getdate.c │ │ │ │ │ ├── gettimeofday.c │ │ │ │ │ ├── gmtime.c │ │ │ │ │ ├── gmtime_r.c │ │ │ │ │ ├── localtime.c │ │ │ │ │ ├── localtime_r.c │ │ │ │ │ ├── mktime.c │ │ │ │ │ ├── nanosleep.c │ │ │ │ │ ├── strftime.c │ │ │ │ │ ├── strptime.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── time_impl.h │ │ │ │ │ ├── timegm.c │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverrun.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ ├── times.c │ │ │ │ │ ├── timespec_get.c │ │ │ │ │ ├── utime.c │ │ │ │ │ └── wcsftime.c │ │ │ │ └── unistd │ │ │ │ │ ├── _exit.c │ │ │ │ │ ├── access.c │ │ │ │ │ ├── acct.c │ │ │ │ │ ├── alarm.c │ │ │ │ │ ├── chdir.c │ │ │ │ │ ├── chown.c │ │ │ │ │ ├── close.c │ │ │ │ │ ├── ctermid.c │ │ │ │ │ ├── dup.c │ │ │ │ │ ├── dup2.c │ │ │ │ │ ├── dup3.c │ │ │ │ │ ├── faccessat.c │ │ │ │ │ ├── fchdir.c │ │ │ │ │ ├── fchown.c │ │ │ │ │ ├── fchownat.c │ │ │ │ │ ├── fdatasync.c │ │ │ │ │ ├── fsync.c │ │ │ │ │ ├── ftruncate.c │ │ │ │ │ ├── getcwd.c │ │ │ │ │ ├── getegid.c │ │ │ │ │ ├── geteuid.c │ │ │ │ │ ├── getgid.c │ │ │ │ │ ├── getgroups.c │ │ │ │ │ ├── gethostname.c │ │ │ │ │ ├── getlogin.c │ │ │ │ │ ├── getlogin_r.c │ │ │ │ │ ├── getpgid.c │ │ │ │ │ ├── getpgrp.c │ │ │ │ │ ├── getpid.c │ │ │ │ │ ├── getppid.c │ │ │ │ │ ├── getsid.c │ │ │ │ │ ├── getuid.c │ │ │ │ │ ├── isatty.c │ │ │ │ │ ├── lchown.c │ │ │ │ │ ├── link.c │ │ │ │ │ ├── linkat.c │ │ │ │ │ ├── lseek.c │ │ │ │ │ ├── mips │ │ │ │ │ └── pipe.s │ │ │ │ │ ├── mips64 │ │ │ │ │ └── pipe.s │ │ │ │ │ ├── mipsn32 │ │ │ │ │ ├── lseek.c │ │ │ │ │ └── pipe.s │ │ │ │ │ ├── nice.c │ │ │ │ │ ├── pause.c │ │ │ │ │ ├── pipe.c │ │ │ │ │ ├── pipe2.c │ │ │ │ │ ├── posix_close.c │ │ │ │ │ ├── pread.c │ │ │ │ │ ├── preadv.c │ │ │ │ │ ├── pwrite.c │ │ │ │ │ ├── pwritev.c │ │ │ │ │ ├── read.c │ │ │ │ │ ├── readlink.c │ │ │ │ │ ├── readlinkat.c │ │ │ │ │ ├── readv.c │ │ │ │ │ ├── renameat.c │ │ │ │ │ ├── rmdir.c │ │ │ │ │ ├── setegid.c │ │ │ │ │ ├── seteuid.c │ │ │ │ │ ├── setgid.c │ │ │ │ │ ├── setpgid.c │ │ │ │ │ ├── setpgrp.c │ │ │ │ │ ├── setregid.c │ │ │ │ │ ├── setresgid.c │ │ │ │ │ ├── setresuid.c │ │ │ │ │ ├── setreuid.c │ │ │ │ │ ├── setsid.c │ │ │ │ │ ├── setuid.c │ │ │ │ │ ├── setxid.c │ │ │ │ │ ├── sh │ │ │ │ │ └── pipe.s │ │ │ │ │ ├── sleep.c │ │ │ │ │ ├── symlink.c │ │ │ │ │ ├── symlinkat.c │ │ │ │ │ ├── sync.c │ │ │ │ │ ├── tcgetpgrp.c │ │ │ │ │ ├── tcsetpgrp.c │ │ │ │ │ ├── truncate.c │ │ │ │ │ ├── ttyname.c │ │ │ │ │ ├── ttyname_r.c │ │ │ │ │ ├── ualarm.c │ │ │ │ │ ├── unlink.c │ │ │ │ │ ├── unlinkat.c │ │ │ │ │ ├── usleep.c │ │ │ │ │ ├── write.c │ │ │ │ │ ├── writev.c │ │ │ │ │ └── x32 │ │ │ │ │ └── lseek.c │ │ │ └── tools │ │ │ │ ├── add-cfi.common.awk │ │ │ │ ├── add-cfi.i386.awk │ │ │ │ ├── add-cfi.x86_64.awk │ │ │ │ ├── install.sh │ │ │ │ ├── ld.musl-clang.in │ │ │ │ ├── mkalltypes.sed │ │ │ │ ├── musl-clang.in │ │ │ │ ├── musl-gcc.specs.sh │ │ │ │ └── version.sh │ │ └── threefish.h │ ├── public │ │ └── reverse-arctic.tar.gz │ └── task.json └── syringa │ ├── README.md │ ├── deploy │ ├── Dockerfile │ ├── docker-compose.yml │ └── service │ │ ├── entrypoint.sh │ │ └── syringa │ ├── desc.md │ ├── dev │ ├── Makefile │ ├── inc │ │ ├── base64.h │ │ ├── md5.h │ │ └── vm.hpp │ ├── main.cpp │ ├── src │ │ ├── base64.cpp │ │ ├── md5.c │ │ └── vm.cpp │ └── syringa │ ├── public │ └── reverse-syringa.tar.gz │ ├── solution │ ├── Makefile │ ├── blocks │ │ ├── 0a │ │ ├── 0b │ │ ├── 100a │ │ ├── 100b │ │ ├── 101a │ │ ├── 101b │ │ ├── 102a │ │ ├── 102b │ │ ├── 103a │ │ ├── 103b │ │ ├── 104a │ │ ├── 104b │ │ ├── 105a │ │ ├── 105b │ │ ├── 106a │ │ ├── 106b │ │ ├── 107a │ │ ├── 107b │ │ ├── 108a │ │ ├── 108b │ │ ├── 109a │ │ ├── 109b │ │ ├── 10a │ │ ├── 10b │ │ ├── 110a │ │ ├── 110b │ │ ├── 111a │ │ ├── 111b │ │ ├── 112a │ │ ├── 112b │ │ ├── 113a │ │ ├── 113b │ │ ├── 114a │ │ ├── 114b │ │ ├── 115a │ │ ├── 115b │ │ ├── 116a │ │ ├── 116b │ │ ├── 117a │ │ ├── 117b │ │ ├── 118a │ │ ├── 118b │ │ ├── 119a │ │ ├── 119b │ │ ├── 11a │ │ ├── 11b │ │ ├── 120a │ │ ├── 120b │ │ ├── 121a │ │ ├── 121b │ │ ├── 122a │ │ ├── 122b │ │ ├── 123a │ │ ├── 123b │ │ ├── 124a │ │ ├── 124b │ │ ├── 125a │ │ ├── 125b │ │ ├── 126a │ │ ├── 126b │ │ ├── 127a │ │ ├── 127b │ │ ├── 12a │ │ ├── 12b │ │ ├── 13a │ │ ├── 13b │ │ ├── 14a │ │ ├── 14b │ │ ├── 15a │ │ ├── 15b │ │ ├── 16a │ │ ├── 16b │ │ ├── 17a │ │ ├── 17b │ │ ├── 18a │ │ ├── 18b │ │ ├── 19a │ │ ├── 19b │ │ ├── 1a │ │ ├── 1b │ │ ├── 20a │ │ ├── 20b │ │ ├── 21a │ │ ├── 21b │ │ ├── 22a │ │ ├── 22b │ │ ├── 23a │ │ ├── 23b │ │ ├── 24a │ │ ├── 24b │ │ ├── 25a │ │ ├── 25b │ │ ├── 26a │ │ ├── 26b │ │ ├── 27a │ │ ├── 27b │ │ ├── 28a │ │ ├── 28b │ │ ├── 29a │ │ ├── 29b │ │ ├── 2a │ │ ├── 2b │ │ ├── 30a │ │ ├── 30b │ │ ├── 31a │ │ ├── 31b │ │ ├── 32a │ │ ├── 32b │ │ ├── 33a │ │ ├── 33b │ │ ├── 34a │ │ ├── 34b │ │ ├── 35a │ │ ├── 35b │ │ ├── 36a │ │ ├── 36b │ │ ├── 37a │ │ ├── 37b │ │ ├── 38a │ │ ├── 38b │ │ ├── 39a │ │ ├── 39b │ │ ├── 3a │ │ ├── 3b │ │ ├── 40a │ │ ├── 40b │ │ ├── 41a │ │ ├── 41b │ │ ├── 42a │ │ ├── 42b │ │ ├── 43a │ │ ├── 43b │ │ ├── 44a │ │ ├── 44b │ │ ├── 45a │ │ ├── 45b │ │ ├── 46a │ │ ├── 46b │ │ ├── 47a │ │ ├── 47b │ │ ├── 48a │ │ ├── 48b │ │ ├── 49a │ │ ├── 49b │ │ ├── 4a │ │ ├── 4b │ │ ├── 50a │ │ ├── 50b │ │ ├── 51a │ │ ├── 51b │ │ ├── 52a │ │ ├── 52b │ │ ├── 53a │ │ ├── 53b │ │ ├── 54a │ │ ├── 54b │ │ ├── 55a │ │ ├── 55b │ │ ├── 56a │ │ ├── 56b │ │ ├── 57a │ │ ├── 57b │ │ ├── 58a │ │ ├── 58b │ │ ├── 59a │ │ ├── 59b │ │ ├── 5a │ │ ├── 5b │ │ ├── 60a │ │ ├── 60b │ │ ├── 61a │ │ ├── 61b │ │ ├── 62a │ │ ├── 62b │ │ ├── 63a │ │ ├── 63b │ │ ├── 64a │ │ ├── 64b │ │ ├── 65a │ │ ├── 65b │ │ ├── 66a │ │ ├── 66b │ │ ├── 67a │ │ ├── 67b │ │ ├── 68a │ │ ├── 68b │ │ ├── 69a │ │ ├── 69b │ │ ├── 6a │ │ ├── 6b │ │ ├── 70a │ │ ├── 70b │ │ ├── 71a │ │ ├── 71b │ │ ├── 72a │ │ ├── 72b │ │ ├── 73a │ │ ├── 73b │ │ ├── 74a │ │ ├── 74b │ │ ├── 75a │ │ ├── 75b │ │ ├── 76a │ │ ├── 76b │ │ ├── 77a │ │ ├── 77b │ │ ├── 78a │ │ ├── 78b │ │ ├── 79a │ │ ├── 79b │ │ ├── 7a │ │ ├── 7b │ │ ├── 80a │ │ ├── 80b │ │ ├── 81a │ │ ├── 81b │ │ ├── 82a │ │ ├── 82b │ │ ├── 83a │ │ ├── 83b │ │ ├── 84a │ │ ├── 84b │ │ ├── 85a │ │ ├── 85b │ │ ├── 86a │ │ ├── 86b │ │ ├── 87a │ │ ├── 87b │ │ ├── 88a │ │ ├── 88b │ │ ├── 89a │ │ ├── 89b │ │ ├── 8a │ │ ├── 8b │ │ ├── 90a │ │ ├── 90b │ │ ├── 91a │ │ ├── 91b │ │ ├── 92a │ │ ├── 92b │ │ ├── 93a │ │ ├── 93b │ │ ├── 94a │ │ ├── 94b │ │ ├── 95a │ │ ├── 95b │ │ ├── 96a │ │ ├── 96b │ │ ├── 97a │ │ ├── 97b │ │ ├── 98a │ │ ├── 98b │ │ ├── 99a │ │ ├── 99b │ │ ├── 9a │ │ └── 9b │ ├── md5.c │ ├── md5.h │ ├── my_fastcoll │ ├── my_md5 │ ├── my_md5.cpp │ └── solution.py │ └── task.json └── web └── empathy ├── README.md ├── deploy ├── api │ ├── Dockerfile │ ├── requirements.txt │ └── service │ │ ├── app.py │ │ ├── models.py │ │ ├── providers.py │ │ ├── run.sh │ │ └── storages.py ├── docker-compose.yml ├── flag.env ├── nginx │ └── nginx.conf └── static │ ├── index.html │ ├── scripts.js │ └── styles.css ├── desc.md ├── public └── web-empathy.tar.gz ├── solution └── solver.py └── task.json /tasks/crypto/astronaut/desc.md: -------------------------------------------------------------------------------- 1 | Through the milky way 2 | 3 | In my spaceship 4 | 5 | At the speed of light 6 | 7 | I'm gonna make it 8 | -------------------------------------------------------------------------------- /tasks/crypto/astronaut/dev/flag.txt: -------------------------------------------------------------------------------- 1 | Aero{LFSR_is_4lw4ys_e4sy_r1ght?} 2 | -------------------------------------------------------------------------------- /tasks/crypto/astronaut/public/crypto-astronaut.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/crypto/astronaut/public/crypto-astronaut.tar.gz -------------------------------------------------------------------------------- /tasks/crypto/astronaut/task.json: -------------------------------------------------------------------------------- 1 | {"name": "astronaut", "difficulty": "baby?", "author": "keltecc", "flag": "Aero{LFSR_is_4lw4ys_e4sy_r1ght?}"} 2 | -------------------------------------------------------------------------------- /tasks/forensics/crash/desc.md: -------------------------------------------------------------------------------- 1 | I was solving a problem and suddenly everything broke. I don't remember what commands I entered, help me get the flag back! -------------------------------------------------------------------------------- /tasks/forensics/crash/dev/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/forensics/crash/dev/helper.pyc -------------------------------------------------------------------------------- /tasks/forensics/crash/dev/hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/forensics/crash/dev/hint.png -------------------------------------------------------------------------------- /tasks/forensics/crash/dev/real_flag.txt: -------------------------------------------------------------------------------- 1 | Aero{4b88dfff0732f88f9ecc8b2c6b5bd2b0} -------------------------------------------------------------------------------- /tasks/forensics/crash/public/dump.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/forensics/crash/public/dump.zip -------------------------------------------------------------------------------- /tasks/forensics/crash/task.json: -------------------------------------------------------------------------------- 1 | {"name": "crash", "author": "ker", "flag": "Aero{4b88dfff0732f88f9ecc8b2c6b5bd2b0}"} 2 | -------------------------------------------------------------------------------- /tasks/forensics/whisper/desc.md: -------------------------------------------------------------------------------- 1 | What could be better than a messenger in the kernel space? -------------------------------------------------------------------------------- /tasks/forensics/whisper/dev/client/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc -static main.c -o client -------------------------------------------------------------------------------- /tasks/forensics/whisper/dev/driver/whisper.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/forensics/whisper/dev/driver/whisper.ko -------------------------------------------------------------------------------- /tasks/forensics/whisper/public/link.txt: -------------------------------------------------------------------------------- 1 | https://drive.google.com/file/d/1SC2P8ggYTCXRUv69Ugt0UX-Gzbwu7k71/view?usp=sharing 2 | 3 | https://mega.nz/file/OVI3yAAD#VHP9bogGRFkEM7nNJc-zU9LLAJ-745GzQ5pkLWENmdE -------------------------------------------------------------------------------- /tasks/forensics/whisper/task.json: -------------------------------------------------------------------------------- 1 | {"name": "whisper", "author": "ker", "flag": "Aero{4b3bru5_15_n0t_4b0bu5_but_y0u_sh0000uld_kn0000w_11t_v333ry_we3Ell}"} 2 | -------------------------------------------------------------------------------- /tasks/pwn/balloon/deploy/service/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export LD_PRELOAD=/challenge/preload.so 4 | 5 | chroot --userspec=1000:1000 /chroot \ 6 | /bin/python3.11 -u /challenge/balloon.py 7 | -------------------------------------------------------------------------------- /tasks/pwn/balloon/deploy/service/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/balloon/deploy/service/flag -------------------------------------------------------------------------------- /tasks/pwn/balloon/deploy/service/preload.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/balloon/deploy/service/preload.so -------------------------------------------------------------------------------- /tasks/pwn/balloon/desc.md: -------------------------------------------------------------------------------- 1 | Do you like Python jails? 2 | -------------------------------------------------------------------------------- /tasks/pwn/balloon/public/pwn-balloon.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/balloon/public/pwn-balloon.tar.gz -------------------------------------------------------------------------------- /tasks/pwn/balloon/task.json: -------------------------------------------------------------------------------- 1 | {"name": "balloon", "author": "keltecc", "flag": "Aero{RCE_1n_Pyth0n_1s_d4NG3r0uS_ev3Ry_t1m3}"} 2 | -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/deploy/service/flag.txt: -------------------------------------------------------------------------------- 1 | Aero{43d08e5adcfbfd56060e4a5d050dd02d} -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/deploy/service/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/deploy/service/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/deploy/service/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/deploy/service/libc.so.6 -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/deploy/service/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/deploy/service/main -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/desc.md: -------------------------------------------------------------------------------- 1 | Just another heap pwn problem -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:22.10 2 | 3 | COPY main /tmp/ 4 | 5 | RUN chmod +x /tmp/main 6 | 7 | ENTRYPOINT [ "/tmp/main" ] 8 | 9 | -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc -o main main.c 3 | -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/flag.txt: -------------------------------------------------------------------------------- 1 | Aero{43d08e5adcfbfd56060e4a5d050dd02d} -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/dev/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/dev/libc.so.6 -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/dev/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/dev/main -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/public/heap-2022-public.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/heap-2022/public/heap-2022-public.7z -------------------------------------------------------------------------------- /tasks/pwn/heap-2022/task.json: -------------------------------------------------------------------------------- 1 | {"name": "heap-2022", "author": "ker", "flag": "Aero{43d08e5adcfbfd56060e4a5d050dd02d}"} 2 | -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/deploy/service/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/kernel-gym/deploy/service/bzImage -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/deploy/service/compr.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd initramfs 4 | find . | cpio -o -H newc -R root:root | gzip -9 > ../initramfs.cpio.gz 5 | -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/deploy/service/initramfs.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/kernel-gym/deploy/service/initramfs.cpio.gz -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/desc.md: -------------------------------------------------------------------------------- 1 | Show me who's boss of this gym 2 | C'mon let's go -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/public/kernel-gym-public.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/kernel-gym/public/kernel-gym-public.7z -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/solution/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/kernel-gym/solution/client -------------------------------------------------------------------------------- /tasks/pwn/kernel-gym/task.json: -------------------------------------------------------------------------------- 1 | {"name": "kernel-gym", "author": "ker", "flag": "Aero{Y0u_4r3_th3_r3al_b0ss_0f_th3_GYM_e9810cd4e8029b}"} 2 | -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/deploy/service/flag.txt: -------------------------------------------------------------------------------- 1 | Aero{0a56ff0b48d219a7ce4d3c78a4c5d265} -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/deploy/service/one_bullet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/one-bullet/deploy/service/one_bullet -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/desc.md: -------------------------------------------------------------------------------- 1 | You only have one shot! Spend it wisely! -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/dev/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc -static main.c -o one_bullet -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/dev/flag.txt: -------------------------------------------------------------------------------- 1 | Aero{0a56ff0b48d219a7ce4d3c78a4c5d265} -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/dev/one_bullet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/one-bullet/dev/one_bullet -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/public/one_bullet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/pwn/one-bullet/public/one_bullet -------------------------------------------------------------------------------- /tasks/pwn/one-bullet/task.json: -------------------------------------------------------------------------------- 1 | {"name": "one-bullet", "author": "ker", "flag": "Aero{0a56ff0b48d219a7ce4d3c78a4c5d265}"} 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/desc.md: -------------------------------------------------------------------------------- 1 | Please, be careful: this is the Arctic, not the Antarctic! 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/arctic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/arctic -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/arctic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/arctic.o -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.lo 3 | *.a 4 | *.so 5 | *.so.1 6 | config.mak 7 | lib/musl-gcc.specs 8 | /obj/ 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/.mailmap: -------------------------------------------------------------------------------- 1 | Ada Worcester 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "stdio_impl.h": "c", 4 | "pthread_impl.h": "c" 5 | } 6 | } -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/aarch64/bits/mman.h: -------------------------------------------------------------------------------- 1 | #define PROT_BTI 0x10 2 | #define PROT_MTE 0x20 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/aarch64/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFF64 1 2 | #define _POSIX_V7_LP64_OFF64 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/aarch64/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 64 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/aarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[22]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | #undef FIOQSIZE 2 | #define FIOQSIZE 0x545e 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 32 3 | /* FIXME */ 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/arm/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[32]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/generic/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/generic/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/generic/bits/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/generic/bits/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/bits/mman.h: -------------------------------------------------------------------------------- 1 | #define MAP_32BIT 0x40 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/m68k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/m68k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/m68k/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/m68k/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | #define PTRACE_GET_THREAD_AREA 25 2 | #define PTRACE_SINGLEBLOCK 33 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/m68k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[39]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/microblaze/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/microblaze/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/microblaze/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/microblaze/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 32 3 | /* FIXME */ 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/microblaze/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/bits/poll.h: -------------------------------------------------------------------------------- 1 | #define POLLWRNORM POLLOUT 2 | #define POLLWRBAND 0x100 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/bits/resource.h: -------------------------------------------------------------------------------- 1 | #define RLIMIT_NOFILE 5 2 | #define RLIMIT_AS 6 3 | #define RLIMIT_RSS 7 4 | #define RLIMIT_NPROC 8 5 | #define RLIMIT_MEMLOCK 9 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips64/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | #define HWCAP_MIPS_R6 (1 << 0) 2 | #define HWCAP_MIPS_MSA (1 << 1) 3 | #define HWCAP_MIPS_CRC32 (1 << 2) 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips64/bits/poll.h: -------------------------------------------------------------------------------- 1 | #define POLLWRNORM POLLOUT 2 | #define POLLWRBAND 0x100 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips64/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFFBIG 1 2 | #define _POSIX_V7_LP64_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips64/bits/resource.h: -------------------------------------------------------------------------------- 1 | #define RLIMIT_NOFILE 5 2 | #define RLIMIT_AS 6 3 | #define RLIMIT_RSS 7 4 | #define RLIMIT_NPROC 8 5 | #define RLIMIT_MEMLOCK 9 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mips64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[23]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | #define HWCAP_MIPS_R6 (1 << 0) 2 | #define HWCAP_MIPS_MSA (1 << 1) 3 | #define HWCAP_MIPS_CRC32 (1 << 2) 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/bits/poll.h: -------------------------------------------------------------------------------- 1 | #define POLLWRNORM POLLOUT 2 | #define POLLWRBAND 0x100 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/mipsn32/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[23]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 8192 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 32 3 | /* FIXME */ 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/musl-1.2.3/arch/or1k/bits/user.h -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 32 3 | /* FIXME */ 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[56]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc64/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFF64 1 2 | #define _POSIX_V7_LP64_OFF64 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc64/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 64 3 | /* FIXME */ 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/powerpc64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned __int128 __jmp_buf[32]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/riscv64/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFF64 1 2 | #define _POSIX_V7_LP64_OFF64 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/riscv64/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 64 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/riscv64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[26]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | #undef FIOQSIZE 2 | #define FIOQSIZE 0x545e 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint64_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFF64 1 2 | #define _POSIX_V7_LP64_OFF64 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/reg.h: -------------------------------------------------------------------------------- 1 | #undef __WORDSIZE 2 | #define __WORDSIZE 64 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/s390x/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/sh/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/sh/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/sh/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/sh/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/sh/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[15]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x32/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | #undef SIOCGSTAMP 2 | #undef SIOCGSTAMPNS 3 | #define SIOCGSTAMP 0x8906 4 | #define SIOCGSTAMPNS 0x8907 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x32/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x32/bits/mman.h: -------------------------------------------------------------------------------- 1 | #define MAP_32BIT 0x40 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x32/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_ILP32_OFFBIG 1 2 | #define _POSIX_V7_ILP32_OFFBIG 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x32/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x86_64/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x86_64/bits/mman.h: -------------------------------------------------------------------------------- 1 | #define MAP_32BIT 0x40 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x86_64/bits/posix.h: -------------------------------------------------------------------------------- 1 | #define _POSIX_V6_LP64_OFF64 1 2 | #define _POSIX_V7_LP64_OFF64 1 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/compat/time32/ctime32.c: -------------------------------------------------------------------------------- 1 | #include "time32.h" 2 | #include 3 | 4 | char *__ctime32(time32_t *t) 5 | { 6 | return ctime(&(time_t){*t}); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/compat/time32/difftime32.c: -------------------------------------------------------------------------------- 1 | #include "time32.h" 2 | #include 3 | 4 | double __difftime32(time32_t t1, time32_t t2) 5 | { 6 | return difftime(t1, t2); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/compat/time32/gmtime32.c: -------------------------------------------------------------------------------- 1 | #include "time32.h" 2 | #include 3 | 4 | struct tm *__gmtime32(time32_t *t) 5 | { 6 | return gmtime(&(time_t){*t}); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/compat/time32/localtime32.c: -------------------------------------------------------------------------------- 1 | #include "time32.h" 2 | #include 3 | 4 | struct tm *__localtime32(time32_t *t) 5 | { 6 | return localtime(&(time_t){*t}); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/aarch64/crtn.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | ldp x29,x30,[sp],#16 3 | ret 4 | 5 | .section .fini 6 | ldp x29,x30,[sp],#16 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/arm/crtn.s: -------------------------------------------------------------------------------- 1 | .syntax unified 2 | 3 | .section .init 4 | pop {r0,lr} 5 | bx lr 6 | 7 | .section .fini 8 | pop {r0,lr} 9 | bx lr 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/crti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/musl-1.2.3/crt/crti.c -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/crtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/musl-1.2.3/crt/crtn.c -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/i386/crti.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | .global _init 3 | _init: 4 | sub $12,%esp 5 | 6 | .section .fini 7 | .global _fini 8 | _fini: 9 | sub $12,%esp 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/i386/crtn.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | add $12,%esp 3 | ret 4 | 5 | .section .fini 6 | add $12,%esp 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/x32/crti.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | .global _init 3 | _init: 4 | push %rax 5 | 6 | .section .fini 7 | .global _fini 8 | _fini: 9 | push %rax 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/x32/crtn.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | pop %rax 3 | ret 4 | 5 | .section .fini 6 | pop %rax 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/x86_64/crti.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | .global _init 3 | _init: 4 | push %rax 5 | 6 | .section .fini 7 | .global _fini 8 | _fini: 9 | push %rax 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/crt/x86_64/crtn.s: -------------------------------------------------------------------------------- 1 | .section .init 2 | pop %rax 3 | ret 4 | 5 | .section .fini 6 | pop %rax 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/dir.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define direct dirent 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/poll.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/syscall.h: -------------------------------------------------------------------------------- 1 | #ifndef _SYS_SYSCALL_H 2 | #define _SYS_SYSCALL_H 3 | 4 | #include 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/termios.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/include/wait.h: -------------------------------------------------------------------------------- 1 | #warning redirecting incorrect #include to 2 | #include 3 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cabs.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | double cabs(double complex z) 4 | { 5 | return hypot(creal(z), cimag(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cabsf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float cabsf(float complex z) 4 | { 5 | return hypotf(crealf(z), cimagf(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/carg.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | double carg(double complex z) 4 | { 5 | return atan2(cimag(z), creal(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cargf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float cargf(float complex z) 4 | { 5 | return atan2f(cimagf(z), crealf(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/ccosf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float complex ccosf(float complex z) 4 | { 5 | return ccoshf(CMPLXF(-cimagf(z), crealf(z))); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/ccoshl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | //FIXME 4 | long double complex ccoshl(long double complex z) 5 | { 6 | return ccosh(z); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cexpl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | //FIXME 4 | long double complex cexpl(long double complex z) 5 | { 6 | return cexp(z); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cimag.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | double (cimag)(double complex z) 4 | { 5 | return cimag(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cimagf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float (cimagf)(float complex z) 4 | { 5 | return cimagf(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cimagl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | long double (cimagl)(long double complex z) 4 | { 5 | return cimagl(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/conj.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | double complex conj(double complex z) 4 | { 5 | return CMPLX(creal(z), -cimag(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/conjf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float complex conjf(float complex z) 4 | { 5 | return CMPLXF(crealf(z), -cimagf(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/conjl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | long double complex conjl(long double complex z) 4 | { 5 | return CMPLXL(creall(z), -cimagl(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/cpowf.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | float complex cpowf(float complex z, float complex c) 4 | { 5 | return cexpf(c * clogf(z)); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/creal.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double (creal)(double complex z) 4 | { 5 | return creal(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/crealf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float (crealf)(float complex z) 4 | { 5 | return crealf(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/creall.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double (creall)(long double complex z) 4 | { 5 | return creall(z); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/csinhl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | //FIXME 4 | long double complex csinhl(long double complex z) 5 | { 6 | return csinh(z); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/csqrtl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | //FIXME 4 | long double complex csqrtl(long double complex z) 5 | { 6 | return csqrt(z); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/complex/ctanhl.c: -------------------------------------------------------------------------------- 1 | #include "complex_impl.h" 2 | 3 | //FIXME 4 | long double complex ctanhl(long double complex z) 5 | { 6 | return ctanh(z); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/conf/pathconf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long pathconf(const char *path, int name) 4 | { 5 | return fpathconf(-1, name); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ctype/__ctype_get_mb_cur_max.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "locale_impl.h" 3 | 4 | size_t __ctype_get_mb_cur_max() 5 | { 6 | return MB_CUR_MAX; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ctype/isascii.c: -------------------------------------------------------------------------------- 1 | #include 2 | #undef isascii 3 | 4 | int isascii(int c) 5 | { 6 | return !(c&~0x7f); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ctype/toascii.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | /* nonsense function that should NEVER be used! */ 4 | int toascii(int c) 5 | { 6 | return c & 0x7f; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/dirent/dirfd.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "__dirent.h" 3 | 4 | int dirfd(DIR *d) 5 | { 6 | return d->fd; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/dirent/telldir.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "__dirent.h" 3 | 4 | long telldir(DIR *dir) 5 | { 6 | return dir->tell; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/exit/abort_lock.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | volatile int __abort_lock[1]; 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/arm/fenv.c: -------------------------------------------------------------------------------- 1 | #if !__ARM_PCS_VFP 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/fegetexceptflag.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int fegetexceptflag(fexcept_t *fp, int mask) 4 | { 5 | *fp = fetestexcept(mask); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/feholdexcept.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int feholdexcept(fenv_t *envp) 4 | { 5 | fegetenv(envp); 6 | feclearexcept(FE_ALL_EXCEPT); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/mips/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/mips64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/mipsn32/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/powerpc/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #if defined(_SOFT_FLOAT) || defined(__NO_FPRS__) 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/riscv64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifndef __riscv_flen 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/fenv/sh/fenv-nofpu.c: -------------------------------------------------------------------------------- 1 | #if !__SH_FPU_ANY__ && !__SH4__ 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/internal/defsysinfo.c: -------------------------------------------------------------------------------- 1 | #include "libc.h" 2 | 3 | size_t __sysinfo; 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/internal/i386/defsysinfo.s: -------------------------------------------------------------------------------- 1 | 1: int $128 2 | ret 3 | 4 | .data 5 | .align 4 6 | .hidden __sysinfo 7 | .global __sysinfo 8 | __sysinfo: 9 | .long 1b 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/internal/sh/__shcall.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | hidden int __shcall(void *arg, int (*func)(void *)) 4 | { 5 | return func(arg); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/internal/version.c: -------------------------------------------------------------------------------- 1 | #include "version.h" 2 | #include "libc.h" 3 | 4 | const char __libc_version[] = VERSION; 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/aarch64/dlsym.s: -------------------------------------------------------------------------------- 1 | .global dlsym 2 | .hidden __dlsym 3 | .type dlsym,%function 4 | dlsym: 5 | mov x2,x30 6 | b __dlsym 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/arm/dlsym.s: -------------------------------------------------------------------------------- 1 | .syntax unified 2 | .text 3 | .global dlsym 4 | .hidden __dlsym 5 | .type dlsym,%function 6 | dlsym: 7 | mov r2,lr 8 | b __dlsym 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/arm/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/dlclose.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "dynlink.h" 3 | 4 | int dlclose(void *p) 5 | { 6 | return __dl_invalid_handle(p); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/dlsym.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "dynlink.h" 3 | 4 | void *dlsym(void *restrict p, const char *restrict s) 5 | { 6 | return __dlsym(p, s, 0); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/i386/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/m68k/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/microblaze/dlsym.s: -------------------------------------------------------------------------------- 1 | .global dlsym 2 | .hidden __dlsym 3 | .type dlsym,@function 4 | dlsym: 5 | brid __dlsym 6 | add r7, r15, r0 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/microblaze/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/mips/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/mipsn32/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/or1k/dlsym.s: -------------------------------------------------------------------------------- 1 | .global dlsym 2 | .hidden __dlsym 3 | .type dlsym,@function 4 | dlsym: 5 | l.j __dlsym 6 | l.ori r5, r9, 0 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/or1k/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/powerpc/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/riscv64/dlsym.s: -------------------------------------------------------------------------------- 1 | .global dlsym 2 | .hidden __dlsym 3 | .type dlsym, %function 4 | dlsym: 5 | mv a2, ra 6 | tail __dlsym 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/s390x/dlsym.s: -------------------------------------------------------------------------------- 1 | .global dlsym 2 | .hidden __dlsym 3 | .type dlsym,@function 4 | dlsym: 5 | lgr %r4, %r14 6 | jg __dlsym 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/sh/dlsym_time64.S: -------------------------------------------------------------------------------- 1 | #define __dlsym __dlsym_redir_time64 2 | #define dlsym __dlsym_time64 3 | #include "dlsym.s" 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/x32/dlsym.s: -------------------------------------------------------------------------------- 1 | .text 2 | .global dlsym 3 | .hidden __dlsym 4 | .type dlsym,@function 5 | dlsym: 6 | mov (%rsp),%rdx 7 | jmp __dlsym 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/ldso/x86_64/dlsym.s: -------------------------------------------------------------------------------- 1 | .text 2 | .global dlsym 3 | .hidden __dlsym 4 | .type dlsym,@function 5 | dlsym: 6 | mov (%rsp),%rdx 7 | jmp __dlsym 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/legacy/getpagesize.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | #include "libc.h" 4 | 5 | int getpagesize(void) 6 | { 7 | return PAGE_SIZE; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/legacy/isastream.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int isastream(int fd) 5 | { 6 | return fcntl(fd, F_GETFD) < 0 ? -1 : 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/adjtimex.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int adjtimex(struct timex *tx) 5 | { 6 | return clock_adjtime(CLOCK_REALTIME, tx); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/flock.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int flock(int fd, int op) 5 | { 6 | return syscall(SYS_flock, fd, op); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/gettid.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | #include "pthread_impl.h" 4 | 5 | pid_t gettid(void) 6 | { 7 | return __pthread_self()->tid; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/pivot_root.c: -------------------------------------------------------------------------------- 1 | #include "syscall.h" 2 | 3 | int pivot_root(const char *new, const char *old) 4 | { 5 | return syscall(SYS_pivot_root, new, old); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/setfsgid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int setfsgid(gid_t gid) 5 | { 6 | return syscall(SYS_setfsgid, gid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/setfsuid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int setfsuid(uid_t uid) 5 | { 6 | return syscall(SYS_setfsuid, uid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/syncfs.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | #include "syscall.h" 4 | 5 | int syncfs(int fd) 6 | { 7 | return syscall(SYS_syncfs, fd); 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/linux/vhangup.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | #include "syscall.h" 4 | 5 | int vhangup(void) 6 | { 7 | return syscall(SYS_vhangup); 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/malloc/free.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void free(void *p) 4 | { 5 | __libc_free(p); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/malloc/libc_calloc.c: -------------------------------------------------------------------------------- 1 | #define calloc __libc_calloc 2 | #define malloc __libc_malloc 3 | 4 | #include "calloc.c" 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/malloc/memalign.c: -------------------------------------------------------------------------------- 1 | #define _BSD_SOURCE 2 | #include 3 | 4 | void *memalign(size_t align, size_t len) 5 | { 6 | return aligned_alloc(align, len); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/malloc/realloc.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void *realloc(void *p, size_t n) 4 | { 5 | return __libc_realloc(p, n); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/malloc/replaced.c: -------------------------------------------------------------------------------- 1 | #include "dynlink.h" 2 | 3 | int __malloc_replaced; 4 | int __aligned_alloc_replaced; 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_divzero.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | double __math_divzero(uint32_t sign) 4 | { 5 | return fp_barrier(sign ? -1.0 : 1.0) / 0.0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_divzerof.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | float __math_divzerof(uint32_t sign) 4 | { 5 | return fp_barrierf(sign ? -1.0f : 1.0f) / 0.0f; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_invalid.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | double __math_invalid(double x) 4 | { 5 | return (x - x) / (x - x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_invalidf.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | float __math_invalidf(float x) 4 | { 5 | return (x - x) / (x - x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_oflow.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | double __math_oflow(uint32_t sign) 4 | { 5 | return __math_xflow(sign, 0x1p769); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_oflowf.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | float __math_oflowf(uint32_t sign) 4 | { 5 | return __math_xflowf(sign, 0x1p97f); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_uflow.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | double __math_uflow(uint32_t sign) 4 | { 5 | return __math_xflow(sign, 0x1p-767); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_uflowf.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | float __math_uflowf(uint32_t sign) 4 | { 5 | return __math_xflowf(sign, 0x1p-95f); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_xflow.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | double __math_xflow(uint32_t sign, double y) 4 | { 5 | return eval_as_double(fp_barrier(sign ? -y : y) * y); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/__math_xflowf.c: -------------------------------------------------------------------------------- 1 | #include "libm.h" 2 | 3 | float __math_xflowf(uint32_t sign, float y) 4 | { 5 | return eval_as_float(fp_barrierf(sign ? -y : y) * y); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/ceil.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double ceil(double x) 4 | { 5 | __asm__ ("frintp %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/ceilf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float ceilf(float x) 4 | { 5 | __asm__ ("frintp %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/fabs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double fabs(double x) 4 | { 5 | __asm__ ("fabs %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/fabsf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float fabsf(float x) 4 | { 5 | __asm__ ("fabs %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/floor.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double floor(double x) 4 | { 5 | __asm__ ("frintm %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/floorf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float floorf(float x) 4 | { 5 | __asm__ ("frintm %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/lround.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lround(double x) 4 | { 5 | long n; 6 | __asm__ ("fcvtas %x0, %d1" : "=r"(n) : "w"(x)); 7 | return n; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/lroundf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lroundf(float x) 4 | { 5 | long n; 6 | __asm__ ("fcvtas %x0, %s1" : "=r"(n) : "w"(x)); 7 | return n; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/nearbyint.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nearbyint(double x) 4 | { 5 | __asm__ ("frinti %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/nearbyintf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float nearbyintf(float x) 4 | { 5 | __asm__ ("frinti %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/rint.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double rint(double x) 4 | { 5 | __asm__ ("frintx %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/rintf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float rintf(float x) 4 | { 5 | __asm__ ("frintx %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/round.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double round(double x) 4 | { 5 | __asm__ ("frinta %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/roundf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float roundf(float x) 4 | { 5 | __asm__ ("frinta %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/sqrt.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double sqrt(double x) 4 | { 5 | __asm__ ("fsqrt %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/sqrtf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float sqrtf(float x) 4 | { 5 | __asm__ ("fsqrt %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/trunc.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double trunc(double x) 4 | { 5 | __asm__ ("frintz %d0, %d1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/aarch64/truncf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float truncf(float x) 4 | { 5 | __asm__ ("frintz %s0, %s1" : "=w"(x) : "w"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/finite.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | int finite(double x) 5 | { 6 | return isfinite(x); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/finitef.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | int finitef(float x) 5 | { 6 | return isfinite(x); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/atan2l.s: -------------------------------------------------------------------------------- 1 | .global atan2l 2 | .type atan2l,@function 3 | atan2l: 4 | fldt 4(%esp) 5 | fldt 16(%esp) 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/atanl.s: -------------------------------------------------------------------------------- 1 | .global atanl 2 | .type atanl,@function 3 | atanl: 4 | fldt 4(%esp) 5 | fld1 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/fabs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double fabs(double x) 4 | { 5 | __asm__ ("fabs" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/fabsf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float fabsf(float x) 4 | { 5 | __asm__ ("fabs" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/fabsl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double fabsl(long double x) 4 | { 5 | __asm__ ("fabs" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/log.s: -------------------------------------------------------------------------------- 1 | .global log 2 | .type log,@function 3 | log: 4 | fldln2 5 | fldl 4(%esp) 6 | fyl2x 7 | fstpl 4(%esp) 8 | fldl 4(%esp) 9 | ret 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/log10l.s: -------------------------------------------------------------------------------- 1 | .global log10l 2 | .type log10l,@function 3 | log10l: 4 | fldlg2 5 | fldt 4(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/log2.s: -------------------------------------------------------------------------------- 1 | .global log2 2 | .type log2,@function 3 | log2: 4 | fld1 5 | fldl 4(%esp) 6 | fyl2x 7 | fstpl 4(%esp) 8 | fldl 4(%esp) 9 | ret 10 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/log2l.s: -------------------------------------------------------------------------------- 1 | .global log2l 2 | .type log2l,@function 3 | log2l: 4 | fld1 5 | fldt 4(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/logl.s: -------------------------------------------------------------------------------- 1 | .global logl 2 | .type logl,@function 3 | logl: 4 | fldln2 5 | fldt 4(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/lrint.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lrint(double x) 4 | { 5 | long r; 6 | __asm__ ("fistpl %0" : "=m"(r) : "t"(x) : "st"); 7 | return r; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/rint.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double rint(double x) 4 | { 5 | __asm__ ("frndint" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/rintf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float rintf(float x) 4 | { 5 | __asm__ ("frndint" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/rintl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double rintl(long double x) 4 | { 5 | __asm__ ("frndint" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/sqrtl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double sqrtl(long double x) 4 | { 5 | __asm__ ("fsqrt" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/ldexp.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double ldexp(double x, int n) 4 | { 5 | return scalbn(x, n); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/ldexpf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float ldexpf(float x, int n) 4 | { 5 | return scalbnf(x, n); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/ldexpl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double ldexpl(long double x, int n) 4 | { 5 | return scalbnl(x, n); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lgamma.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "libm.h" 3 | 4 | double lgamma(double x) 5 | { 6 | return __lgamma_r(x, &__signgam); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lgammaf.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "libm.h" 3 | 4 | float lgammaf(float x) 5 | { 6 | return __lgammaf_r(x, &__signgam); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/llround.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long long llround(double x) 4 | { 5 | return round(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/llroundf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long long llroundf(float x) 4 | { 5 | return roundf(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/llroundl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long long llroundl(long double x) 4 | { 5 | return roundl(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lrintf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | /* uses LONG_MAX > 2^24, see comments in lrint.c */ 4 | 5 | long lrintf(float x) 6 | { 7 | return rintf(x); 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lround.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lround(double x) 4 | { 5 | return round(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lroundf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lroundf(float x) 4 | { 5 | return roundf(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/lroundl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long lroundl(long double x) 4 | { 5 | return roundl(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/nan.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nan(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/nanf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float nanf(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/nanl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double nanl(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/nexttowardl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double nexttowardl(long double x, long double y) 4 | { 5 | return nextafterl(x, y); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/powerpc64/fabs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double fabs(double x) 4 | { 5 | __asm__ ("fabs %0, %1" : "=d"(x) : "d"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/powerpc64/fabsf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float fabsf(float x) 4 | { 5 | __asm__ ("fabs %0, %1" : "=f"(x) : "f"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/powerpc64/sqrt.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double sqrt(double x) 4 | { 5 | __asm__ ("fsqrt %0, %1" : "=d"(x) : "d"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/powerpc64/sqrtf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float sqrtf(float x) 4 | { 5 | __asm__ ("fsqrts %0, %1" : "=f"(x) : "f"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/signgam.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "libm.h" 3 | 4 | int __signgam = 0; 5 | 6 | weak_alias(__signgam, signgam); 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/significand.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | double significand(double x) 5 | { 6 | return scalbn(x, -ilogb(x)); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/significandf.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | float significandf(float x) 5 | { 6 | return scalbnf(x, -ilogbf(x)); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/tgammaf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float tgammaf(float x) 4 | { 5 | return tgamma(x); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/atan2l.s: -------------------------------------------------------------------------------- 1 | .global atan2l 2 | .type atan2l,@function 3 | atan2l: 4 | fldt 8(%esp) 5 | fldt 24(%esp) 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/atanl.s: -------------------------------------------------------------------------------- 1 | .global atanl 2 | .type atanl,@function 3 | atanl: 4 | fldt 8(%esp) 5 | fld1 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/fabsf.s: -------------------------------------------------------------------------------- 1 | .global fabsf 2 | .type fabsf,@function 3 | fabsf: 4 | mov $0x7fffffff,%eax 5 | movq %rax,%xmm1 6 | andps %xmm1,%xmm0 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/fabsl.s: -------------------------------------------------------------------------------- 1 | .global fabsl 2 | .type fabsl,@function 3 | fabsl: 4 | fldt 8(%esp) 5 | fabs 6 | ret 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/llrint.s: -------------------------------------------------------------------------------- 1 | .global llrint 2 | .type llrint,@function 3 | llrint: 4 | cvtsd2si %xmm0,%rax 5 | ret 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/llrintf.s: -------------------------------------------------------------------------------- 1 | .global llrintf 2 | .type llrintf,@function 3 | llrintf: 4 | cvtss2si %xmm0,%rax 5 | ret 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/llrintl.s: -------------------------------------------------------------------------------- 1 | .global llrintl 2 | .type llrintl,@function 3 | llrintl: 4 | fldt 8(%esp) 5 | fistpll 8(%esp) 6 | mov 8(%esp),%rax 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/log10l.s: -------------------------------------------------------------------------------- 1 | .global log10l 2 | .type log10l,@function 3 | log10l: 4 | fldlg2 5 | fldt 8(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/log2l.s: -------------------------------------------------------------------------------- 1 | .global log2l 2 | .type log2l,@function 3 | log2l: 4 | fld1 5 | fldt 8(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/logl.s: -------------------------------------------------------------------------------- 1 | .global logl 2 | .type logl,@function 3 | logl: 4 | fldln2 5 | fldt 8(%esp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/lrint.s: -------------------------------------------------------------------------------- 1 | .global lrint 2 | .type lrint,@function 3 | lrint: 4 | cvtsd2si %xmm0,%rax 5 | ret 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/lrintf.s: -------------------------------------------------------------------------------- 1 | .global lrintf 2 | .type lrintf,@function 3 | lrintf: 4 | cvtss2si %xmm0,%rax 5 | ret 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/lrintl.s: -------------------------------------------------------------------------------- 1 | .global lrintl 2 | .type lrintl,@function 3 | lrintl: 4 | fldt 8(%esp) 5 | fistpl 8(%esp) 6 | movl 8(%esp),%eax 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/rintl.s: -------------------------------------------------------------------------------- 1 | .global rintl 2 | .type rintl,@function 3 | rintl: 4 | fldt 8(%esp) 5 | frndint 6 | ret 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/sqrt.s: -------------------------------------------------------------------------------- 1 | .global sqrt 2 | .type sqrt,@function 3 | sqrt: sqrtsd %xmm0, %xmm0 4 | ret 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/sqrtf.s: -------------------------------------------------------------------------------- 1 | .global sqrtf 2 | .type sqrtf,@function 3 | sqrtf: sqrtss %xmm0, %xmm0 4 | ret 5 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/sqrtl.s: -------------------------------------------------------------------------------- 1 | .global sqrtl 2 | .type sqrtl,@function 3 | sqrtl: fldt 8(%esp) 4 | fsqrt 5 | ret 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/atan2l.s: -------------------------------------------------------------------------------- 1 | .global atan2l 2 | .type atan2l,@function 3 | atan2l: 4 | fldt 8(%rsp) 5 | fldt 24(%rsp) 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/atanl.s: -------------------------------------------------------------------------------- 1 | .global atanl 2 | .type atanl,@function 3 | atanl: 4 | fldt 8(%rsp) 5 | fld1 6 | fpatan 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/fabsl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double fabsl(long double x) 4 | { 5 | __asm__ ("fabs" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/log10l.s: -------------------------------------------------------------------------------- 1 | .global log10l 2 | .type log10l,@function 3 | log10l: 4 | fldlg2 5 | fldt 8(%rsp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/log2l.s: -------------------------------------------------------------------------------- 1 | .global log2l 2 | .type log2l,@function 3 | log2l: 4 | fld1 5 | fldt 8(%rsp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/logl.s: -------------------------------------------------------------------------------- 1 | .global logl 2 | .type logl,@function 3 | logl: 4 | fldln2 5 | fldt 8(%rsp) 6 | fyl2x 7 | ret 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/rintl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double rintl(long double x) 4 | { 5 | __asm__ ("frndint" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/sqrt.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double sqrt(double x) 4 | { 5 | __asm__ ("sqrtsd %1, %0" : "=x"(x) : "x"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/sqrtf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float sqrtf(float x) 4 | { 5 | __asm__ ("sqrtss %1, %0" : "=x"(x) : "x"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/sqrtl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double sqrtl(long double x) 4 | { 5 | __asm__ ("fsqrt" : "+t"(x)); 6 | return x; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/ffs.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "atomic.h" 3 | 4 | int ffs(int i) 5 | { 6 | return i ? a_ctz_l(i)+1 : 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/ffsl.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "atomic.h" 3 | 4 | int ffsl(long i) 5 | { 6 | return i ? a_ctz_l(i)+1 : 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/ffsll.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "atomic.h" 3 | 4 | int ffsll(long long i) 5 | { 6 | return i ? a_ctz_64(i)+1 : 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long gethostid() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/issetugid.c: -------------------------------------------------------------------------------- 1 | #define _BSD_SOURCE 2 | #include 3 | #include "libc.h" 4 | 5 | int issetugid(void) 6 | { 7 | return libc.secure; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/misc/uname.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int uname(struct utsname *uts) 5 | { 6 | return syscall(SYS_uname, uts); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/mman/mlockall.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int mlockall(int flags) 5 | { 6 | return syscall(SYS_mlockall, flags); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/mman/munlockall.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int munlockall(void) 5 | { 6 | return syscall(SYS_munlockall); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/mq/mq_close.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int mq_close(mqd_t mqd) 5 | { 6 | return syscall(SYS_close, mqd); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/multibyte/mblen.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int mblen(const char *s, size_t n) 4 | { 5 | return mbtowc(0, s, n); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/multibyte/mbsinit.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int mbsinit(const mbstate_t *st) 4 | { 5 | return !st || !*(unsigned *)st; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/network/if_freenameindex.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void if_freenameindex(struct if_nameindex *idx) 5 | { 6 | free(idx); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/network/in6addr_any.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT; 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/network/in6addr_loopback.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT; 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int res_init() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/passwd/lckpwdf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int lckpwdf() 4 | { 5 | return 0; 6 | } 7 | 8 | int ulckpwdf() 9 | { 10 | return 0; 11 | } 12 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/prng/__seed48.c: -------------------------------------------------------------------------------- 1 | #include "rand48.h" 2 | 3 | unsigned short __seed48[7] = { 0, 0, 0, 0xe66d, 0xdeec, 0x5, 0xb }; 4 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/prng/srand48.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void srand48(long seed) 4 | { 5 | seed48((unsigned short [3]){ 0x330e, seed, seed>>16 }); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/process/posix_spawnattr_destroy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int posix_spawnattr_destroy(posix_spawnattr_t *attr) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/process/s390x/vfork.s: -------------------------------------------------------------------------------- 1 | .global vfork 2 | .type vfork,%function 3 | vfork: 4 | svc 190 5 | .hidden __syscall_ret 6 | jg __syscall_ret 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/process/wait.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | pid_t wait(int *status) 4 | { 5 | return waitpid((pid_t)-1, status, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/sched/sched_yield.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int sched_yield() 5 | { 6 | return syscall(SYS_sched_yield); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/musl-1.2.3/src/setjmp/setjmp.c -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/signal/kill.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int kill(pid_t pid, int sig) 5 | { 6 | return syscall(SYS_kill, pid, sig); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/signal/psiginfo.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void psiginfo(const siginfo_t *si, const char *msg) 4 | { 5 | psignal(si->si_signo, msg); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/signal/sigrtmax.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int __libc_current_sigrtmax() 4 | { 5 | return _NSIG-1; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/signal/sigrtmin.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int __libc_current_sigrtmin() 4 | { 5 | return 35; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stat/futimens.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int futimens(int fd, const struct timespec times[2]) 4 | { 5 | return utimensat(fd, 0, times, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stat/mkfifo.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int mkfifo(const char *path, mode_t mode) 4 | { 5 | return mknod(path, mode | S_IFIFO, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stat/umask.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | mode_t umask(mode_t mode) 5 | { 6 | return syscall(SYS_umask, mode); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/__fclose_ca.c: -------------------------------------------------------------------------------- 1 | #include "stdio_impl.h" 2 | 3 | int __fclose_ca(FILE *f) 4 | { 5 | return f->close(f); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/fgetc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "getc.h" 3 | 4 | int fgetc(FILE *f) 5 | { 6 | return do_getc(f); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/fputc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "putc.h" 3 | 4 | int fputc(int c, FILE *f) 5 | { 6 | return do_putc(c, f); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/getchar.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "getc.h" 3 | 4 | int getchar(void) 5 | { 6 | return do_getc(stdin); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/getchar_unlocked.c: -------------------------------------------------------------------------------- 1 | #include "stdio_impl.h" 2 | 3 | int getchar_unlocked(void) 4 | { 5 | return getc_unlocked(stdin); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/getw.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | int getw(FILE *f) 5 | { 6 | int x; 7 | return fread(&x, sizeof x, 1, f) ? x : EOF; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/getwc.c: -------------------------------------------------------------------------------- 1 | #include "stdio_impl.h" 2 | #include 3 | 4 | wint_t getwc(FILE *f) 5 | { 6 | return fgetwc(f); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/putchar.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "putc.h" 3 | 4 | int putchar(int c) 5 | { 6 | return do_putc(c, stdout); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/putchar_unlocked.c: -------------------------------------------------------------------------------- 1 | #include "stdio_impl.h" 2 | 3 | int putchar_unlocked(int c) 4 | { 5 | return putc_unlocked(c, stdout); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/putw.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | int putw(int x, FILE *f) 5 | { 6 | return (int)fwrite(&x, sizeof x, 1, f)-1; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/putwc.c: -------------------------------------------------------------------------------- 1 | #include "stdio_impl.h" 2 | #include 3 | 4 | wint_t putwc(wchar_t c, FILE *f) 5 | { 6 | return fputwc(c, f); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/setbuf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void setbuf(FILE *restrict f, char *restrict buf) 4 | { 5 | setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/setlinebuf.c: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 2 | #include 3 | 4 | void setlinebuf(FILE *f) 5 | { 6 | setvbuf(f, 0, _IOLBF, 0); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdio/vprintf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int vprintf(const char *restrict fmt, va_list ap) 4 | { 5 | return vfprintf(stdout, fmt, ap); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/abs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int abs(int a) 4 | { 5 | return a>0 ? a : -a; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/atof.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double atof(const char *s) 4 | { 5 | return strtod(s, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/div.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | div_t div(int num, int den) 4 | { 5 | return (div_t){ num/den, num%den }; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/imaxabs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | intmax_t imaxabs(intmax_t a) 4 | { 5 | return a>0 ? a : -a; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/imaxdiv.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | imaxdiv_t imaxdiv(intmax_t num, intmax_t den) 4 | { 5 | return (imaxdiv_t){ num/den, num%den }; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/labs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long labs(long a) 4 | { 5 | return a>0 ? a : -a; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/ldiv.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | ldiv_t ldiv(long num, long den) 4 | { 5 | return (ldiv_t){ num/den, num%den }; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/llabs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long long llabs(long long a) 4 | { 5 | return a>0 ? a : -a; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/stdlib/lldiv.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | lldiv_t lldiv(long long num, long long den) 4 | { 5 | return (lldiv_t){ num/den, num%den }; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/bzero.c: -------------------------------------------------------------------------------- 1 | #define _BSD_SOURCE 2 | #include 3 | #include 4 | 5 | void bzero(void *s, size_t n) 6 | { 7 | memset(s, 0, n); 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/strpbrk.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | char *strpbrk(const char *s, const char *b) 4 | { 5 | s += strcspn(s, b); 6 | return *s ? (char *)s : 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/strrchr.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | char *strrchr(const char *s, int c) 4 | { 5 | return __memrchr(s, c, strlen(s) + 1); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/wcpcpy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s) 4 | { 5 | return wcscpy(d, s) + wcslen(s); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/wcslen.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | size_t wcslen(const wchar_t *s) 4 | { 5 | const wchar_t *a; 6 | for (a=s; *s; s++); 7 | return s-a; 8 | } 9 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/string/wcswcs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | wchar_t *wcswcs(const wchar_t *haystack, const wchar_t *needle) 4 | { 5 | return wcsstr(haystack, needle); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/termios/tcflow.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int tcflow(int fd, int action) 5 | { 6 | return ioctl(fd, TCXONC, action); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/termios/tcflush.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int tcflush(int fd, int queue) 5 | { 6 | return ioctl(fd, TCFLSH, queue); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/cnd_destroy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void cnd_destroy(cnd_t *c) 4 | { 5 | /* For private cv this is a no-op */ 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/cnd_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int cnd_init(cnd_t *c) 4 | { 5 | *c = (cnd_t){ 0 }; 6 | return thrd_success; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/mtx_destroy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void mtx_destroy(mtx_t *mtx) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_attr_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_attr_destroy(pthread_attr_t *a) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_barrierattr_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_barrierattr_destroy(pthread_barrierattr_t *a) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_condattr_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_condattr_destroy(pthread_condattr_t *a) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_getconcurrency.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int pthread_getconcurrency() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_mutexattr_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_mutexattr_destroy(pthread_mutexattr_t *a) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_rwlock_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_rwlock_destroy(pthread_rwlock_t *rw) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_rwlockattr_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_rwlockattr_destroy(pthread_rwlockattr_t *a) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_spin_destroy.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_spin_destroy(pthread_spinlock_t *s) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_spin_init.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_spin_init(pthread_spinlock_t *s, int shared) 4 | { 5 | return *s = 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/pthread_spin_unlock.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | int pthread_spin_unlock(pthread_spinlock_t *s) 4 | { 5 | a_store(s, 0); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/s390x/__unmapself.s: -------------------------------------------------------------------------------- 1 | .text 2 | .global __unmapself 3 | .type __unmapself, @function 4 | __unmapself: 5 | svc 91 # SYS_munmap 6 | svc 1 # SYS_exit 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/sem_destroy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int sem_destroy(sem_t *sem) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/sem_unlink.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int sem_unlink(const char *name) 5 | { 6 | return shm_unlink(name); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/sem_wait.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int sem_wait(sem_t *sem) 4 | { 5 | return sem_timedwait(sem, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/thrd_yield.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | void thrd_yield() 5 | { 6 | __syscall(SYS_sched_yield); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/dev/musl-1.2.3/src/thread/tls.c -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/thread/tss_delete.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void tss_delete(tss_t key) 5 | { 6 | __pthread_key_delete(key); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/time/asctime.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | char *asctime(const struct tm *tm) 4 | { 5 | static char buf[26]; 6 | return __asctime_r(tm, buf); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/time/difftime.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double difftime(time_t t1, time_t t0) 4 | { 5 | return t1-t0; 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/time/localtime.c: -------------------------------------------------------------------------------- 1 | #include "time_impl.h" 2 | 3 | struct tm *localtime(const time_t *t) 4 | { 5 | static struct tm tm; 6 | return __localtime_r(t, &tm); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/time/times.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | clock_t times(struct tms *tms) 5 | { 6 | return __syscall(SYS_times, tms); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/_exit.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | _Noreturn void _exit(int status) 5 | { 6 | _Exit(status); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/chdir.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int chdir(const char *path) 5 | { 6 | return syscall(SYS_chdir, path); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/ctermid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | char *ctermid(char *s) 5 | { 6 | return s ? strcpy(s, "/dev/tty") : "/dev/tty"; 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/dup.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int dup(int fd) 5 | { 6 | return syscall(SYS_dup, fd); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/fdatasync.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int fdatasync(int fd) 5 | { 6 | return syscall_cp(SYS_fdatasync, fd); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/fsync.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | int fsync(int fd) 5 | { 6 | return syscall_cp(SYS_fsync, fd); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getegid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | gid_t getegid(void) 5 | { 6 | return __syscall(SYS_getegid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/geteuid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | uid_t geteuid(void) 5 | { 6 | return __syscall(SYS_geteuid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getgid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | gid_t getgid(void) 5 | { 6 | return __syscall(SYS_getgid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getlogin.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | char *getlogin(void) 5 | { 6 | return getenv("LOGNAME"); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getpgid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t getpgid(pid_t pid) 5 | { 6 | return syscall(SYS_getpgid, pid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getpgrp.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t getpgrp(void) 5 | { 6 | return __syscall(SYS_getpgid, 0); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getpid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t getpid(void) 5 | { 6 | return __syscall(SYS_getpid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getppid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t getppid(void) 5 | { 6 | return __syscall(SYS_getppid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getsid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t getsid(pid_t pid) 5 | { 6 | return syscall(SYS_getsid, pid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/getuid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | uid_t getuid(void) 5 | { 6 | return __syscall(SYS_getuid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/posix_close.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int posix_close(int fd, int flags) 4 | { 5 | return close(fd); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/setpgrp.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | pid_t setpgrp(void) 4 | { 5 | return setpgid(0, 0); 6 | } 7 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/setsid.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | pid_t setsid(void) 5 | { 6 | return syscall(SYS_setsid); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/dev/musl-1.2.3/src/unistd/sync.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "syscall.h" 3 | 4 | void sync(void) 5 | { 6 | __syscall(SYS_sync); 7 | } 8 | -------------------------------------------------------------------------------- /tasks/reverse/arctic/public/reverse-arctic.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/arctic/public/reverse-arctic.tar.gz -------------------------------------------------------------------------------- /tasks/reverse/arctic/task.json: -------------------------------------------------------------------------------- 1 | {"name": "arctic", "author": "keltecc", "flag": "Aero{I_l1ke_jUUUmp_0r13nt3d_pr0gr4mm1ng_1ec6ea6eccc0a28c60cae8c436d9fb3a}"} 2 | -------------------------------------------------------------------------------- /tasks/reverse/syringa/deploy/service/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while true; do 4 | socat TCP-LISTEN:31337,reuseaddr,fork EXEC:"/tmp/syringa/syringa" 5 | done 6 | -------------------------------------------------------------------------------- /tasks/reverse/syringa/deploy/service/syringa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/deploy/service/syringa -------------------------------------------------------------------------------- /tasks/reverse/syringa/desc.md: -------------------------------------------------------------------------------- 1 | Ahh, I really love flowers. 2 | -------------------------------------------------------------------------------- /tasks/reverse/syringa/dev/Makefile: -------------------------------------------------------------------------------- 1 | all: syringa 2 | 3 | .PHONY: * 4 | 5 | syringa: 6 | g++-10 -std=c++2a -o syringa main.cpp src/* -I ./inc -s -O0 7 | strip --strip-all syringa 8 | -------------------------------------------------------------------------------- /tasks/reverse/syringa/dev/syringa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/dev/syringa -------------------------------------------------------------------------------- /tasks/reverse/syringa/public/reverse-syringa.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/public/reverse-syringa.tar.gz -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/Makefile: -------------------------------------------------------------------------------- 1 | all: my_md5 2 | 3 | .PHONY: * 4 | 5 | my_md5: 6 | g++-10 -std=c++2a -o my_md5 my_md5.cpp md5.c 7 | -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/0a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/0b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/0b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/100a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/100a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/100b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/100b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/101a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/101a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/101b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/101b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/102a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/102a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/102b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/102b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/103a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/103a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/103b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/103b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/104a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/104a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/104b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/104b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/105a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/105a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/105b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/105b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/106a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/106a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/106b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/106b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/107a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/107a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/107b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/107b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/108a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/108a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/108b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/108b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/109a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/109a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/109b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/109b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/10a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/10a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/10b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/10b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/110a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/110a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/110b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/110b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/111a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/111a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/111b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/111b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/112a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/112a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/112b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/112b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/113a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/113a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/113b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/113b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/114a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/114a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/114b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/114b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/115a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/115a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/115b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/115b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/116a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/116a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/116b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/116b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/117a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/117a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/117b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/117b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/118a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/118a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/118b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/118b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/119a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/119a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/119b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/119b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/11a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/11a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/11b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/11b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/120a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/120a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/120b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/120b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/121a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/121a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/121b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/121b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/122a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/122a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/122b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/122b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/123a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/123a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/123b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/123b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/124a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/124a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/124b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/124b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/125a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/125a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/125b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/125b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/126a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/126a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/126b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/126b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/127a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/127a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/127b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/127b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/12a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/12a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/12b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/12b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/13a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/13a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/13b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/13b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/14a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/14a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/14b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/14b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/15a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/15a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/15b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/15b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/16a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/16a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/16b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/16b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/17a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/17a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/17b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/17b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/18a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/18a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/18b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/18b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/19a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/19a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/19b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/19b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/1a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/1a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/1b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/1b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/20a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/20a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/20b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/20b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/21a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/21a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/21b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/21b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/22a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/22a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/22b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/22b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/23a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/23a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/23b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/23b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/24a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/24a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/24b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/24b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/25a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/25a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/25b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/25b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/26a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/26a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/26b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/26b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/27a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/27a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/27b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/27b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/28a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/28a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/28b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/28b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/29a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/29a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/29b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/29b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/2a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/2b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/30a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/30a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/30b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/30b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/31a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/31a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/31b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/31b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/32a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/32a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/32b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/32b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/33a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/33a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/33b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/33b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/34a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/34a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/34b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/34b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/35a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/35a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/35b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/35b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/36a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/36a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/36b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/36b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/37a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/37a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/37b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/37b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/38a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/38a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/38b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/38b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/39a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/39a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/39b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/39b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/3a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/3b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/40a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/40a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/40b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/40b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/41a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/41a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/41b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/41b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/42a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/42a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/42b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/42b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/43a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/43a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/43b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/43b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/44a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/44a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/44b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/44b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/45a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/45a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/45b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/45b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/46a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/46a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/46b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/46b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/47a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/47a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/47b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/47b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/48a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/48a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/48b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/48b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/49a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/49a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/49b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/49b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/4a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/4b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/50a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/50a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/50b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/50b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/51a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/51a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/51b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/51b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/52a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/52a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/52b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/52b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/53a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/53a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/53b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/53b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/54a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/54a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/54b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/54b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/55a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/55a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/55b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/55b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/56a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/56a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/56b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/56b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/57a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/57a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/57b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/57b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/58a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/58a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/58b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/58b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/59a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/59a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/59b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/59b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/5a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/5a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/5b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/5b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/60a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/60a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/60b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/60b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/61a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/61a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/61b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/61b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/62a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/62a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/62b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/62b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/63a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/63a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/63b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/63b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/64a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/64a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/64b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/64b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/65a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/65a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/65b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/65b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/66a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/66a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/66b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/66b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/67a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/67a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/67b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/67b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/68a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/68a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/68b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/68b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/69a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/69a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/69b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/69b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/6a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/6b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/70a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/70a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/70b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/70b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/71a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/71a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/71b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/71b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/72a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/72a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/72b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/72b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/73a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/73a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/73b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/73b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/74a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/74a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/74b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/74b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/75a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/75a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/75b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/75b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/76a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/76a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/76b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/76b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/77a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/77a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/77b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/77b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/78a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/78a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/78b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/78b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/79a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/79a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/79b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/79b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/7a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/7b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/80a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/80a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/80b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/80b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/81a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/81a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/81b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/81b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/82a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/82a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/82b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/82b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/83a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/83a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/83b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/83b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/84a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/84a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/84b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/84b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/85a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/85a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/85b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/85b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/86a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/86a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/86b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/86b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/87a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/87a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/87b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/87b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/88a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/88a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/88b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/88b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/89a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/89a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/89b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/89b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/8a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/8b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/90a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/90a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/90b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/90b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/91a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/91a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/91b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/91b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/92a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/92a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/92b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/92b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/93a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/93a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/93b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/93b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/94a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/94a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/94b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/94b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/95a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/95a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/95b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/95b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/96a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/96a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/96b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/96b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/97a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/97a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/97b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/97b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/98a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/98a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/98b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/98b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/99a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/99a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/99b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/99b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/9a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/9a -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/blocks/9b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/blocks/9b -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/my_fastcoll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/my_fastcoll -------------------------------------------------------------------------------- /tasks/reverse/syringa/solution/my_md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/reverse/syringa/solution/my_md5 -------------------------------------------------------------------------------- /tasks/reverse/syringa/task.json: -------------------------------------------------------------------------------- 1 | {"name": "syringa", "author": "keltecc", "flag": "Aero{c0nGR4tz_y0U_h4ve_maD3_a_h4shq1une}"} 2 | -------------------------------------------------------------------------------- /tasks/web/empathy/deploy/api/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.73.0 2 | uvicorn==0.17.4 3 | cryptography==36.0.1 4 | PyJWT==1.7.1 5 | pydantic==1.9.0 6 | aioredis==2.0.1 7 | -------------------------------------------------------------------------------- /tasks/web/empathy/deploy/flag.env: -------------------------------------------------------------------------------- 1 | FLAG=Aero{y0u_mu5t_w0rk_1n_symm3try_y0u_mu5t_e4rn_th31r_emp4thy} 2 | -------------------------------------------------------------------------------- /tasks/web/empathy/desc.md: -------------------------------------------------------------------------------- 1 | Can you hear the silence? Can you see the dark? 2 | -------------------------------------------------------------------------------- /tasks/web/empathy/public/web-empathy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroCTF/aero-ctf-2022/0da6f930edd93928bcca74185567847ac738fc9b/tasks/web/empathy/public/web-empathy.tar.gz -------------------------------------------------------------------------------- /tasks/web/empathy/task.json: -------------------------------------------------------------------------------- 1 | {"name": "empathy", "author": "keltecc", "flag": "Aero{y0u_mu5t_w0rk_1n_symm3try_y0u_mu5t_e4rn_th31r_emp4thy}"} 2 | --------------------------------------------------------------------------------