vivaldi/tools/create-cookie-file.sql
Stian Lund 60e2138a12 commit
2024-08-05 18:15:25 +02:00

43 lines
631 B
SQL
Executable File

INSERT INTO "main"."cookies" (
"creation_utc",
"host_key",
"top_frame_site_key",
"name",
"value",
"encrypted_value",
"path",
"expires_utc",
"is_secure",
"is_httponly",
"last_access_utc",
"has_expires",
"is_persistent",
"priority",
"samesite",
"source_scheme",
"source_port",
"is_same_party",
"last_update_utc"
)
VALUES (
'13347199299620897',
lower(hex(randomblob(4)))||'.com',
'',
lower(hex(randomblob(8))),
lower(hex(randomblob(8))),
'',
'/',
'13378735299620897',
'1',
'0',
'13347199299620897',
'1',
'1',
'1',
'0',
'2',
'443',
'0',
'13347199299620962'
);