I want to grab all the cookies a website send to the user when someone visit a web. I run WGET with the following configuration:
wget --keep-session-cookies --save-cookies cookies.txt www.google.com
On cookies.txt I can see:
.google.com TRUE    /   FALSE   1603387864  NID 202=[SUPER_LONG_UGLY_VALUE]
.google.com TRUE    /   TRUE    1590168664  1P_JAR  2020-04-22-17
But when I check on the browser the cookies that are sent to my machine, I can see around 20.
I have also tried using cookie-jar on python3 and urllib, but same result.
Is there any way to get those 20 cookies using WGET or CURL or Python?
