tr4v3ler
tr4v3ler
In my session: ``` post_test_case_callbacks=[check_alive] restart_callbacks=[reset_target] ``` Implementation of check_alive: ``` def check_alive(): g_target_ip_addr = "x.x.x.x" command = ["ping", "-c", "1", g_target_ip_addr] # noinspection PyTypeChecker message = "alive() sending a...
Referring to wiki, I execute the following commands to compile 32-bit and 64 bit versions respectively: ``` # 32bit mkdir build32 && cd build32 cmake -DCMAKE_C_COMPILER_ARG1="-m32" -DENABLE_UNIT_TESTS=OFF -DENABLE_FUNC_TESTS=OFF -DENABLE_MULTILIB=ON -DCMAKE_INSTALL_LIBDIR=lib/i386-linux-gnu...
LLVM version: 14.0.0 target source code: ```c if (cd->compat_flag == true) { if (copy_from_user(&data_compat, argp, // if.then.i189 sizeof(data_compat))) { return -EFAULT; } } else { if (copy_from_user(&data, argp, // if.then.i...
This error frequently occurs, making it impossible for the test to continue. Is there any way to solve or temporarily avoid it? ``` 2023/08/28 16:19:10 failed to create instance: failed...
When I want to view coverage, it failed. ``` failed to generate coverage profile: coverage doesn't match any coverage callbacks ``` my cross-arch environment: ``` mkdir -p ~/bin/arm64 ln -s...
I use the below command to generate coverage report: ``` ./bin/syz-cover --kernel_obj /path/to/kernel/out/target/product/xxx/obj/KERNEL_OBJ ./rawcover ``` but it fails: ``` /path/to/kernel/out/target/product/xxx/obj/KERNEL_OBJ/vmlinux doesn't contain coverage callbacks (set CONFIG_KCOV=y on linux) ``` I...
wsl linux kernel: ``` $ uname -a Linux DESKTOP-B5S3EN5 5.15.167.4-microsoft-standard-WSL2 #1 SMP Tue Nov 5 00:21:55 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux ``` then execute cmds: ``` $ usbipd list...