I am learning some basic concepts about XSS and now I want to see what's gonna happen if I copy all cookies related to one site and paste it in a clean browser tab (e.g. open a incognito tab or open another browser).
What's the proper way to do this? What tools do you guys use?
I've tried copying my own cookies with document.cookie and then open an incognito window, open the same website, then in the console tab document.cookie = 'the whole cookie string'.
But problems are:
some subdomain cookies are not displayed by
document.cookie.I can't send the copied cookies from the initial reuqest(I don't know whether if this will affect the result I am gonna see)
I have to manually copy and add e.g. http only cookies.
Anyway, is there an all-in-one solution for this, instead of manually editing the cookies?

