Skip to content

Proper way to submit data #582

Answered by hackathi
zinzloun asked this question in Q&A
Discussion options

You must be logged in to vote

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:

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()

Replies: 8 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by SR4ven
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants
Converted from issue

This discussion was converted from issue #424 on December 04, 2021 23:06.