0
I need to save cookies
of some accounts that authenticate my APP on Twitter, searched the web and found something like:?
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
#HttpOnly_.twitter.com TRUE / TRUE 0 _twitter_sess BAh7DCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCE5GrqRcAToMY3NyZl9p%250AZCIlNDAyMmVkNWY3ZmNiYzdmNGIwZjM5NTZhOTM4ODU1MmM6B2lkIiU1YWJm%250AMWEzYmUxZWM3MmUwYzgzZjZlNzE1MTYwOWU5MjofbG9naW5fdmVyaWZpY2F0%250AaW9uX3VzZXJfaWRsKwdWcHFVOiJsb2dpbl92ZXJpZmljYXRpb25fcmVxdWVz%250AdF9pZCIlSDUyNDduWjdMZThhVVZkY21mWEw1YVVlT0ZaUnNYTHI6CXVzZXJs%250AKwdWcHFV--5148e6c684aadb571a79e48480b6c65398770db9
.twitter.com TRUE / TRUE 1497433103 ct0 b59149399feb3cb9bf073a4f6c8ac99f
.twitter.com TRUE / FALSE 1560483503 guest_id v1%3A149741150369212010
.twitter.com TRUE / FALSE 1812771541 ads_prefs "HBERAAA="
#HttpOnly_.twitter.com TRUE / TRUE 1544672341 kdt eyYcfbtxCwHOWoJ2f2cqPC7CozDRWdoddbgMIWnM
.twitter.com TRUE / FALSE 1812771541 remember_checked_on 0
.twitter.com TRUE / TRUE 0 twid "u=1433497686"
#HttpOnly_.twitter.com TRUE / TRUE 0 auth_token 4faa69fd29e85734f2db445239d0e0d81a6d7afc
twitter.com FALSE / FALSE 0 lang pt
This I found in this domain: http://twitterlike.com.br/api/cookie/
I’d like to know how to do it and what it’s for Netscape HTTP Cookie File.
This is a cookie format, usually this is the result of
cookie-jar
, Curl, which saves in this format. However, in this situation this is an extremely high vulnerability of the site, apparently. Because these files are cookies to access the twitter accounts, basically with them you can access the 10702 accounts if they are valid. The_twitter_sess
and theauth_token
is who authorizes access, whether you automatically or manually set these cookies for the respective values (Bah7D...
and4faa69...
) you will be able to access this person’s twitter.– Inkeliz
Ta I need to do exactly the same without malicious intentions, you know a way? to do this?
– WillBB