1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
|
#!/usr/bin/env python3
# kj-clipboard server, no frills public clipboard
# single-file server: sqlite, mojicrypt encryption, syntax highlighting
# usage: python3 src/server.py
import http.server
import json
import ipaddress
import queue
import re
import secrets
import signal
import sqlite3
import subprocess
import sys
import threading
import time
from pathlib import Path
from urllib.parse import urlparse, unquote
# config
PORT = 5555
BIND = "0.0.0.0"
BASE_DIR = Path(__file__).parent.resolve()
DB_PATH = BASE_DIR / "data" / "kj-clipboard.db"
RANDOM_ID_LENGTH = 40 # random chars after unix epoch
MAX_PASTE_SIZE = 67 * 1024 * 1024 // 10 # 6.7 MiB
MAX_PASSPHRASE_SIZE = 512
MAX_LANGUAGE_SIZE = 32
# decrypt requests only need id+passphrase json, keep this small against body-flood abuse.
MAX_DECRYPT_SIZE = 16 * 1024
ID_PATTERN = re.compile(r"^[0-9]{10,}[a-f0-9]{40}$")
LANGUAGE_PATTERN = re.compile(r"^[a-z0-9_.+#-]{1,32}$")
# per-ip post limit (create/decrypt).
REQUESTS_PER_WINDOW = 150
RATE_WINDOW_SECONDS = 60
# sqlite concurrency defaults
SQLITE_BUSY_TIMEOUT_MS = 2500
SQLITE_WRITE_RETRIES = 5
SQLITE_READ_RETRIES = 3
SQLITE_RETRY_BASE_MS = 20
SQLITE_CACHE_SIZE_KIB = 6144
SQLITE_MMAP_SIZE_BYTES = 134217728
SQLITE_WAL_AUTOCHECKPOINT_PAGES = 2000
SQLITE_JOURNAL_SIZE_LIMIT_BYTES = 67108864
SQLITE_SYNCHRONOUS = "NORMAL" # OFF | NORMAL | FULL | EXTRA
# accept short bursts without immediately refusing tcp connections.
HTTP_REQUEST_QUEUE_SIZE = 64
# single sqlite writer with queue + micro-batching reduces lock contention under load.
WRITE_QUEUE_MAX_SIZE = 4096
WRITE_QUEUE_WAIT_SECONDS = 8
WRITE_QUEUE_ENQUEUE_TIMEOUT_SECONDS = 0.25
WRITE_BATCH_SIZE = 32
WRITE_BATCH_MAX_DELAY_MS = 12
WRITE_WORKER_JOIN_TIMEOUT_SECONDS = 5
TRUST_PROXY = False
TRUSTED_PROXY_IPS = {"127.0.0.1", "::1"}
# hsts off by default to avoid breaking plain-http setups.
ENABLE_HSTS = False
HSTS_MAX_AGE = 31536000
ALLOWED_LANGUAGES = {
"1c",
"SAS",
"abnf",
"accesslog",
"actionscript",
"ada",
"adoc",
"angelscript",
"apache",
"apacheconf",
"applescript",
"arcade",
"arduino",
"arm",
"armasm",
"as",
"asc",
"asciidoc",
"aspectj",
"atom",
"autohotkey",
"autoit",
"avrasm",
"awk",
"axapta",
"bash",
"basic",
"bat",
"bf",
"bind",
"bnf",
"brainfuck",
"c",
"c++",
"cal",
"capnp",
"capnproto",
"cc",
"clj",
"clojure",
"cls",
"cmake",
"cmake.in",
"cmd",
"coffee",
"coffeescript",
"console",
"coq",
"cos",
"cpp",
"cr",
"craftcms",
"crm",
"crmsh",
"crystal",
"cs",
"csharp",
"cson",
"csp",
"css",
"cts",
"cxx",
"d",
"dart",
"dfm",
"diff",
"django",
"dns",
"docker",
"dockerfile",
"dos",
"dpr",
"dsconfig",
"dst",
"dts",
"dust",
"ebnf",
"elixir",
"elm",
"erl",
"erlang",
"excel",
"f90",
"f95",
"fix",
"fortran",
"fs",
"fsharp",
"fsi",
"fsscript",
"fsx",
"gams",
"gauss",
"gawk",
"gcode",
"gemspec",
"gherkin",
"glsl",
"gms",
"go",
"golang",
"golo",
"gololang",
"gradle",
"graph",
"graphql",
"groovy",
"gss",
"gyp",
"h",
"h++",
"haml",
"handlebars",
"haskell",
"haxe",
"hbs",
"hh",
"hpp",
"hs",
"html",
"html.handlebars",
"html.hbs",
"http",
"https",
"hx",
"hxx",
"hy",
"hylang",
"i7",
"iced",
"inform7",
"ini",
"ino",
"instances",
"irb",
"irpf90",
"java",
"javascript",
"jinja",
"jl",
"js",
"json",
"jsp",
"jsx",
"julia",
"julia-repl",
"k",
"kdb",
"kotlin",
"kt",
"lasso",
"lassoscript",
"ldif",
"leaf",
"less",
"lisp",
"livecodeserver",
"livescript",
"lua",
"mak",
"make",
"makefile",
"markdown",
"mathematica",
"matlab",
"mawk",
"maxima",
"md",
"mel",
"mercury",
"mips",
"mipsasm",
"mizar",
"mk",
"mkd",
"mkdown",
"mm",
"mma",
"mojolicious",
"monkey",
"moon",
"moonscript",
"mts",
"n1ql",
"nawk",
"nc",
"nginx",
"nginxconf",
"nim",
"nimrod",
"nix",
"nsis",
"obj-c",
"obj-c++",
"objc",
"objective-c++",
"objectivec",
"ocaml",
"openscad",
"osascript",
"oxygene",
"p21",
"parser3",
"pas",
"pascal",
"patch",
"pcmk",
"perl",
"pf",
"pf.conf",
"pgsql",
"php",
"pl",
"plaintext",
"plist",
"pm",
"podspec",
"pony",
"postgres",
"postgresql",
"powershell",
"pp",
"processing",
"profile",
"prolog",
"properties",
"proto",
"protobuf",
"ps",
"ps1",
"puppet",
"py",
"pycon",
"python",
"python-repl",
"qml",
"r",
"rb",
"re",
"reasonml",
"rib",
"rs",
"rsl",
"rss",
"ruby",
"ruleslanguage",
"rust",
"sas",
"scad",
"scala",
"scheme",
"sci",
"scilab",
"scss",
"sh",
"shell",
"smali",
"smalltalk",
"sml",
"sql",
"st",
"stan",
"stanfuncs",
"stata",
"step",
"stp",
"styl",
"stylus",
"subunit",
"svg",
"swift",
"tao",
"tap",
"tcl",
"tex",
"text",
"thor",
"thrift",
"tk",
"toml",
"tp",
"ts",
"tsx",
"twig",
"txt",
"typescript",
"v",
"vala",
"vb",
"vbnet",
"vbs",
"vbscript",
"verilog",
"vhdl",
"vim",
"wl",
"x++",
"x86asm",
"xhtml",
"xjb",
"xl",
"xls",
"xlsx",
"xml",
"xpath",
"xq",
"xqm",
"xquery",
"xsd",
"xsl",
"yaml",
"yml",
"zep",
"zephir",
"zone",
"zsh",
}
# in-memory fixed-window rate limiter (cheap guardrail behind nginx)
_rate_lock = threading.Lock()
_rate_state = {}
_write_queue = queue.Queue(maxsize=WRITE_QUEUE_MAX_SIZE)
_write_worker_thread = None
_write_worker_stop = threading.Event()
# database
class DatabaseBusyError(RuntimeError):
pass
def is_sqlite_busy_error(err):
msg = str(err).lower()
return "database is locked" in msg or "database is busy" in msg
def sqlite_retry_sleep(attempt):
delay_ms = SQLITE_RETRY_BASE_MS * (2**attempt)
jitter_ms = secrets.randbelow(SQLITE_RETRY_BASE_MS + 1)
time.sleep(min((delay_ms + jitter_ms) / 1000.0, 1.0))
def build_write_job(content, language, is_code, is_encrypted):
return {
"content": content,
"language": language,
"is_code": int(is_code),
"is_encrypted": int(is_encrypted),
"created_at": int(time.time()),
"paste_id": None,
"error": None,
"done": threading.Event(),
}
def execute_write_batch(conn, jobs):
for write_attempt in range(SQLITE_WRITE_RETRIES + 1):
try:
conn.execute("BEGIN IMMEDIATE")
for job in jobs:
for _ in range(5):
paste_id = generate_id()
try:
conn.execute(
"INSERT INTO pastes (id, content, language, is_code, is_encrypted, created_at) "
"VALUES (?, ?, ?, ?, ?, ?)",
(
paste_id,
job["content"],
job["language"],
job["is_code"],
job["is_encrypted"],
job["created_at"],
),
)
job["paste_id"] = paste_id
break
except sqlite3.IntegrityError:
continue
if not job["paste_id"]:
raise RuntimeError("failed to generate unique paste id")
conn.commit()
return
except sqlite3.OperationalError as err:
try:
conn.rollback()
except sqlite3.DatabaseError:
pass
if is_sqlite_busy_error(err):
if write_attempt >= SQLITE_WRITE_RETRIES:
raise DatabaseBusyError("database is busy; retry shortly") from err
sqlite_retry_sleep(write_attempt)
continue
raise
except Exception:
try:
conn.rollback()
except sqlite3.DatabaseError:
pass
raise
def flush_write_batch(conn, jobs):
try:
execute_write_batch(conn, jobs)
except Exception as err:
for job in jobs:
job["error"] = err
job["done"].set()
return
for job in jobs:
job["done"].set()
def collect_write_batch(first_job):
jobs = [first_job]
deadline = time.monotonic() + (WRITE_BATCH_MAX_DELAY_MS / 1000.0)
while len(jobs) < WRITE_BATCH_SIZE:
remaining = deadline - time.monotonic()
if remaining <= 0:
break
try:
next_job = _write_queue.get(timeout=remaining)
except queue.Empty:
break
jobs.append(next_job)
return jobs
def write_worker_loop():
conn = open_db()
try:
while True:
if _write_worker_stop.is_set() and _write_queue.empty():
break
try:
first_job = _write_queue.get(timeout=0.25)
except queue.Empty:
continue
jobs = collect_write_batch(first_job)
flush_write_batch(conn, jobs)
for _ in jobs:
_write_queue.task_done()
finally:
conn.close()
def start_write_worker():
global _write_worker_thread
if _write_worker_thread and _write_worker_thread.is_alive():
return
_write_worker_stop.clear()
_write_worker_thread = threading.Thread(
target=write_worker_loop,
daemon=True,
name="sqlite-write-worker",
)
_write_worker_thread.start()
def stop_write_worker():
global _write_worker_thread
if not _write_worker_thread:
return
_write_worker_stop.set()
_write_worker_thread.join(timeout=WRITE_WORKER_JOIN_TIMEOUT_SECONDS)
_write_worker_thread = None
def open_db():
conn = sqlite3.connect(
str(DB_PATH),
timeout=SQLITE_BUSY_TIMEOUT_MS / 1000.0,
)
conn.execute(f"PRAGMA busy_timeout={SQLITE_BUSY_TIMEOUT_MS}")
conn.execute("PRAGMA foreign_keys=ON")
conn.execute(f"PRAGMA cache_size=-{SQLITE_CACHE_SIZE_KIB}")
conn.execute("PRAGMA temp_store=MEMORY")
if SQLITE_MMAP_SIZE_BYTES > 0:
try:
conn.execute(f"PRAGMA mmap_size={SQLITE_MMAP_SIZE_BYTES}")
except sqlite3.DatabaseError:
pass
# defense-in-depth: ignore if running on an older sqlite without this pragma.
try:
conn.execute("PRAGMA trusted_schema=OFF")
except sqlite3.DatabaseError:
pass
return conn
def init_db():
DB_PATH.parent.mkdir(parents=True, exist_ok=True)
conn = open_db()
conn.execute("PRAGMA journal_mode=WAL")
conn.execute(f"PRAGMA synchronous={SQLITE_SYNCHRONOUS}")
conn.execute(f"PRAGMA wal_autocheckpoint={SQLITE_WAL_AUTOCHECKPOINT_PAGES}")
conn.execute(f"PRAGMA journal_size_limit={SQLITE_JOURNAL_SIZE_LIMIT_BYTES}")
conn.execute(
"""
CREATE TABLE IF NOT EXISTS pastes (
id TEXT PRIMARY KEY,
content TEXT NOT NULL,
language TEXT DEFAULT NULL,
is_code INTEGER DEFAULT 0,
is_encrypted INTEGER DEFAULT 0,
created_at INTEGER NOT NULL
)
"""
)
conn.commit()
conn.close()
def generate_id():
"""generate id in format: <unix-epoch><40-char-random-hex>"""
return f"{int(time.time())}{secrets.token_hex(RANDOM_ID_LENGTH // 2)}"
def is_valid_paste_id(paste_id):
"""validate id format: unix epoch prefix + 40 hex chars"""
return bool(ID_PATTERN.match(paste_id))
def save_paste(content, language=None, is_code=False, is_encrypted=False):
"""store a paste in the database, return its id"""
job = build_write_job(content, language, is_code, is_encrypted)
try:
_write_queue.put(job, timeout=WRITE_QUEUE_ENQUEUE_TIMEOUT_SECONDS)
except queue.Full as err:
raise DatabaseBusyError("write queue is full; retry shortly") from err
if not job["done"].wait(WRITE_QUEUE_WAIT_SECONDS):
raise DatabaseBusyError("write queue timeout; retry shortly")
if job["error"]:
if isinstance(job["error"], Exception):
raise job["error"]
raise RuntimeError("write failed")
if not job["paste_id"]:
raise RuntimeError("write completed without paste id")
return job["paste_id"]
def get_paste(paste_id):
"""retrieve a paste by id, returns dict or None"""
for read_attempt in range(SQLITE_READ_RETRIES + 1):
conn = open_db()
try:
conn.row_factory = sqlite3.Row
row = conn.execute(
"SELECT * FROM pastes WHERE id = ?", (paste_id,)
).fetchone()
if row:
return sanitize_paste_record(dict(row))
return None
except sqlite3.OperationalError as err:
if is_sqlite_busy_error(err):
if read_attempt >= SQLITE_READ_RETRIES:
raise DatabaseBusyError("database is busy; retry shortly") from err
sqlite_retry_sleep(read_attempt)
continue
raise
finally:
conn.close()
raise DatabaseBusyError("database is busy; retry shortly")
# mojicrypt helpers
def mojicrypt_encrypt(text, passphrase):
"""encrypt text with mojicrypt, return glyph string or None on failure"""
try:
result = subprocess.run(
["mojicrypt", "encrypt", "-p", passphrase],
input=text,
capture_output=True,
text=True,
timeout=120,
check=False,
)
if result.returncode != 0:
return None
return result.stdout.strip()
except (subprocess.TimeoutExpired, FileNotFoundError):
return None
def mojicrypt_decrypt(encrypted_blob, passphrase):
"""decrypt a mojicrypt glyph string, return plaintext or None on failure"""
try:
result = subprocess.run(
["mojicrypt", "decrypt", "-p", passphrase],
input=encrypted_blob,
capture_output=True,
text=True,
timeout=120,
check=False,
)
if result.returncode != 0:
return None
return result.stdout.strip()
except (subprocess.TimeoutExpired, FileNotFoundError):
return None
# html templates
def landing_page():
return (BASE_DIR / "index.html").read_text(encoding="utf-8")
def paste_page(paste, csp_nonce):
"""render the view page for a paste"""
paste_id = paste["id"]
content = paste["content"]
is_code = coerce_bool_flag(paste.get("is_code", 0))
is_encrypted = coerce_bool_flag(paste.get("is_encrypted", 0))
language = normalize_language(paste.get("language", "")) or ""
created = time.strftime("%Y-%m-%d %H:%M UTC", time.gmtime(int(paste["created_at"])))
escaped_paste_id = html_escape(paste_id)
escaped_paste_id_attr = html_escape_attr(paste_id)
escaped_language = html_escape(language)
paste_id_json = json.dumps(paste_id)
code_lang_class = f"language-{language}" if language else ""
code_lang_class_json = json.dumps(code_lang_class)
language_json = json.dumps(language)
script_nonce_attr = f' nonce="{html_escape_attr(csp_nonce)}"'
if is_encrypted:
# show decrypt form instead of content
content_block = f"""
<form id="decrypt-form">
<p>this paste is password-protected.</p>
<input type="password" id="decrypt-pass" placeholder="passphrase" autocomplete="off" required>
<button type="submit" id="decrypt-btn">decrypt</button>
<span id="decrypt-status" style="margin-left:0.5rem;"></span>
</form>
<div id="paste-content" style="display:none;"></div>
<script{script_nonce_attr}>
document.getElementById("decrypt-form").addEventListener("submit", async function(e) {{
e.preventDefault();
const btn = document.getElementById("decrypt-btn");
const status = document.getElementById("decrypt-status");
const pass = document.getElementById("decrypt-pass").value;
btn.disabled = true;
btn.textContent = "--->";
status.textContent = "decrypting...";
const resp = await fetch("/api/decrypt", {{
method: "POST",
headers: {{"Content-Type": "application/json"}},
body: JSON.stringify({{id: {paste_id_json}, passphrase: pass}})
}});
let data = null;
try {{
data = await resp.json();
}} catch (_err) {{
btn.disabled = false;
btn.textContent = "decrypt";
status.textContent = "";
alert("decrypt request failed");
return;
}}
if (!resp.ok || data.error) {{
alert(data && data.error ? data.error : "decrypt failed");
btn.disabled = false;
btn.textContent = "decrypt";
status.textContent = "";
return;
}}
status.textContent = "decrypted.";
document.getElementById("decrypt-form").style.display = "none";
const el = document.getElementById("paste-content");
el.style.display = "block";
{"" if not is_code else f'''
const codeEl = document.createElement("pre");
const codeInner = document.createElement("code");
codeInner.className = {code_lang_class_json};
codeInner.textContent = data.content;
codeEl.appendChild(codeInner);
el.appendChild(codeEl);
const ready = window.kjClipboardHighlightReady;
if (ready && typeof ready.then === "function") {{
await ready;
}}
if (window.hljs && typeof hljs.highlightElement === "function") {{
hljs.highlightElement(codeInner);
}}
'''}
{"" if is_code else '''
const pre = document.createElement("pre");
pre.textContent = data.content;
el.appendChild(pre);
'''}
// keep decrypted text in a runtime-only container for copy.
el.dataset.decryptedContent = data.content;
}});
</script>"""
else:
escaped = html_escape(content)
if is_code:
lang_class = (
f'class="language-{html_escape_attr(language)}"' if language else ""
)
content_block = (
f'<pre><code id="paste-code" {lang_class}>{escaped}</code></pre>'
)
else:
content_block = f'<pre id="paste-plain">{escaped}</pre>'
highlight_css = ""
highlight_js = ""
if is_code:
highlight_css = '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/vs2015.min.css">'
highlight_js = f"""<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<script{script_nonce_attr}>
// load uncommon languages on demand; run highlighting either way, if code
window.kjClipboardHighlightReady = new Promise((resolve) => {{
const runHighlight = () => {{
if (window.hljs && typeof hljs.highlightAll === "function") {{
hljs.highlightAll();
}}
resolve();
}};
const lang = {language_json};
if (!lang || !window.hljs || typeof hljs.getLanguage !== "function") {{
runHighlight();
return;
}}
if (hljs.getLanguage(lang)) {{
runHighlight();
return;
}}
const langScript = document.createElement("script");
langScript.src = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/languages/" + encodeURIComponent(lang) + ".min.js";
langScript.onload = runHighlight;
langScript.onerror = runHighlight;
document.head.appendChild(langScript);
}});
</script>"""
return f"""<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<meta name="robots" content="noindex, nofollow">
<title>kj-clipboard - {escaped_paste_id}</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kj-sh604/noir.css@latest/out/noir.min.css">
{highlight_css}
</head>
<body>
<script>
/*
@licstart The following is the entire license notice for the
JavaScript code in this page.
Copyright (c) 2026 kj_sh604/kj-sh604/kjsh604
SPDX-License-Identifier: MIT
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@licend The above is the entire license notice
for the JavaScript code in this page.
*/
</script>
<h1><a href="/" style="text-decoration:none;color:inherit;">kj-clipboard</a></h1>
<p class="meta">created {created}{(" · " + escaped_language) if language else ""}{" · encrypted" if is_encrypted else ""}</p>
<div class="actions">
<button id="copy-btn" type="button">copy to clipboard</button>
<a href="/raw/{escaped_paste_id_attr}">raw</a>
</div>
{content_block}
{highlight_js}
<script{script_nonce_attr}>
async function copyPaste() {{
const btn = document.getElementById("copy-btn");
let text = "";
const decryptedWrap = document.getElementById("paste-content");
if (decryptedWrap && decryptedWrap.dataset && decryptedWrap.dataset.decryptedContent) {{
text = decryptedWrap.dataset.decryptedContent;
}} else {{
const code = document.getElementById("paste-code");
const plain = document.getElementById("paste-plain");
if (code) {{
text = code.textContent || "";
}} else if (plain) {{
text = plain.textContent || "";
}}
}}
if (!text) {{
btn.textContent = "nothing to copy";
setTimeout(() => btn.textContent = "copy to clipboard", 1500);
return;
}}
try {{
await navigator.clipboard.writeText(text);
btn.textContent = "copied!";
}} catch (_err) {{
btn.textContent = "copy failed";
}}
setTimeout(() => btn.textContent = "copy to clipboard", 1500);
}}
document.getElementById("copy-btn").addEventListener("click", copyPaste);
</script>
</body>
</html>"""
def not_found_page():
return """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<title>kj-clipboard - not found</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kj-sh604/noir.css@latest/out/noir.min.css">
</head>
<body>
<h1><a href="/" style="text-decoration:none;color:inherit;">kj-clipboard</a></h1>
<p>paste not found.</p>
</body>
</html>"""
# helpers
def html_escape(text):
text = str(text)
return (
text.replace("&", "&")
.replace("<", "<")
.replace(">", ">")
.replace('"', """)
.replace("'", "'")
)
def html_escape_attr(text):
return html_escape(text).replace("\n", " ").replace("\r", " ")
def generate_csp_nonce():
return secrets.token_urlsafe(18)
def coerce_bool_flag(value):
try:
return bool(int(value))
except (TypeError, ValueError):
return bool(value)
def sanitize_paste_record(row):
if not isinstance(row, dict):
return None
paste_id = row.get("id")
if not isinstance(paste_id, str) or not is_valid_paste_id(paste_id):
return None
content = row.get("content")
if not isinstance(content, str):
return None
language = normalize_language(row.get("language", "")) or ""
is_code = coerce_bool_flag(row.get("is_code", 0))
is_encrypted = coerce_bool_flag(row.get("is_encrypted", 0))
try:
created_at = int(row.get("created_at", 0))
except (TypeError, ValueError):
created_at = 0
now = int(time.time())
if created_at < 0:
created_at = 0
if created_at > now + 315360000:
created_at = now
if not is_code:
language = ""
return {
"id": paste_id,
"content": content,
"language": language,
"is_code": int(is_code),
"is_encrypted": int(is_encrypted),
"created_at": created_at,
}
def normalize_language(value):
"""normalize and validate highlight.js language token"""
if value is None:
return None
if not isinstance(value, str):
return None
lang = value.strip().lower()
if not lang:
return None
if len(lang) > MAX_LANGUAGE_SIZE:
return None
if lang in {"ls", "ml"}:
return None
if not LANGUAGE_PATTERN.match(lang):
return None
if lang not in ALLOWED_LANGUAGES:
return None
return lang
def is_valid_ip(value):
try:
ipaddress.ip_address(value)
return True
except ValueError:
return False
def get_client_ip(handler):
"""resolve client ip safely, only trusting proxy headers when configured"""
remote_ip = handler.client_address[0]
if not TRUST_PROXY or remote_ip not in TRUSTED_PROXY_IPS:
return remote_ip
xff = handler.headers.get("X-Forwarded-For", "").strip()
if xff:
candidate = xff.split(",")[0].strip()
if is_valid_ip(candidate):
return candidate
xri = handler.headers.get("X-Real-IP", "").strip()
if xri and is_valid_ip(xri):
return xri
return remote_ip
def is_same_origin_post(handler):
# block cross-site browser requests while allowing non-browser clients.
sec_fetch_site = handler.headers.get("Sec-Fetch-Site", "").strip().lower()
if sec_fetch_site == "cross-site":
return False
origin = handler.headers.get("Origin", "").strip()
if not origin:
return True
host = handler.headers.get("Host", "").strip().lower()
if not host:
return False
try:
parsed_origin = urlparse(origin)
except ValueError:
return False
if parsed_origin.scheme not in {"http", "https"}:
return False
return secrets.compare_digest(parsed_origin.netloc.lower(), host)
def is_rate_limited(client_ip):
"""fixed window limiter for POST endpoints"""
now = int(time.time())
window = now // RATE_WINDOW_SECONDS
with _rate_lock:
key = (client_ip, window)
count = _rate_state.get(key, 0) + 1
_rate_state[key] = count
# cheap cleanup to avoid unbounded growth
stale_before = window - 2
stale_keys = [k for k in _rate_state if k[1] < stale_before]
for k in stale_keys:
_rate_state.pop(k, None)
return count > REQUESTS_PER_WINDOW
# request handler
class ClipboardHandler(http.server.BaseHTTPRequestHandler):
server_version = "kj-clipboard"
sys_version = ""
def log_message(self, fmt, *args):
client_ip = get_client_ip(self)
sys.stderr.write(
f"[{time.strftime('%Y-%m-%d %H:%M:%S')}] {client_ip} - {fmt % args}\n"
)
def add_security_headers(self, csp_nonce=None):
self.send_header("X-Content-Type-Options", "nosniff")
self.send_header("X-Frame-Options", "DENY")
self.send_header("Referrer-Policy", "no-referrer")
self.send_header(
"Permissions-Policy",
"camera=(), microphone=(), geolocation=(), gyroscope=(), magnetometer=(), payment=(), usb=()",
)
self.send_header("Cross-Origin-Opener-Policy", "same-origin")
self.send_header("Cross-Origin-Resource-Policy", "same-origin")
self.send_header("Cache-Control", "no-store")
if ENABLE_HSTS and HSTS_MAX_AGE > 0:
self.send_header(
"Strict-Transport-Security",
f"max-age={HSTS_MAX_AGE}; includeSubDomains",
)
script_sources = ["'self'", "https://cdnjs.cloudflare.com"]
if csp_nonce:
script_sources.append(f"'nonce-{csp_nonce}'")
# keep style-src permissive due inline styles and the shared theme css.
self.send_header(
"Content-Security-Policy",
"default-src 'self'; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://cdnjs.cloudflare.com; "
f"script-src {' '.join(script_sources)}; img-src 'self' data:; connect-src 'self'; "
"font-src 'self' https://cdn.jsdelivr.net https://cdnjs.cloudflare.com; "
"base-uri 'none'; frame-ancestors 'none'; object-src 'none'; form-action 'self'",
)
def send_html(self, code, body, csp_nonce=None):
data = body.encode("utf-8")
self.send_response(code)
self.send_header("Content-Type", "text/html; charset=utf-8")
self.send_header("Content-Length", str(len(data)))
self.add_security_headers(csp_nonce=csp_nonce)
self.end_headers()
self.wfile.write(data)
def send_json(self, code, obj):
data = json.dumps(obj, separators=(",", ":")).encode("utf-8")
self.send_response(code)
self.send_header("Content-Type", "application/json; charset=utf-8")
self.send_header("Content-Length", str(len(data)))
self.add_security_headers()
self.end_headers()
self.wfile.write(data)
def send_plain(self, code, text):
data = text.encode("utf-8")
self.send_response(code)
self.send_header("Content-Type", "text/plain; charset=utf-8")
self.send_header("Content-Length", str(len(data)))
self.add_security_headers()
self.end_headers()
self.wfile.write(data)
def read_body(self, max_size):
try:
length = int(self.headers.get("Content-Length", "0"))
except ValueError:
return None
if length <= 0 or length > max_size:
return None
return self.rfile.read(length)
def read_json_body(self, max_size):
ctype = self.headers.get("Content-Type", "").split(";")[0].strip().lower()
if ctype != "application/json":
return None
body = self.read_body(max_size)
if body is None:
return None
try:
data = json.loads(body)
except (json.JSONDecodeError, TypeError, UnicodeDecodeError):
return None
if not isinstance(data, dict):
return None
return data
def do_GET(self):
try:
parsed = urlparse(self.path)
path = unquote(parsed.path).rstrip("/") or "/"
if path == "/healthz":
self.send_plain(200, "ok")
return
if path == "/":
self.send_html(200, landing_page())
return
if path == "/main.js":
js_path = BASE_DIR / "main.js"
if not js_path.exists():
self.send_plain(404, "not found")
return
data = js_path.read_bytes()
self.send_response(200)
self.send_header(
"Content-Type", "application/javascript; charset=utf-8"
)
self.send_header("Content-Length", str(len(data)))
self.add_security_headers()
self.end_headers()
self.wfile.write(data)
return
if path == "/favicon.svg":
icon_path = BASE_DIR / "favicon.svg"
if not icon_path.exists():
self.send_plain(404, "not found")
return
data = icon_path.read_bytes()
self.send_response(200)
self.send_header("Content-Type", "image/svg+xml")
self.send_header("Content-Length", str(len(data)))
self.add_security_headers()
self.end_headers()
self.wfile.write(data)
return
if path.startswith("/raw/"):
paste_id = path[5:]
if not is_valid_paste_id(paste_id):
self.send_plain(404, "not found")
return
paste = get_paste(paste_id)
if not paste:
self.send_plain(404, "not found")
return
if paste["is_encrypted"]:
self.send_plain(
403,
"403: this paste is encrypted; raw view is not available - use the web interface to decrypt and view the content",
)
return
self.send_plain(200, paste["content"])
return
# treat anything else as a paste id
paste_id = path.lstrip("/")
if not is_valid_paste_id(paste_id):
self.send_html(404, not_found_page())
return
paste = get_paste(paste_id)
if not paste:
self.send_html(404, not_found_page())
return
csp_nonce = generate_csp_nonce()
self.send_html(200, paste_page(paste, csp_nonce), csp_nonce=csp_nonce)
except DatabaseBusyError:
self.send_plain(503, "service busy, retry shortly")
except Exception:
self.send_json(500, {"error": "internal server error"})
def do_POST(self):
try:
if not is_same_origin_post(self):
self.send_json(403, {"error": "cross-origin request blocked"})
return
client_ip = get_client_ip(self)
if is_rate_limited(client_ip):
self.send_json(429, {"error": "rate limit exceeded"})
return
parsed = urlparse(self.path)
path = unquote(parsed.path)
if path == "/api/paste":
self.handle_create_paste()
elif path == "/api/decrypt":
self.handle_decrypt()
else:
self.send_json(404, {"error": "not found"})
except DatabaseBusyError:
self.send_json(503, {"error": "database busy, retry shortly"})
except Exception:
self.send_json(500, {"error": "internal server error"})
def handle_create_paste(self):
data = self.read_json_body(MAX_PASTE_SIZE)
if data is None:
self.send_json(400, {"error": "invalid request"})
return
content = data.get("content", "")
if not isinstance(content, str):
self.send_json(400, {"error": "content is required"})
return
# preserve exact content while blocking empty/oversized payloads
if not content.strip():
self.send_json(400, {"error": "content is required"})
return
if len(content.encode("utf-8")) > MAX_PASTE_SIZE:
self.send_json(413, {"error": "paste too large (max 6.7 MiB)"})
return
is_code = bool(data.get("is_code", False))
language = normalize_language(data.get("language", ""))
passphrase = data.get("passphrase", "")
if passphrase is None:
passphrase = ""
if not isinstance(passphrase, str):
self.send_json(400, {"error": "invalid passphrase"})
return
passphrase = passphrase.strip()
if len(passphrase.encode("utf-8")) > MAX_PASSPHRASE_SIZE:
self.send_json(400, {"error": "passphrase too long"})
return
if data.get("language", "") and language is None:
self.send_json(400, {"error": "invalid language name"})
return
is_encrypted = False
store_content = content
if passphrase:
encrypted = mojicrypt_encrypt(content, passphrase)
if encrypted is None:
self.send_json(
500, {"error": "encryption failed - is mojicrypt installed?"}
)
return
store_content = encrypted
is_encrypted = True
paste_id = save_paste(
content=store_content,
language=language,
is_code=is_code,
is_encrypted=is_encrypted,
)
self.send_json(200, {"id": paste_id, "url": f"/{paste_id}"})
def handle_decrypt(self):
data = self.read_json_body(MAX_DECRYPT_SIZE)
if data is None:
self.send_json(400, {"error": "invalid request"})
return
paste_id = data.get("id", "")
passphrase = data.get("passphrase", "")
if not isinstance(paste_id, str) or not isinstance(passphrase, str):
self.send_json(400, {"error": "id and passphrase are required"})
return
passphrase = passphrase.strip()
if len(passphrase.encode("utf-8")) > MAX_PASSPHRASE_SIZE:
self.send_json(400, {"error": "passphrase too long"})
return
if not paste_id or not passphrase:
self.send_json(400, {"error": "id and passphrase are required"})
return
if not is_valid_paste_id(paste_id):
self.send_json(404, {"error": "paste not found"})
return
paste = get_paste(paste_id)
if not paste:
self.send_json(404, {"error": "paste not found"})
return
if not paste["is_encrypted"]:
self.send_json(400, {"error": "paste is not encrypted"})
return
plaintext = mojicrypt_decrypt(paste["content"], passphrase)
if plaintext is None:
self.send_json(403, {"error": "wrong passphrase or corrupted data"})
return
self.send_json(200, {"content": plaintext})
# main
class ClipboardHTTPServer(http.server.ThreadingHTTPServer):
daemon_threads = True
allow_reuse_address = True
request_queue_size = HTTP_REQUEST_QUEUE_SIZE
def main():
init_db()
start_write_worker()
print(f"kj-clipboard - listening on {BIND}:{PORT}")
server = ClipboardHTTPServer((BIND, PORT), ClipboardHandler)
shutdown_requested = threading.Event()
def request_shutdown(msg):
if shutdown_requested.is_set():
return
shutdown_requested.set()
print(msg)
# shutdown() should run outside the serving thread.
threading.Thread(target=server.shutdown, daemon=True).start()
def _shutdown_handler(signum, _frame):
request_shutdown(f"\nreceived signal {signum}, shutting down.")
signal.signal(signal.SIGTERM, _shutdown_handler)
try:
server.serve_forever()
except KeyboardInterrupt:
print("\nreceived keyboard interrupt, shutting down.")
finally:
stop_write_worker()
server.server_close()
if __name__ == "__main__":
main()
|