Still trying to use abyss and i have some problems.
How can i read multipart data?
I've figured it out for normal POST data <input type=text>, but the STDIN command doesnt work for binary data.
Example html
In the help file about STDIN (PBCC) it is written "doesn't work with pipes".
But Abyss is sending the form data via a pipe...
Life was much easier with Xitami...
How can i read multipart data?
I've figured it out for normal POST data <input type=text>, but the STDIN command doesnt work for binary data.
Example html
Code:
<html><body> <h1>TEST</h1> <form action='http://server/cgi/env.exe' method='post' enctype='multipart/form-data'> <input type='file' name='filename.jpg'><br> <textarea name='description' rows=5 cols=60>Description here</textarea> <input type='hidden' value='2' name='record'> <input type='submit' value='send file'></form> </body></html>
But Abyss is sending the form data via a pipe...
Life was much easier with Xitami...
Comment