Multipart Posting Broken
-
Multipart posting is broken or I'm just dumb.
I've been working on a config for an undisclosed website that requires multipart posts to complete the task.In the video provided I paste the multipart data, I want to have posted. After switching to loliscript and back the information pasted has disappeared.
I'm confused
https://gyazo.com/e22a2168ab06536aedefb0cba96e4fb4REQUEST GET "https://www.surveymonkey.com/r/KWWHZY3" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko" HEADER "Pragma: no-cache" HEADER "Accept: */*" FUNCTION CurrentUnixTime -> VAR "START" PARSE "<SOURCE>" LR "<input type=\"hidden\" id=\"survey_data\" name=\"survey_data\" value=\"" "\" />" -> VAR "DATA" FUNCTION CurrentUnixTime -> VAR "END" FUNCTION Compute "<END> - <START>" -> VAR "TAKEN" REQUEST GET "https://www.surveymonkey.com/r/KWWHZY3" Multipart HEADER "User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Mobile Safari/537.36" HEADER "sec-fetch-user: ?1" HEADER "upgrade-insecure-requests: 1" HEADER "origin: https://www.surveymonkey.com" HEADER "referer: https://www.surveymonkey.com/r/KWWHZY3"
the multipart information I am failing to work with is
524254594: 3465967923 524255260: 3465970231 524255491: 3465971501 524260186: 3466001997 524260452: 3466003926 524260593: 3466004794 524260703: 3466005568 524261406: 3466009835 524261778[]: 3466012250 524261846: no survey_data: <DATA> response_quality_data: {"question_info":{"qid_524254594":{"number":1,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[2,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524255260":{"number":2,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524255491":{"number":3,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[1,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524260186":{"number":4,"type":"single_choice_vertical","option_count":2,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[2,1],"input_method":null,"is_hybrid":false},"qid_524260452":{"number":5,"type":"single_choice_vertical","option_count":4,"has_other":false,"other_selected":null,"relative_position":[[2,0]],"dimensions":[4,1],"input_method":null,"is_hybrid":false},"qid_524260593":{"number":6,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524260703":{"number":7,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524261406":{"number":8,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524261778":{"number":9,"type":"multiple_choice_vertical_two_col","option_count":5,"has_other":false,"other_selected":null,"relative_position":[[1,0]],"dimensions":[3,2],"input_method":null,"is_hybrid":false},"qid_524261846":{"number":10,"type":"open_ended","option_count":null,"has_other":false,"other_selected":null,"relative_position":null,"dimensions":null,"input_method":"text_typed","is_hybrid":false}},"start_time":<START>,"end_time":<END>,"time_spent":<TAKEN>,"previous_clicked":false,"has_backtracked":false,"bi_voice":{}} is_previous: false disable_survey_buttons_on_submit:
thanks, landal
-
Select multipart in the request type dropdown and then hover on the black box that comes out to see the correct syntax. One piece of data per line. Your requests are both GET so of course the value of your multipart data won't get saved, you need to select POST.