11 lines
592 B
Bash
11 lines
592 B
Bash
|
#!/usr/bin/env bash
|
|||
|
|
|||
|
curl \
|
|||
|
'https://nsis.ru/handle-form/1314895756519276544/' \
|
|||
|
-X POST \
|
|||
|
-H 'X-Requested-With: XMLHttpRequest' \
|
|||
|
-H 'Content-Type: multipart/form-data; boundary=---------------------------330424154228665440354056616977' \
|
|||
|
-c cookies.txt -b cookies.txt \
|
|||
|
--data-binary $'-----------------------------330424154228665440354056616977\r\nContent-Disposition: form-data; name="licenseplate"\r\n\r\nМ976ММ777\r\n-----------------------------330424154228665440354056616977\r\nContent-Disposition: form-data; name="requestdate"\r\n\r\n2025-02-13' \
|
|||
|
| jq ".data.processId"
|