-
Hi, I used the "--cookies-from-browser" option in the command line, and since cookies are sensitive files, I'm asking where do they save after they are extracted? What happens to the file? |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Sep 22, 2024
Replies: 1 comment
-
Nowhere. They stay in memory. Your browser is storing its cookies in an SQLite3 database inside the profile folder, and gallery-dl is loading them from there. They are not getting written to any other file on disk, unless you use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Tomajjs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nowhere. They stay in memory.
Your browser is storing its cookies in an SQLite3 database inside the profile folder, and gallery-dl is loading them from there. They are not getting written to any other file on disk, unless you use
--cookies-export
.