socket.error: [Errno 115] Operation now in progress #569
Replies: 5 comments
-
@jtpereyda Help please! |
Beta Was this translation helpful? Give feedback.
-
I didn't come accross this error before. What target do you fuzz? Can you share your |
Beta Was this translation helpful? Give feedback.
-
One quick thing to try: install boofuzz from the latest source on master. I
recently PR’d some behavior that may help into master, but it hasn’t been
released yet.
…On Thu, May 9, 2019 at 4:58 AM CQ ***@***.***> wrote:
I didn't come accross this error before. What target do you fuzz? Can you
share your boofuzz-http.py or provide more details about your fuzzing
context?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#270 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAB3Z2LBPBEA6Y4VJSWKGQLPUQGW3ANCNFSM4HLQ3OHA>
.
|
Beta Was this translation helpful? Give feedback.
-
Installing from source: https://github.com/jtpereyda/boofuzz/blob/master/INSTALL.rst#from-source |
Beta Was this translation helpful? Give feedback.
-
This answer to a similar problem guesses that this is caused by the I can't remember seeing anything about nonblocking sockets in our socket_connection class, so I don't get why you are experiencing this issue. I will have a closer look at this later. Ref Could this be an issue caused by the target you are fuzzing being overloaded/stormed by the amount of packets you are sending? To prevent this you could set a Alternatively you could give the |
Beta Was this translation helpful? Give feedback.
-
Traceback (most recent call last):
File "boofuzz-http.py", line 75, in
main()
File "boofuzz-http.py", line 71, in main
session.fuzz()
File "/usr/local/lib/python2.7/dist-packages/boofuzz/sessions.py", line 574, in fuzz
self._main_fuzz_loop(self._iterate_protocol())
File "/usr/local/lib/python2.7/dist-packages/boofuzz/sessions.py", line 677, in _main_fuzz_loop
self._fuzz_current_case(*fuzz_args)
File "/usr/local/lib/python2.7/dist-packages/boofuzz/sessions.py", line 1379, in _fuzz_current_case
target.open()
File "/usr/local/lib/python2.7/dist-packages/boofuzz/sessions.py", line 83, in open
self._target_connection.open()
File "/usr/local/lib/python2.7/dist-packages/boofuzz/socket_connection.py", line 158, in open
self._sock.connect((self.host, self.port))
File "/usr/lib/python2.7/socket.py", line 228, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 115] Operation now in progress
Beta Was this translation helpful? Give feedback.
All reactions