1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-29 11:45:20 -05:00
Files
pathduck.github.io/vivaldi/tools/create-cookie-file.sql
Stian Lund 57243c86cb update
2024-03-03 14:18:46 +01: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'
);