Ff HttpRequester addon - loading data files for publication

Does anyone know how to send a file to this addon? I know it's hot to send post data but not with files

+3


source to share


1 answer


I use this (found in Sending a file via POST using raw HTTP (Putty) ):

nc -l -p 1090 > income-http.txt

      

and in the code:



<form action="http://localhost:1090/upload_file.php" 
    method="post" enctype="multipart/form-data">

      

after that add content type with multipart/form-data; boundary=XXX

and choose to load content from this file

0


source







All Articles