yuhui518

Results 14 comments of yuhui518

Follow these steps,I compiled arm64 for the boost library: 1.download boost from https://www.boost.org/users/history/version_1_84_0.html ,the version is 1.84.0 2.open "x64 Native Tools Command Prompt for vs 2022",and cd to the root...

Now,vs2022 support libfuzzer on x86 and x64,but it can't run on win11 arm64.And vs2022 does not supoort compile arm with libfuzzer.

I compile the winafl in Windows 10, Visual Studio 2022: 1.mkdir build64-debug && cd build64-debug 2.cmake -G"Visual Studio 17 2022" -A x64 .. -DDynamoRIO_DIR=D:\downnload\DynamoRIO-Windows-10.0.19824\cmake -DUSE_COLOR=1 -DUSE_DRSYMS=1 3.cmake --build . --config...

And I run this: C:\Users\User\Desktop\Tools\Fuzzing\DRRUN\DynamoRIO-Windows-8.0.18929\bin64\drrun.exe -c winafl.dll -debug -target_module test_gdiplus.exe -target_offset 0x16e0 -fuzz_iterations 10 -nargs 2 -- test_gdiplus.exe input.bmp there is no log occured.

I fuzz my test.exe in windows 10,Visual Studio 2022,it runs normal.When I move it and winafl to win11arm virtual machine,it resluts in a timeout.So,is it a bug in win11?

I also encounted this problem in win11arm virtual machine.

@DebuggingSystems Have you compiled a program that can run on Win11 ARM? @Nzoth9 I am interested in this feature as well.But I use opencppcoverage tool to get code coverage.Opencppcoverage can...

@DebuggingSystems Thanks for your configuration changes,I could make it ,but I can't build it. I use vs2019 vcvarsamd64_arm64.bat. ``` mkdir build && cd build cmake -G"Visual Studio 16 2019" -A...

It seems that Win11-ARM64 does not support the python2.7-Win32com library

Yeah,I solve this problem.I replace the two prerequisites: ``` double click pywin32-228.win-amd64-py2.7.exe pip install numpy-1.13.0-cp27-none-win_amd64.whl ``` download pywin32-228.win-amd64-py2.7.exe from "https://github.com/mhammond/pywin32/releases/download/b228/pywin32-228.win-amd64-py2.7.exe"; download numpy-1.13.0-cp27-none-win_amd64.whl from "https://pypi.org/project/numpy/1.13.0/#files".