You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Store cookie from the website --
curl --cookie-jar /tmp/wbla_cookie.txt https://arla.neva.gov.in/ > /dev/null
Note the cookie ASP.NET_SessionId
Fetch another resource from the same website and the same cookie jar --
curl --cookie-jar /tmp/wbla_cookie.txt --cookie /tmp/wbla_cookie.txt https://arla.neva.gov.in/2024/css/bootstrap.min.css
The cookie ASP.NET_SessionId is replaced by ASP.NET_SessionID
I expected the following
The cookie jar file must have both ASP.NET_SessionId and ASP.NET_SessionID cookie as seen in popular browsers like Firefox and Chromium. Curl must also send both the cookies
curl/libcurl version
curl 8.9.1-r1 and 7.88.1
operating system
Gentoo and Debian 12.7
The text was updated successfully, but these errors were encountered:
I did this
Store cookie from the website --
curl --cookie-jar /tmp/wbla_cookie.txt https://arla.neva.gov.in/ > /dev/null
Note the cookie ASP.NET_SessionId
Fetch another resource from the same website and the same cookie jar --
curl --cookie-jar /tmp/wbla_cookie.txt --cookie /tmp/wbla_cookie.txt https://arla.neva.gov.in/2024/css/bootstrap.min.css
The cookie ASP.NET_SessionId is replaced by ASP.NET_SessionID
I expected the following
The cookie jar file must have both ASP.NET_SessionId and ASP.NET_SessionID cookie as seen in popular browsers like Firefox and Chromium. Curl must also send both the cookies
curl/libcurl version
curl 8.9.1-r1 and 7.88.1
operating system
Gentoo and Debian 12.7
The text was updated successfully, but these errors were encountered: