Closed hihijskim closed 2 years ago
When you run set AFL_CUSTOM_DLL_ARGS=1337 && afl-fuzz.exe ...
what happens is AFL_CUSTOM_DLL_ARGS
gets defined as 1337[SPACE]
. getaddrinfo
then fails to recognize it as port, tries to find a service with that name and fails.
You should either run it as set AFL_CUSTOM_DLL_ARGS=1337&& afl-fuzz.exe ...
or split it in two commands.
Thank you very much!
Hello, Team. I'm now testing winafl servermode and I'm stuck due to getaddrinfo failure.
To test the functionality, I have used existing test_servermode.exe and disabled all firewall profiles. It fails inside the custom_winafl_server.c code, so it seems all the configurable parameters(such as AFL_CUSTOM_DLL_ARGS, -l etc..) are properly inserted. https://github.com/googleprojectzero/winafl/blob/master/custom_winafl_server.c#L192
I have no idea how to solve this and continue test it. Would you please help me?
Thank you very much.
I'm using this version of Windows