-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex_zh.html
More file actions
2189 lines (2063 loc) · 98.7 KB
/
index_zh.html
File metadata and controls
2189 lines (2063 loc) · 98.7 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="zh">
<head>
<title>瑞典网络安全咨询 | 公开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_zh.html">
<meta name="description" content="瑞典高级网络安全咨询。该国唯一完全公开的ISMS。ISO 27001、GDPR/NIS2、新加坡PDPA/MAS合规、AWS安全。CISSP/CISM认证。哥德堡。">
<meta name="keywords" content="瑞典网络安全咨询, 公开ISMS, ISO 27001, GDPR合规, NIS2, 新加坡PDPA, MAS网络安全, DevSecOps, AWS安全, CISSP顾问, 安全架构, 云安全, 哥德堡网络安全, 合规自动化, 零信任, 新加坡网络安全">
<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 | 瑞典高级网络安全咨询">
<meta property="og:description" content="瑞典唯一完全公开的ISMS。ISO 27001、GDPR/NIS2、新加坡PDPA/MAS合规、AWS安全专家咨询。CISSP/CISM认证。30多年经验。总部位于哥德堡。">
<meta property="og:locale" content="zh_CN">
<meta property="og:locale:alternate" content="ar_SA">
<meta property="og:locale:alternate" content="da_DK">
<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:type" content="website">
<meta property="og:url" content="https://hack23.com/index_zh.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 - 高端网络安全咨询"><meta property="og:image:alt" content="Hack23 AB - 通过透明度实现网络安全卓越">
<meta property="og:updated_time" content="2025-11-07T00:00:00Z">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hack23 AB | 瑞典高级网络安全咨询">
<meta name="twitter:description" content="瑞典唯一公开ISMS。ISO 27001、GDPR/NIS2、新加坡PDPA/MAS合规、AWS安全。CISSP/CISM认证。加速创新的实用安全。">
<meta name="twitter:image" content="cia-icon-140.webp">
<meta name="twitter:image:alt" content="Hack23 AB - 通过透明度实现网络安全卓越">
<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": "通过透明创新实现安全卓越",
"legalName": "Hack23 AB",
"foundingDate": "2025-01-01",
"description": "通过彻底透明度实现安全卓越的网络安全咨询公司。公开ISMS、合规自动化以及跨五个业务线的安全支持创新:网络安全咨询、AI驱动的政治情报媒体、CIA Compliance Manager、Citizen Intelligence Agency和Black Trigram教育游戏。",
"industry": [
"信息安全",
"网络安全咨询",
"合规自动化",
"游戏开发"
],
"knowsAbout": [
"信息安全管理系统",
"瑞典公共ISMS",
"网络安全咨询",
"ISO 27001实施",
"CIA三要素评估",
"合规自动化",
"安全架构",
"透明运营",
"风险管理",
"开源安全",
"OSINT方法论",
"议会监督",
"政治透明度",
"瑞典政府分析",
"DevSecOps",
"云安全架构",
"OSPO管理",
"AWS安全",
"企业安全咨询",
"供应链安全",
"SLSA 3级合规",
"容器安全",
"无服务器安全",
"零信任架构",
"安全文化培训",
"新加坡PDPA合规",
"MAS网络安全指南",
"东盟监管合规",
"韩国武术游戏",
"文化保护技术"
],
"areaServed": [
{
"@type": "City",
"name": "哥德堡",
"containedInPlace": {
"@type": "Country",
"name": "瑞典"
}
},
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
},
{
"@type": "Country",
"name": "美国"
},
{
"@type": "Country",
"name": "英国"
},
{
"@type": "Country",
"name": "以色列"
},
{
"@type": "Country",
"name": "加拿大"
},
{
"@type": "Country",
"name": "新加坡"
},
{
"@type": "Place",
"name": "东盟地区"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "CISSP - 认证信息系统安全专业人员",
"recognizedBy": {
"@type": "Organization",
"name": "(ISC)²"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "CISM - 认证信息安全经理",
"recognizedBy": {
"@type": "Organization",
"name": "ISACA"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "AWS认证安全专业",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "AWS认证解决方案架构师专业",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
}
],
"address": {
"@type": "PostalAddress",
"addressLocality": "哥德堡",
"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": "仅限预约"
}
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "客户服务",
"url": "https://www.linkedin.com/company/hack23/",
"availableLanguage": [
"英语",
"瑞典语"
]
},
"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": "首席执行官/创始人",
"email": "pether@hack23.com",
"url": "https://www.linkedin.com/in/jamessorling/",
"description": "网络安全领导者,拥有20多年信息安全、云架构和开源开发经验。Hack23 AB创始人,CIA Compliance Manager、Citizen Intelligence Agency和Black Trigram武术游戏的创建者。",
"worksFor": {
"@type": "Organization",
"name": "Hack23 AB",
"url": "https://hack23.com"
},
"alumniOf": {
"@type": "EducationalOrganization",
"name": "查尔姆斯理工大学"
},
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "CISSP - 认证信息系统安全专业人员"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "CISM - 认证信息安全经理"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "AWS认证安全专业"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "专业认证",
"name": "AWS认证解决方案架构师专业"
}
],
"knowsAbout": [
"网络安全",
"云安全",
"信息安全管理",
"ISO 27001",
"NIST网络安全框架",
"AWS安全",
"DevSecOps",
"开源安全",
"游戏开发",
"韩国武术",
"跆拳道"
],
"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"
],
"hasPart": [
{
"@id": "https://blacktrigram.com/#blacktrigram"
},
{
"@id": "https://hack23.com/#cia-compliance-manager"
},
{
"@id": "https://hack23.com/#citizen-intelligence-agency"
}
],
"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": "zh",
"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": "具有完全透明度的瑞典网络安全咨询。公共ISMS、ISO 27001专业知识、AWS安全和开源情报。"
},
{
"@type": "VideoGame",
"@id": "https://blacktrigram.com/#blacktrigram",
"name": "Black Trigram",
"alternateName": [
"흑괘",
"Black Trigram Game"
],
"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": "格斗游戏",
"operatingSystem": "跨平台",
"gamePlatform": [
"PC",
"跨平台",
"网页浏览器"
],
"contentRating": "青少年",
"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": "韩国武术教育和文化保护",
"teaches": [
"韩国传统武术",
"跜跛技术",
"合气道关节技",
"文化遗产",
"解剖学要害点位",
"易经原理"
],
"audience": {
"@type": "Audience",
"audienceType": [
"武术爱好者",
"文化遗产学生",
"游戏玩家",
"韩国文化学习者"
]
},
"playMode": [
"单人游戏",
"多人游戏"
],
"accessibilityFeature": [
"可自定义控制",
"视觉和音频反馈",
"武术技术教育提示",
"可调节难度设置"
],
"featureList": [
"70个解剖学要害点位系统",
"5种格斗原型 (武士、刺客、黑客、情报、组织)",
"正宗韩国武术技术",
"基于物理的格斗模拟",
"教育性游戏玩法",
"文化保护重点",
"开源开发",
"跨平台部署",
"SLSA Level 3 供应链安全"
],
"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": "开源游戏"
},
"isAccessibleForFree": true,
"keywords": "Black Trigram, 韩国武术游戏, 跜跛, 合气道, 格斗模拟器, 要害点位, 教育游戏, 文化保护, Unity游戏, C#, 开源游戏",
"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": "企业安全管理",
"operatingSystem": "跨平台",
"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": "先进的安全评估平台,涵盖机密性、完整性和可用性,提供业务影响分析、成本估算以及与NIST、ISO 27001、GDPR、HIPAA、SOC2框架的合规映射。",
"featureList": [
"CIA三元组安全评估",
"业务影响分析",
"NIST框架合规映射",
"ISO 27001控制实施",
"GDPR数据保护评估",
"HIPAA合规映射",
"SOC2控制映射",
"风险量化与报告",
"自动化合规报告",
"安全控制差距分析"
],
"programmingLanguage": [
"Java",
"JavaScript",
"TypeScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, Maven",
"audience": [
{
"@type": "Audience",
"audienceType": "首席信息安全官 (CISOs)"
},
{
"@type": "Audience",
"audienceType": "合规官"
},
{
"@type": "Audience",
"audienceType": "IT安全经理"
},
{
"@type": "Audience",
"audienceType": "风险管理专业人士"
},
{
"@type": "Audience",
"audienceType": "安全审计员"
}
],
"teaches": [
"CIA三元组原则",
"NIST网络安全框架",
"ISO 27001控制",
"GDPR合规",
"HIPAA安全要求",
"SOC2信任原则",
"业务影响分析",
"安全风险管理"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "开源安全工具"
},
"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": "zh",
"isAccessibleForFree": true,
"keywords": "CIA三元组, 安全评估, 合规管理, NIST, ISO 27001, GDPR, HIPAA, SOC2, 风险管理",
"sameAs": [
"https://github.com/Hack23/cia-compliance-manager"
]
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#citizen-intelligence-agency",
"name": "Citizen Intelligence Agency",
"alternateName": "CIA 政治透明平台",
"applicationCategory": "DataVisualizationApplication",
"applicationSubCategory": "政治情报平台",
"operatingSystem": "跨平台",
"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": "开源情报和政治透明平台,提供数据驱动的治理洞察、议会监督、民主问责指标以及瑞典民主的实时政治分析。",
"featureList": [
"瑞典议会监督 (Riksdag)",
"政治决策追踪",
"治理指标与排名",
"民主问责分析",
"开放数据集成 (世界银行, 瑞典政府)",
"政治趋势可视化",
"投票模式分析",
"政党绩效指标",
"部长活动追踪",
"委员会工作分析"
],
"programmingLanguage": [
"Java",
"JavaScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, PostgreSQL",
"audience": [
{
"@type": "Audience",
"audienceType": "公民"
},
{
"@type": "Audience",
"audienceType": "记者"
},
{
"@type": "Audience",
"audienceType": "研究人员"
},
{
"@type": "Audience",
"audienceType": "政策分析师"
},
{
"@type": "Audience",
"audienceType": "政治学家"
},
{
"@type": "Audience",
"audienceType": "民主倡导者"
}
],
"teaches": [
"议会流程分析",
"民主问责指标",
"政治决策追踪",
"OSINT方法论",
"瑞典治理体系",
"数据驱动政治分析",
"开放政府数据使用"
],
"browserRequirements": "需要JavaScript。推荐: Chrome, Firefox, Safari, Edge (最新版本)",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "开源政治情报平台"
},
"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": "政治透明, 瑞典议会, 议会监督, 民主问责, OSINT, 开放政府数据, 政治分析",
"sameAs": [
"https://cia.sourceforge.io/",
"https://github.com/Hack23/cia"
]
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-security-architecture",
"serviceType": "安全架构与战略",
"name": "安全架构与战略",
"description": "企业安全架构设计、风险评估与管理、安全战略制定和治理框架设计。我们帮助组织建立与业务目标一致的强大安全基础。",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
}
],
"availableLanguage": [
"英语",
"瑞典语"
],
"serviceOutput": "安全架构文档、风险评估报告、安全战略路线图"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-cloud-security",
"serviceType": "云安全与DevSecOps",
"name": "云安全与DevSecOps",
"description": "AWS安全评估与架构、DevSecOps集成、基础设施即代码安全、容器和无服务器安全。专注于AWS,拥有认证专业知识。",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
}
],
"availableLanguage": [
"英语",
"瑞典语"
],
"serviceOutput": "云安全架构、DevSecOps管道实施、基础设施安全评估"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-secure-development",
"serviceType": "安全开发与代码质量",
"name": "安全开发与代码质量",
"description": "安全SDLC实施、CI/CD安全集成、代码质量和安全分析、符合SLSA Level 3的供应链安全。将安全无缝集成到开发工作流中。",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
}
],
"availableLanguage": [
"英语",
"瑞典语"
],
"serviceOutput": "安全SDLC框架、自动化安全测试、供应链安全实施"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-compliance",
"serviceType": "合规与监管",
"name": "合规与监管",
"description": "GDPR、NIS2、ISO 27001、新加坡PDPA、MAS网络安全实施、ISMS设计与实施、AI治理以及审计准备。通过我们自己的公开ISMS展示合规性。",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
},
{
"@type": "Country",
"name": "新加坡"
},
{
"@type": "Place",
"name": "东盟地区"
}
],
"availableLanguage": [
"英语",
"瑞典语"
],
"serviceOutput": "ISMS文档、合规框架实施、审计准备材料"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-opensource-security",
"serviceType": "开源安全",
"name": "开源安全",
"description": "OSPO建立与管理、漏洞管理、安全工具开发和社区参与。利用我们在多个开源安全项目中的经验。",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "瑞典"
},
{
"@type": "Place",
"name": "北欧地区"
},
{
"@type": "Place",
"name": "欧洲"
}
],
"availableLanguage": [
"英语",
"瑞典语"
],
"serviceOutput": "OSPO战略、漏洞管理流程、安全工具"
},
{
"@type": "Service",
"@id": "https://hack23.com/services.html#service-security-culture",
"serviceType": "安全文化与培训",
"name": "安全文化与培训",