epiphany

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 11, 2024 License: MIT Imports: 10 Imported by: 0

README

SQL schemes of file cookies.sqlite, table moz_cookies

extracted with sqlitebrowser

-- epiphany (Gnome Web) 3.38.2 Linux
CREATE TABLE moz_cookies (
    id INTEGER PRIMARY KEY,
    name TEXT,
    value TEXT,
    host TEXT,
    path TEXT,
    expiry INTEGER,
    lastAccessed INTEGER,
    isSecure INTEGER,
    isHttpOnly INTEGER,
    sameSite INTEGER -- new
)
-- epiphany (Gnome Web) 3.32 Linux
CREATE TABLE moz_cookies (
    id INTEGER PRIMARY KEY,
    name TEXT,
    value TEXT
    host TEXT,
    path TEXT,
    expiry INTEGER,
    lastAccessed INTEGER,
    isSecure INTEGER,
    isHttpOnly INTEGER
)

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CookieJar

func CookieJar(filename string, filters ...kooky.Filter) (http.CookieJar, error)

CookieJar returns an initiated http.CookieJar based on the cookies stored by the Epiphany/Gnome Web browser. Set cookies are memory stored and do not modify any browser files.

func CookieStore

func CookieStore(filename string, filters ...kooky.Filter) (kooky.CookieStore, error)

CookieStore has to be closed with CookieStore.Close() after use.

func ReadCookies

func ReadCookies(filename string, filters ...kooky.Filter) ([]*kooky.Cookie, error)

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL