You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have debugged the http-server for netcat. Running in WSH did this: ncat.exe -klp 8080 -e "C:/Windows/SysWOW64/cscript.exe //Nologo httpd.session.wsf"
I wanted to try socat instead of netcat and I can't figure out how to run it. I tried this, but I don't get an answer: socat.exe tcp-listen:8080,keepalive exec:"C\:/Windows/SysWOW64/cscript.exe //Nologo httpd.session.wsf"
Probably something is missing. httpd.session.wsf script outputs headers and html-document to stdout.
The text was updated successfully, but these errors were encountered:
I read the channel with errors in the terminal. I see an error during execution in the stdin read statement. Apparently there is no data in the standard input.
While I was waiting, I read the manual http://www.dest-unreach.org/socat/doc/socat.html
I tried all the options. I picked up such a working option: D:\work\httpd>C:/bin/socat/socat.exe tcp-listen:8080,keepalive,fork exec:"C\:/Windows/SysWOW64/cscript.exe //Nologo D\:/work/httpd/httpd.session.wsf",pipes
I have debugged the http-server for netcat. Running in WSH did this:
ncat.exe -klp 8080 -e "C:/Windows/SysWOW64/cscript.exe //Nologo httpd.session.wsf"
I wanted to try socat instead of netcat and I can't figure out how to run it. I tried this, but I don't get an answer:
socat.exe tcp-listen:8080,keepalive exec:"C\:/Windows/SysWOW64/cscript.exe //Nologo httpd.session.wsf"
Probably something is missing. httpd.session.wsf script outputs headers and html-document to stdout.
The text was updated successfully, but these errors were encountered: