-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Help with running as server #45
Comments
It should work like than (I see in the example command lines on server you have port 800 and in one client port 8000 but I assume that's a typo in a bug report). Do you get any error messages on either client or server? What's the exact behavior you are experiencing? |
Yes,sorry my bad.I meant port 8000 on both. I can see the port 8000 listening but it has 0 connections,and the samples are not saved at the server_samples dir but in the samples dir |
I just tried to reproduce and everything appears to be running normally for me. My commands Server:
Client:
Using the test binary provided with Jackalope and starting with a single input sample. Note some server behavior that you might not expect
|
Sorry, pressed send too soon, updated comment. |
That makes sense.Thanks for the quick response.Will let the fuzzer go through all the samples first |
One other thing, you might want to avoid pointing both the client and the server to the same output directory. While that might work due to server using different file and directory names in the output, I don't have a high degree of confidence this is always the case. |
Understood.Will it create state.dat in the client output dir?As that way would possible to resume fuzzing from the client dir with mupltiple threads |
Yes, both client and server will save state periodically in the output dir. That way you can resume both. But even if you don't resume the client (and resume the server), the client should still be able to pick up the latest samples from the server. |
Understood.Thank you so much for answering my questions |
No matter what i seem to try,cannot get Jackalope to work with server instance (fuzzer.exe -start_server 127.0.0.1:800 -out outdir ) and then connect the client (fuzzer.exe -server 127.0.0.1:8000 ...).
Any example how to properly use server commands?
The text was updated successfully, but these errors were encountered: