Skip to content

muyids/chrome-cookie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

chrome-cookies

Extract encrypted Google Chrome cookies for a url on Mac OS X

Installation

go get github.com/muyids/chrome-cookie

API

GetCookie(url, profile, format string)


  • url should be a fully qualified url, e.g. http://www.example.com/path/
  • profile default "", should be your cookies file location, e.g. Profile 1
  • format default "", is optional and can be one of the following values:
format description
curl Netscape HTTP Cookie File contents usable by curl and wget
set-cookie Array of Set-Cookie header values
header cookie header string, similar to what a browser would send
puppeteer an array of objects that can be loaded directly into puppeteer setCookie(...) for testing
object (default) Object where key is the cookie name and value is the cookie value. These are written in order so it's possible that duplicate cookie names will be overriden by later values

If format is not specified, will not printf.

Cookie order tries to follow RFC 6265 - Section 5.4, step 2 as best as possible.

Examples

basic usage

import (
    "github.com/muyids/chrome-cookie"
)

func main() {
    chrome_cookie.GetCookie("https://github.com/muyids", "", "json")
}

Limitations

On OS X, this module requires Keychain Access to read the Google Chrome encryption key. The first time you use it, it will popup this dialog:

image

The SQLite database that Google Chrome stores its cookies is only persisted to every 30 seconds or so, so this can explain while you'll see a delay between which cookies your browser has access to and this module.

Releases

No releases published

Packages

No packages published

Languages