Upfile_other.asp/upload_other.asp, etc. Use the upload_wj.inc template to upload a part. You can use filepath to construct a truncated path such as. asp % 00 for upload.
But not all of them will succeed. The main points are the following errors:
1. Microsoft VBScript runtime error 800a01f4 variable undefined: 'upload' row 12
This error cannot be solved. The corresponding statement set upload = new upload_file
The cause of the error is that the asp script specifies to force the variable to be affirmed first, that is, the var upload statement must be added before. There is no such statement here. So it cannot be successful.
2. Microsoft VBScript runtime error 800a0005 invalid process call or parameter: 'mid ', upload_wj.inc line 76
This error occurs because the Content-Length of the post data is not strictly equal to the actual data of the post data. I usually set the Content-Length to a longer value, and then add a lot of text breaks to the post data, it can always meet the requirement that the actually submitted post data is within the Length of Content-Length, resulting in.
Solution: Change Content-Length to a valid Length.
From hi.baidu.com/it_Fsecurity