-
Beta Was this translation helpful? Give feedback.
Replies: 8 comments
-
If only a long string value ( |
Beta Was this translation helpful? Give feedback.
-
You only send a carriage return, try sending a newline as well. Windows line endings are Try this: ses = Session(target = Target(connection = SocketConnection(host, port, proto='tcp')))
s_initialize("CM_Service")
s_string("FUZZ")
s_string("\r\n", fuzzable = False)
ses.connect(s_get("CM_Service"))
ses.fuzz() |
Beta Was this translation helpful? Give feedback.
-
@mistressofjellyfish @cq674350529 Can I abuse of your kind support asking another question?
with no luck. It seems to me that the proper way is to set an handler but I'm not able to understand which one and how to code it. Could you please give me a hint about that? |
Beta Was this translation helpful? Give feedback.
-
Glad to see that you were able to fix your problem @zinzloun! As for your second question, one of the session parameters |
Beta Was this translation helpful? Give feedback.
-
@SR4ven |
Beta Was this translation helpful? Give feedback.
-
As an aside: the monitor interface has changed drastically from the release version to the current master. If possible for you, install from source and use that version, using custom monitors is more documented there. |
Beta Was this translation helpful? Give feedback.
-
@zinzloun you're right, these options are not released to pip yet. You could install boofuzz from source as described here. That should give you access to those options. |
Beta Was this translation helpful? Give feedback.
-
@SR4ven ...and you were right suggesting to install from source, then I was able to configure the threshold as follows: |
Beta Was this translation helpful? Give feedback.
You only send a carriage return, try sending a newline as well. Windows line endings are
\r\n
, and depending on the source of your target it may accept a single\n
as well.Try this: