Difference between revisions of "Scripting file downloads from secure sites"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "==Purpose== I need to automate downloading files from a site requiring credentials. However, the site also uses a "Trusted this device" cookie as well. ==Process== I started...") |
Michael.mast (talk | contribs) |
||
Line 4: | Line 4: | ||
==Process== | ==Process== | ||
I started with using Lynx as I could log into the web form. This allowed me to save session cookies, but I had an issue with the trusted device cookie. Curl seems to be the answer as I can post data, save cookies, and create an additional "session" using the saved data. Though I was looking forward to using Lynx, learning curl will be more beneficial in the long run. | I started with using Lynx as I could log into the web form. This allowed me to save session cookies, but I had an issue with the trusted device cookie. Curl seems to be the answer as I can post data, save cookies, and create an additional "session" using the saved data. Though I was looking forward to using Lynx, learning curl will be more beneficial in the long run. | ||
− | <ref>https://www.linuxquestions.org/questions/programming-9/click-%27submit%27-in-a-remote-web-form-from-bash-really-882839/</ref><ref>https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies</ref><ref>https://williamjxj.wordpress.com/2010/12/17/curl-vs-wget-vs-lynx/</ref><ref>https://stackoverflow.com/questions/51882330/curl-or-lynx-scripting-with-chrome-cookie</ref> | + | <ref>https://www.linuxquestions.org/questions/programming-9/click-%27submit%27-in-a-remote-web-form-from-bash-really-882839/</ref><ref>https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies</ref><ref>https://williamjxj.wordpress.com/2010/12/17/curl-vs-wget-vs-lynx/</ref><ref>https://stackoverflow.com/questions/51882330/curl-or-lynx-scripting-with-chrome-cookie</ref><ref>http://arquivo.splat-n.com/scripts/lynx-saving-cookies-and-scripting/</ref> |
<br> | <br> | ||
<br> | <br> |
Revision as of 07:37, 17 August 2018
Purpose
I need to automate downloading files from a site requiring credentials. However, the site also uses a "Trusted this device" cookie as well.
Process
I started with using Lynx as I could log into the web form. This allowed me to save session cookies, but I had an issue with the trusted device cookie. Curl seems to be the answer as I can post data, save cookies, and create an additional "session" using the saved data. Though I was looking forward to using Lynx, learning curl will be more beneficial in the long run.
[1][2][3][4][5]
I figured out I need to do the following
- POST login information to the login form, while sending the trusted device cookie.
- Save the session cookie.
- Download the files using both the session and trusted device cookie.
So far I have the following
curl -c temp.file -b xxxxx=xxxxxxx -d 'username=xxx&password=xxx&Login.x=27&Login.y=8&login-form-type=pwd&CUR_ST_PAGE=file+login&CUR_ST_ERROR&CUR_ST_ERROR_CODE&CUR_ST_USERNAME=unauthenticated&CUR_ST_LOCATION'
- ↑ https://www.linuxquestions.org/questions/programming-9/click-%27submit%27-in-a-remote-web-form-from-bash-really-882839/
- ↑ https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies
- ↑ https://williamjxj.wordpress.com/2010/12/17/curl-vs-wget-vs-lynx/
- ↑ https://stackoverflow.com/questions/51882330/curl-or-lynx-scripting-with-chrome-cookie
- ↑ http://arquivo.splat-n.com/scripts/lynx-saving-cookies-and-scripting/