-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex_da.html
More file actions
2226 lines (2096 loc) · 103 KB
/
index_da.html
File metadata and controls
2226 lines (2096 loc) · 103 KB
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
<!DOCTYPE html>
<html lang="da">
<head>
<title>Cybersikkerhed Rådgivning Sverige | Offentlig ISMS | Hack23</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Critical CSS - Inline for faster FCP -->
<style>
/* Critical above-the-fold styles only */
:root {
--primary-color: #006633;
--primary-light: #007744;
--accent-color: #008838; /* WCAG 2.1 AA: 4.59:1 contrast on white (was #00C853 at 2.24:1) */
--bg-color: #f8f9fa;
--text-color: #1a1a1a;
--text-secondary: #4a4a4a; /* WCAG 2.1 AA: 8.86:1 contrast on white (improved from #555555 at 7.46:1) */
--button-bg: #007744;
--button-text: #fff;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--border-radius: 8px;
--border-radius-lg: 12px;
}
@media (prefers-color-scheme: dark) {
:root {
--primary-color: #00cc66;
--primary-light: #00ff88;
--accent-color: #33eeff;
--bg-color: #001a1a;
--text-color: #f0f0f0;
--text-secondary: #aaaaaa;
--button-bg: #2188ff;
--button-text: #e0e0e0;
}
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.7;
color: var(--text-color);
background-color: var(--bg-color);
max-width: 1200px;
margin: 0 auto;
padding: var(--spacing-xl);
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
header {
text-align: center;
margin-bottom: var(--spacing-xl);
padding: var(--spacing-xl) var(--spacing-lg);
border-radius: var(--border-radius-lg);
/* Reserve minimum space for header content to reduce Cumulative Layout Shift (CLS) */
min-height: 400px;
/* Optimize layout performance by creating a new containing block */
contain: layout;
}
h1 {
margin-top: 0;
font-size: 2.5rem;
line-height: 1.2;
color: var(--primary-color);
font-weight: 600;
}
.header-subtitle {
display: block;
font-size: 1.1rem;
font-weight: 400;
margin-top: 0.5rem;
color: var(--text-secondary);
}
.hero-tagline {
font-size: 1.25rem;
line-height: 1.6;
color: var(--text-color);
margin: var(--spacing-lg) auto;
max-width: 800px;
font-weight: 500;
}
.hero-subtitle {
font-size: 1rem;
line-height: 1.6;
color: var(--text-secondary);
margin: var(--spacing-md) auto var(--spacing-xl);
max-width: 700px;
}
.hero-cta {
display: flex;
gap: var(--spacing-md);
flex-wrap: wrap;
justify-content: center;
margin: var(--spacing-xl) 0;
/* Reserve space for CTA buttons to reduce Cumulative Layout Shift (CLS) */
min-height: 56px;
}
.btn-primary-large,
.btn-secondary {
display: inline-block;
padding: 1rem 2rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
min-height: 48px;
min-width: 48px;
line-height: 1.5;
}
.btn-primary-large {
background: var(--button-bg);
color: var(--button-text);
box-shadow: 0 4px 12px rgba(0, 119, 68, 0.3);
border: 1px solid transparent;
}
.btn-primary-large:hover {
background: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 119, 68, 0.4);
}
.btn-secondary {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background: var(--primary-color);
color: white;
}
.logo {
width: 80px;
height: 80px;
border-radius: var(--border-radius-lg);
box-shadow: 0 4px 12px rgba(0, 71, 171, 0.15);
}
.logo-container {
margin-bottom: var(--spacing-lg);
}
</style>
<!-- Preconnect to external domains for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://img.shields.io">
<link rel="dns-prefetch" href="https://hack23.github.io">
<!-- Preload LCP hero image for faster above-the-fold rendering -->
<link rel="preload" href="cia-icon-140.webp" as="image" type="image/webp" fetchpriority="high">
<!-- Defer non-critical CSS -->
<link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="styles.css"></noscript>
<link rel="canonical" href="https://hack23.com/index_da.html">
<meta name="description" content="Cybersikkerhedsrådgivning og AI-drevet politisk efterretningsmedie i Sverige. Offentligt ISMS, AI-genererede parlamentsnyheder, OSINT-platforme. ISO 27001, GDPR/NIS2. Göteborg.">
<meta name="keywords" content="cybersikkerhed rådgivning Sverige, offentlig ISMS, ISO 27001, GDPR overholdelse, NIS2, DevSecOps, AWS sikkerhed, CISSP konsulent, sikkerhedsarkitektur, cloud sikkerhed, Gøteborg cybersikkerhed, compliance automatisering, zero trust, AI politisk efterretning, AI-genererede nyheder, parlamentsovervågning, OSINT-platform, riksdagsmonitor, EU-parlamentsmonitor, politisk transparens, demokratisk ansvarlighed, agentisk AI-nyhedsgenerering, MCP-server">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="author" content="James Pether Sörling, CISSP, CISM">
<!-- Open Graph / Social Media -->
<meta property="og:title" content="Hack23 AB | Cybersikkerhed & AI-drevet Politisk Efterretning">
<meta property="og:description" content="Sveriges eneste offentlige ISMS. AI-drevet politisk efterretningsmedie: autonom nyhedsgenerering for svenske og EU-parlamenter. ISO 27001, GDPR/NIS2.">
<meta property="og:locale" content="da_DK">
<meta property="og:locale:alternate" content="ar_SA">
<meta property="og:locale:alternate" content="de_DE">
<meta property="og:locale:alternate" content="en_US">
<meta property="og:locale:alternate" content="es_ES">
<meta property="og:locale:alternate" content="fi_FI">
<meta property="og:locale:alternate" content="fr_FR">
<meta property="og:locale:alternate" content="he_IL">
<meta property="og:locale:alternate" content="ja_JP">
<meta property="og:locale:alternate" content="ko_KR">
<meta property="og:locale:alternate" content="nl_NL">
<meta property="og:locale:alternate" content="nb_NO">
<meta property="og:locale:alternate" content="sv_SE">
<meta property="og:locale:alternate" content="zh_CN">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hack23.com/index_da.html">
<meta property="og:image" content="cia-icon-140.webp">
<meta property="og:image:width" content="140">
<meta property="og:image:height" content="140">
<meta property="og:site_name" content="Hack23 AB - Premium Cybersikkerhed Rådgivning"><meta property="og:image:alt" content="Hack23 AB - Cybersikkerhed Excellence Gennem Gennemsigtighed">
<meta property="og:updated_time" content="2025-11-26T00:00:00Z">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hack23 AB | Cybersikkerhed & AI Politisk Efterretning Sverige">
<meta name="twitter:description" content="Sveriges eneste offentlige ISMS. AI-drevet politisk efterretning: autonom nyhedsgenerering for svenske og EU-parlamenter. CISSP/CISM.">
<meta name="twitter:image" content="cia-icon-140.webp">
<meta name="twitter:image:alt" content="Hack23 AB - Sikkerhedsmæssig Ekspertise Gennem Gennemsigtighed">
<meta name="twitter:site" content="@hack23ab">
<meta name="twitter:creator" content="@jamessorling">
<!-- Load fonts with font-display swap for better performance (deferred) -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&family=Share+Tech+Mono&display=swap"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet"></noscript>
<!-- Additional branding / UX meta -->
<meta name="application-name" content="Hack23 AB">
<meta name="theme-color" content="#0066CC">
<!-- Schema.org structured data -->
<script type="application/ld+json">{
"@context": "https://schema.org",
"@graph": [
{
"@type": [
"Organization",
"ProfessionalService"
],
"@id": "https://hack23.com/#org",
"url": "https://hack23.com/",
"logo": "cia-icon-140.webp",
"name": "Hack23 AB",
"alternateName": "Hack23",
"slogan": "Sikkerhedsmæssig Ekspertise Gennem Gennemsigtig Innovation",
"legalName": "Hack23 AB",
"foundingDate": "2025-01-01",
"description": "Cybersikkerhedsrådgivningsfirma der operationaliserer sikkerhedsmæssig ekspertise gennem radikal gennemsigtighed. Offentligt ISMS, regeloverholdelsesautomation og sikkerhedsaktiveret innovation på tværs af fire forretningsområder: cybersikkerhedsrådgivning, CIA Compliance Manager, Citizen Intelligence Agency og Black Trigram uddannelsesspil.",
"industry": [
"Informationssikkerhed",
"Cybersikkerhedsrådgivning",
"Compliance-automatisering",
"Spiludvikling"
],
"knowsAbout": [
"Informationssikkerhedsledelsessystemer",
"Offentligt ISMS Sverige",
"Cybersikkerhedsrådgivning",
"ISO 27001 Implementering",
"CIA Triaden Vurdering",
"Compliance-automatisering",
"Sikkerhedsarkitektur",
"Gennemsigtig Drift",
"Risikostyring",
"Open Source Sikkerhed",
"OSINT Metodologi",
"Parlamentarisk Overvågning",
"Politisk Gennemsigtighed",
"Svensk Regeringsanalyse",
"DevSecOps",
"Cloud Sikkerhedsarkitektur",
"OSPO Ledelse",
"AWS Sikkerhed",
"Virksomhedssikkerhedsrådgivning",
"Forsyningskædesikkerhed",
"SLSA Niveau 3 Overholdelse",
"Container Sikkerhed",
"Serverless Sikkerhed",
"Zero Trust Arkitektur",
"Sikkerhedskulturuddannelse",
"Koreansk Kampsportsspil",
"Kulturel Bevarelsesteknologi"
],
"areaServed": [
{
"@type": "City",
"name": "Göteborg",
"containedInPlace": {
"@type": "Country",
"name": "Sverige"
}
},
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
},
{
"@type": "Country",
"name": "United States"
},
{
"@type": "Country",
"name": "United Kingdom"
},
{
"@type": "Country",
"name": "Israel"
},
{
"@type": "Country",
"name": "Canada"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISSP - Certified Information Systems Security Professional",
"recognizedBy": {
"@type": "Organization",
"name": "(ISC)²"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISM - Certified Information Security Manager",
"recognizedBy": {
"@type": "Organization",
"name": "ISACA"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Security - Specialty",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Solutions Architect - Professional",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
}
],
"address": {
"@type": "PostalAddress",
"addressLocality": "Göteborg",
"addressRegion": "Västra Götaland",
"addressCountry": "SE"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "57.7089",
"longitude": "11.9746"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "00:00",
"closes": "00:00",
"description": "Kun efter aftale"
}
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Kundeservice",
"url": "https://www.linkedin.com/company/hack23/",
"availableLanguage": [
"Engelsk",
"Svensk"
]
},
"numberOfEmployees": {
"@type": "QuantitativeValue",
"value": 1
},
"founder": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"givenName": "James Pether",
"familyName": "Sörling",
"additionalName": "pethers",
"jobTitle": "CEO / Founder",
"email": "pether@hack23.com",
"url": "https://www.linkedin.com/in/jamessorling/",
"description": "Cybersikkerhedsleder med over 20 års erfaring inden for informationssikkerhed, cloud-arkitektur og open source-udvikling. Stifter af Hack23 AB, skaber af CIA Compliance Manager, Citizen Intelligence Agency og Black Trigram kampsportsspil.",
"worksFor": {
"@type": "Organization",
"name": "Hack23 AB",
"url": "https://hack23.com"
},
"alumniOf": {
"@type": "EducationalOrganization",
"name": "Chalmers University of Technology"
},
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISSP - Certified Information Systems Security Professional"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISM - Certified Information Security Manager"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Security - Specialty"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Solutions Architect - Professional"
}
],
"knowsAbout": [
"Cybersikkerhed",
"Cloud-sikkerhed",
"Informationssikkerhedsstyring",
"ISO 27001",
"NIST Cybersecurity Framework",
"AWS Sikkerhed",
"DevSecOps",
"Open Source Sikkerhed",
"Spiludvikling",
"Koreansk kampsport",
"Taekwondo"
],
"sameAs": [
"https://www.linkedin.com/in/jamessorling/",
"https://github.com/Hack23",
"https://github.com/pethers",
"https://www.openhub.net/accounts/pether",
"https://slashdot.org/~pether",
"https://openprofile.dev/profile/pether"
]
},
"sameAs": [
"https://github.com/Hack23",
"https://www.linkedin.com/company/hack23/",
"https://blacktrigram.com",
"https://www.allabolag.se/foretag/hack23-ab/g%C3%B6teborg/konsulter/2KJBPZZI5YF3I",
"https://riksdagsmonitor.com",
"https://euparliamentmonitor.com"
],
"hasPart": [
{
"@id": "https://blacktrigram.com/#blacktrigram"
},
{
"@id": "https://hack23.com/#cia-compliance-manager"
},
{
"@id": "https://hack23.com/#citizen-intelligence-agency"
},
{
"@id": "https://hack23.com/#riksdagsmonitor"
},
{
"@id": "https://hack23.com/#euparliamentmonitor"
},
{
"@id": "https://hack23.com/#european-parliament-mcp-server"
}
],
"makesOffer": [
{
"@id": "https://hack23.com/services.html#service-security-architecture"
},
{
"@id": "https://hack23.com/services.html#service-cloud-security"
},
{
"@id": "https://hack23.com/services.html#service-secure-development"
},
{
"@id": "https://hack23.com/services.html#service-compliance"
},
{
"@id": "https://hack23.com/services.html#service-opensource-security"
},
{
"@id": "https://hack23.com/services.html#service-security-culture"
}
]
},
{
"@type": "WebSite",
"@id": "https://hack23.com/#website",
"url": "https://hack23.com/",
"name": "Hack23 AB",
"inLanguage": "en",
"publisher": {
"@id": "https://hack23.com/#org"
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://hack23.com/?search={search_term_string}"
},
"query-input": "required name=search_term_string"
},
"description": "Førende svensk cybersikkerhedskonsultation med fuldstændig gennemsigtighed. Offentlig ISMS, ISO 27001 ekspertise, AWS sikkerhed og open source efterretning."
},
{
"@type": "VideoGame",
"@id": "https://blacktrigram.com/#blacktrigram",
"name": "Black Trigram",
"alternateName": [
"흑괘",
"Black Trigram Spil"
],
"url": "https://blacktrigram.com",
"downloadUrl": "https://github.com/Hack23/blacktrigram/releases",
"codeRepository": "https://github.com/Hack23/blacktrigram",
"image": "https://hack23.com/black-trigram-140.webp",
"screenshot": "https://hack23.com/black-trigram-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Revolutionary 3D precision combat simulator inspired by traditional Korean martial arts focusing on anatomical targeting, realistic physics, and cultural preservation. Features 70 vital points, 5 combat archetypes, and authentic Taekkyeon/Hapkido techniques.",
"genre": [
"Fighting",
"Simulation",
"Educational",
"Cultural"
],
"applicationCategory": "GameApplication",
"applicationSubCategory": "Fighting Game",
"operatingSystem": "Cross-platform",
"gamePlatform": [
"PC",
"Cross-platform",
"Web Browser"
],
"contentRating": "Teen",
"programmingLanguage": [
"C#"
],
"softwareRequirements": "Unity Engine",
"softwareVersion": "latest",
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": [
"en",
"ko"
],
"educationalUse": "Korean martial arts education and cultural preservation",
"teaches": [
"Korean Traditional Martial Arts",
"Taekkyeon Techniques",
"Hapkido Joint Locks",
"Cultural Heritage",
"Anatomical Vital Points",
"I Ching Principles"
],
"audience": {
"@type": "Audience",
"audienceType": [
"Kampsportsentusiaster",
"Kulturarvsstuderende",
"Gamere",
"Koreansk kulturelever"
]
},
"playMode": [
"SinglePlayer",
"MultiPlayer"
],
"accessibilityFeature": [
"Customizable controls",
"Visual and audio feedback",
"Educational tooltips for martial arts techniques",
"Adjustable difficulty settings"
],
"featureList": [
"70 Anatomiske Vitale Punkters System",
"5 Kamparktyper (Musa, Amsalja, Hacker, Jeongbo, Jojik)",
"Autentiske Koreanske Kampsportsteknikker",
"Physics-Based Combat Simulation",
"Educational Gameplay",
"Cultural Preservation Focus",
"Open Source Development",
"Cross-platform Deployment",
"SLSA Level 3 Supply Chain Security"
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"ratingCount": "5",
"bestRating": "5",
"worstRating": "1"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Game"
},
"isAccessibleForFree": true,
"keywords": "Black Trigram, Korean martial arts game, Taekkyeon, Hapkido, combat simulator, vital points, educational gaming, cultural preservation, Unity game, C#, open source game",
"sameAs": [
"https://github.com/Hack23/blacktrigram"
]
},
{
"@type": "SoftwareApplication",
"@id": "https://hack23.com/#cia-compliance-manager",
"name": "CIA Compliance Manager",
"alternateName": "Confidentiality Integrity Availability Compliance Manager",
"applicationCategory": "SecurityApplication",
"applicationSubCategory": "Enterprise Security Management",
"operatingSystem": "Cross-platform",
"softwareVersion": "latest",
"url": "https://ciacompliancemanager.com/",
"downloadUrl": "https://github.com/Hack23/cia-compliance-manager/releases",
"codeRepository": "https://github.com/Hack23/cia-compliance-manager",
"image": "https://hack23.com/cia-icon-140.webp",
"screenshot": "https://hack23.com/cia-icon-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Advanced security assessment platform covering confidentiality, integrity and availability with business impact analysis, cost estimation, and compliance mapping to NIST, ISO 27001, GDPR, HIPAA, SOC2 frameworks.",
"featureList": [
"CIA Triad Security Assessment",
"Business Impact Analysis",
"NIST Framework Compliance Mapping",
"ISO 27001 Controls Implementation",
"GDPR Data Protection Assessment",
"HIPAA Compliance Mapping",
"SOC2 Controls Mapping",
"Risk Quantification & Reporting",
"Automated Compliance Reports",
"Security Control Gap Analysis"
],
"programmingLanguage": [
"Java",
"JavaScript",
"TypeScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, Maven",
"audience": [
{
"@type": "Audience",
"audienceType": "Chief Information Security Officers (CISOs)"
},
{
"@type": "Audience",
"audienceType": "Compliance Officers"
},
{
"@type": "Audience",
"audienceType": "IT Security Managers"
},
{
"@type": "Audience",
"audienceType": "Risk Management Professionals"
},
{
"@type": "Audience",
"audienceType": "Security Auditors"
}
],
"teaches": [
"CIA Triad Principles",
"NIST Cybersecurity Framework",
"ISO 27001 Controls",
"GDPR Compliance",
"HIPAA Security Requirements",
"SOC2 Trust Principles",
"Business Impact Analysis",
"Security Risk Management"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Security Tool"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": "en",
"isAccessibleForFree": true,
"keywords": "CIA Triad, security assessment, compliance management, NIST, ISO 27001, GDPR, HIPAA, SOC2, risk management",
"sameAs": [
"https://github.com/Hack23/cia-compliance-manager"
]
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#citizen-intelligence-agency",
"name": "Citizen Intelligence Agency",
"alternateName": "CIA Political Transparency Platform",
"applicationCategory": "DataVisualizationApplication",
"applicationSubCategory": "Political Intelligence Platform",
"operatingSystem": "Cross-platform",
"url": "https://github.com/Hack23/cia",
"downloadUrl": "https://github.com/Hack23/cia/releases",
"codeRepository": "https://github.com/Hack23/cia",
"image": "cia-logo.png",
"screenshot": "https://hack23.com/cia-icon-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Open-source intelligence and political transparency platform providing data-driven governance insights, parliamentary monitoring, democratic accountability metrics, and real-time political analysis for svensk demokrati.",
"featureList": [
"Svensk parlamentarisk overvågning (Riksdag)",
"Political Decision Tracking",
"Governance Metrics & Rankings",
"Democratic Accountability Analysis",
"Open Data Integration (World Bank, Svensk regering)",
"Political Trend Visualization",
"Voting Pattern Analysis",
"Party Performance Metrics",
"Minister Activity Tracking",
"Committee Work Analysis"
],
"programmingLanguage": [
"Java",
"JavaScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, PostgreSQL",
"audience": [
{
"@type": "Audience",
"audienceType": "Citizens"
},
{
"@type": "Audience",
"audienceType": "Journalists"
},
{
"@type": "Audience",
"audienceType": "Researchers"
},
{
"@type": "Audience",
"audienceType": "Policy Analysts"
},
{
"@type": "Audience",
"audienceType": "Political Scientists"
},
{
"@type": "Audience",
"audienceType": "Democracy Advocates"
}
],
"teaches": [
"Parliamentary Process Analysis",
"Democratic Accountability Metrics",
"Political Decision Tracking",
"OSINT Metodologi",
"Svensk governance-system",
"Data-Driven Political Analysis",
"Open Government Data Usage"
],
"browserRequirements": "Requires JavaScript. Recommended: Chrome, Firefox, Safari, Edge (latest versions)",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Political Intelligence Platform"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": [
"en",
"sv"
],
"isAccessibleForFree": true,
"keywords": "political transparency, Svensk parlament, Riksdag monitoring, democratic accountability, OSINT, open government data, political analysis",
"sameAs": [
"https://cia.sourceforge.io/",
"https://github.com/Hack23/cia"
]
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-security-architecture",
"serviceType": "Security Architecture & Strategy",
"name": "Security Architecture & Strategy",
"description": "Enterprise security architecture design, risk assessment and management, security strategy development, and governance framework design. We help organizations build robust security foundations aligned with business objectives.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
}
],
"availableLanguage": [
"Engelsk",
"Svensk"
],
"serviceOutput": "Security architecture documentation, risk assessment reports, security strategy roadmap"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-cloud-security",
"serviceType": "Cloud Security & DevSecOps",
"name": "Cloud Security & DevSecOps",
"description": "AWS security assessment and architecture, DevSecOps integration, infrastructure as code security, container and serverless security. Specializing in AWS with certified expertise.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
}
],
"availableLanguage": [
"Engelsk",
"Svensk"
],
"serviceOutput": "Cloud security architecture, DevSecOps pipeline implementation, infrastructure security assessment"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-secure-development",
"serviceType": "Secure Development & Code Quality",
"name": "Secure Development & Code Quality",
"description": "Secure SDLC implementation, CI/CD security integration, code quality and security analysis, supply chain security with SLSA Level 3 compliance. Integrating security seamlessly into development workflows.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
}
],
"availableLanguage": [
"Engelsk",
"Svensk"
],
"serviceOutput": "Secure SDLC framework, automated security testing, supply chain security implementation"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-compliance",
"serviceType": "Compliance & Regulatory",
"name": "Compliance & Regulatory",
"description": "GDPR, NIS2, ISO 27001 implementation, ISMS design and implementation, AI governance, and audit preparation. Demonstrating compliance through our own public ISMS.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
}
],
"availableLanguage": [
"Engelsk",
"Svensk"
],
"serviceOutput": "ISMS documentation, compliance framework implementation, audit preparation materials"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-opensource-security",
"serviceType": "Open Source Sikkerhed",
"name": "Open Source Sikkerhed",
"description": "OSPO establishment and management, vulnerability management, security tool development, and community engagement. Leveraging our experience with multiple open-source security projects.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
}
],
"availableLanguage": [
"Engelsk",
"Svensk"
],
"serviceOutput": "OSPO strategy, vulnerability management process, security tooling"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-security-culture",
"serviceType": "Security Culture & Training",
"name": "Security Culture & Training",
"description": "Security awareness programs, developer security training, leadership security briefings, and incident response training. Building security-conscious organizations through education and culture change.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "Sweden"