-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex_ko.html
More file actions
2206 lines (2067 loc) · 119 KB
/
index_ko.html
File metadata and controls
2206 lines (2067 loc) · 119 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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>스웨덴 사이버보안 컨설팅 | 투명한 공개 ISMS | Hack23</title>
<!-- 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);
}
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;
}
.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">
<!-- Preload critical font (Inter 400) -->
<!-- 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>
<!-- 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>
<link rel="canonical" href="https://hack23.com/index_ko.html">
<meta name="description" content="스웨덴 프리미엄 사이버보안 컨설팅. 국가 유일 완전 공개 ISMS. ISO 27001, GDPR/NIS2, AWS 보안 전문가. CISSP/CISM 인증. 예테보리 기반. 투명한 보안 솔루션으로 혁신을 가속화합니다.">
<meta name="keywords" content="사이버보안 컨설팅 스웨덴, 공개 ISMS, ISO 27001, ISO 27001 구현, K-ISMS, KISA, 한국인터넷진흥원, GDPR 규정 준수, NIS2, PIPA, 개인정보보호법, DevSecOps, AWS 보안, Azure 보안, 클라우드 보안, CISSP 컨설턴트, CISM, 보안 아키텍처, 보안 전략, 예테보리 사이버보안, 규정 준수 자동화, 제로 트러스트, 심층 방어, CIA 3요소, 기밀성, 무결성, 가용성, 위험 관리, 위험 평가, 위협 모델링, STRIDE, 보안 거버넌스, 보안 정책, 정보보안 관리체계, ISMS 투명성, 액세스 제어, 최소 권한, 다단계 인증, 암호화 정책, 암호화 키 관리, 데이터 분류, 정보 자산 관리, 사고 대응, 침해사고 대응, 취약점 관리, 패치 관리, 보안 감사, 내부 감사, 외부 감사, 보안 테스트, 침투 테스트, 보안 모니터링, SIEM, 로깅 정책, 네트워크 보안, 방화벽 정책, 침입 탐지, 침입 방지, 웹 애플리케이션 방화벽, DDoS 방어, 보안 의식 교육, 보안 교육 프로그램, 피싱 인식, 보안 메트릭, KPI, 보안 대시보드, 비즈니스 연속성, 재해 복구, 백업 정책, 공급망 보안, 제3자 위험 관리, 벤더 보안 평가, SLSA, SBOM, 모바일 보안, BYOD, 원격 접근 보안, VPN 정책, 이메일 보안, 피싱 방지, 스팸 필터링, 물리적 보안, 데이터 센터 보안, 환경 통제, NIST CSF, CIS Controls, COBIT, ITIL, 사이버 복원력, 보안 자동화, 보안 오케스트레이션, SOAR, 컨테이너 보안, Kubernetes 보안, 서버리스 보안, Lambda 보안, API 보안, 마이크로서비스 보안, Hack23, 스웨덴 혁신, 공개 보안 문서, 투명성 통한 보안">
<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">
<meta name="application-name" content="Hack23 AB">
<meta name="theme-color" content="#0066CC"><meta property="og:title" content="Hack23 AB | 프리미엄 사이버보안 컨설팅 스웨덴">
<meta property="og:description" content="스웨덴 유일의 완전 공개 ISMS. 전문 ISO 27001, GDPR/NIS2, AWS 보안 컨설팅. CISSP/CISM 인증. 30+ 년 경험. 예테보리 기반.">
<meta property="og:locale" content="ko_KR">
<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="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_ko.html">
<meta property="og:image" content="cia-icon-140.webp">
<meta property="og:image:alt" content="Hack23 보안 우수성 로고">
<meta property="og:site_name" content="Hack23 AB">
<meta property="og:updated_time" content="2025-11-07T00:00:00Z">
<meta property="og:image:width" content="140">
<meta property="og:image:height" content="140">
<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, 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">
<!-- 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, 규정 준수 자동화 및 보안 중심 혁신.",
"industry": [
"정보보안",
"사이버보안 컨설팅",
"규정 준수 자동화",
"게임 개발"
],
"knowsAbout": [
"정보보안관리시스템",
"사이버보안 컨설팅",
"ISO 27001 구현",
"CIA 삼원소 평가",
"규정 준수 자동화",
"보안 아키텍처",
"투명한 운영",
"위험 관리",
"오픈소스 보안",
"DevSecOps",
"클라우드 보안 아키텍처",
"OSPO 관리",
"AWS 보안",
"기업 보안 컨설팅",
"공급망 보안",
"SLSA 레벨 3 준수",
"컨테이너 보안",
"서버리스 보안",
"제로 트러스트 아키텍처",
"보안 문화 교육",
"스웨덴 공개 ISMS",
"OSINT 방법론",
"의회 모니터링",
"정치적 투명성",
"스웨덴 정부 분석",
"한국 무술 게임",
"문화 보존 기술"
],
"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": "캐나다"
}
],
"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": "바스트라 예탈란드",
"addressCountry": "SE"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "57.7089",
"longitude": "11.9746"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"월요일",
"화요일",
"수요일",
"목요일",
"금요일"
],
"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",
"name": "James Pether Sörling",
"jobTitle": "CEO / 창업자",
"url": "https://www.linkedin.com/in/jamessorling/",
"sameAs": [
"https://www.linkedin.com/in/jamessorling/",
"https://github.com/Hack23",
"https://www.openhub.net/accounts/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/#service-security-architecture"
},
{
"@id": "https://hack23.com/#service-cloud-security"
},
{
"@id": "https://hack23.com/#service-secure-development"
},
{
"@id": "https://hack23.com/#service-compliance"
},
{
"@id": "https://hack23.com/#service-opensource-security"
},
{
"@id": "https://hack23.com/#service-security-culture"
}
]
},
{
"@type": "WebSite",
"@id": "https://hack23.com/#website",
"url": "https://hack23.com/",
"name": "Hack23 AB",
"inLanguage": "ko",
"publisher": {
"@id": "https://hack23.com/#org"
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://hack23.com/index_ko.html?search={search_term_string}"
},
"query-input": "required name=search_term_string"
},
"description": "완전한 투명성을 갖춘 스웨덴 사이버보안 컨설팅. 공개 ISMS, ISO 27001 전문성, AWS 보안, 오픈소스 인텔리전스."
},
{
"@type": "BreadcrumbList",
"@id": "https://hack23.com/index_ko.html#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "홈",
"item": "https://hack23.com/index_ko.html"
}
]
},
{
"@type": "VideoGame",
"@id": "https://blacktrigram.com/#blacktrigram",
"name": "Black Trigram",
"alternateName": "Black Trigram 정밀 전투 시뮬레이터",
"url": "https://blacktrigram.com",
"image": "black-trigram-140.webp",
"description": "한국 전통 무술 기반 해부학 정밀 타격 3D 전투 시뮬레이터.",
"genre": [
"격투",
"시뮬레이션",
"교육"
],
"applicationCategory": "GameApplication",
"operatingSystem": "크로스 플랫폼",
"playMode": [
"SinglePlayer",
"MultiPlayer"
],
"gamePlatform": [
"PC",
"크로스 플랫폼"
],
"contentRating": "청소년",
"accessibilityFeature": [
"맞춤형 제어",
"시각 및 청각 피드백",
"무술 기술에 대한 교육 도구 설명",
"난이도 조정 설정"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "KRW",
"availability": "https://schema.org/InStock",
"category": "오픈소스 게임"
},
"author": {
"@id": "https://hack23.com/#org"
},
"publisher": {
"@id": "https://hack23.com/#org"
},
"inLanguage": "ko",
"sameAs": [
"https://github.com/Hack23/blacktrigram"
]
},
{
"@type": "SoftwareApplication",
"@id": "https://hack23.com/#cia-compliance-manager",
"name": "CIA Compliance Manager",
"applicationCategory": "SecurityApplication",
"operatingSystem": "크로스 플랫폼",
"softwareVersion": "latest",
"url": "https://ciacompliancemanager.com/",
"image": "cia-icon-140.webp",
"description": "CIA 삼원소(기밀성·무결성·가용성) 평가 및 규제 프레임워크 매핑 도구.",
"audience": [
{
"@type": "Audience",
"audienceType": "최고 정보보안 책임자 (CISO)"
},
{
"@type": "Audience",
"audienceType": "컴플라이언스 책임자"
},
{
"@type": "Audience",
"audienceType": "IT 보안 관리자"
}
],
"teaches": [
"CIA 삼원소 원칙",
"NIST 사이버보안 프레임워크",
"ISO 27001 제어",
"GDPR 규정 준수",
"비즈니스 영향 분석",
"보안 위험 관리"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "KRW",
"availability": "https://schema.org/InStock",
"category": "오픈소스 보안 도구"
},
"publisher": {
"@id": "https://hack23.com/#org"
},
"author": {
"@id": "https://hack23.com/#org"
},
"inLanguage": "ko"
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#citizen-intelligence-agency",
"name": "Citizen Intelligence Agency",
"alternateName": "시민 정보기관",
"applicationCategory": "DataVisualizationApplication",
"operatingSystem": "크로스 플랫폼",
"url": "https://github.com/Hack23/cia",
"image": "cia-logo.png",
"description": "스웨덴 정치 투명성을 위한 오픈소스 데이터 기반 플랫폼.",
"teaches": [
"의회 절차 분석",
"민주적 책임 메트릭",
"정치적 의사결정 추적",
"OSINT 방법론",
"스웨덴 통치 시스템"
],
"browserRequirements": "JavaScript 필요. 권장: Chrome, Firefox, Safari, Edge (최신 버전)",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "KRW",
"availability": "https://schema.org/InStock",
"category": "오픈소스 정치 정보 플랫폼"
},
"publisher": {
"@id": "https://hack23.com/#org"
},
"author": {
"@id": "https://hack23.com/#org"
},
"inLanguage": "ko"
},
{
"@type": "Service",
"@id": "https://hack23.com/#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/#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/#service-secure-development",
"serviceType": "안전한 개발 및 코드 품질",
"name": "안전한 개발 및 코드 품질",
"description": "안전한 SDLC 구현, CI/CD 보안 통합, 코드 품질 및 보안 분석, SLSA 레벨 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/#service-compliance",
"serviceType": "규정 준수 및 규제",
"name": "규정 준수 및 규제",
"description": "GDPR, NIS2, ISO 27001 구현, ISMS 설계 및 구현, AI 거버넌스 및 감사 준비. 자체 공개 ISMS를 통한 규정 준수 입증.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "스웨덴"
},
{
"@type": "Place",
"name": "북유럽"
},
{
"@type": "Place",
"name": "유럽"
}
],
"availableLanguage": [
"한국어",
"영어",
"스웨덴어"
],
"serviceOutput": "ISMS 문서화, 규정 준수 프레임워크 구현, 감사 준비 자료"
},
{
"@type": "Service",
"@id": "https://hack23.com/#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/#service-security-culture",
"serviceType": "보안 문화 및 교육",
"name": "보안 문화 및 교육",
"description": "보안 인식 프로그램, 개발자 보안 교육, 리더십 보안 브리핑 및 사고 대응 교육. 교육 및 문화 변화를 통한 보안 의식 있는 조직 구축.",
"provider": {
"@id": "https://hack23.com/#org"
},
"areaServed": [
{
"@type": "Country",
"name": "스웨덴"
},
{
"@type": "Place",
"name": "북유럽"
},
{
"@type": "Place",
"name": "유럽"
}
],
"availableLanguage": [
"한국어",
"영어",
"스웨덴어"
],
"serviceOutput": "교육 자료, 보안 인식 프로그램, 사고 대응 플레이북"
},
{
"@type": "WebPage",
"@id": "https://hack23.com/index_ko.html#page",
"url": "https://hack23.com/index_ko.html",
"name": "Hack23 AB | 공개 ISMS & 사이버보안 허브",
"isPartOf": {
"@id": "https://hack23.com/#website"
},
"about": [
{
"@id": "https://blacktrigram.com/#blacktrigram"
}
],
"primaryImageOfPage": {
"@type": "ImageObject",
"url": "cia-icon-140.webp"
},
"inLanguage": "ko"
},
{
"@type": "FAQPage",
"@id": "https://hack23.com/index_ko.html#faq",
"mainEntity": [
{
"@type": "Question",
"name": "Hack23가 다른 사이버보안 컨설팅 업체와 다른 점은 무엇인가요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Hack23 AB는 GitHub에서 모든 정책, 위협 모델 및 보안 문서를 공개하는 스웨덴 유일의 완전 공개 ISMS(정보보안 관리 시스템)를 운영합니다. 이러한 급진적 투명성은 검증된 실전 프레임워크를 고객에게 제공하면서 우리의 전문성을 입증합니다. 30년 이상의 실무 경험과 CISSP/CISM 자격증, 현재 실무자 지위(Stena Group IT의 Application Security Officer)를 결합하여 이론뿐만 아니라 실용적이고 구현 가능한 보안 조언을 보장합니다."
}
},
{
"@type": "Question",
"name": "스웨덴에서 사이버보안 컨설팅 비용은 얼마인가요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "사이버보안 컨설팅 비용은 업무 범위에 따라 다릅니다. 일반적인 범위: (1) 보안 평가: 2-4주 종합 검토에 €5,000-€15,000; (2) ISO 27001 구현: 3-6개월 프로젝트에 €15,000-€30,000; (3) DevSecOps 통합: CI/CD 보안 설정에 €10,000-€25,000; (4) 시간당 컨설팅: 자문 서비스에 €150-€250/시간. 숨겨진 비용 없이 투명한 가격을 제공합니다. 조직의 요구에 맞는 맞춤 견적은 문의하세요."
}
},
{
"@type": "Question",
"name": "원격으로 작업하나요, 아니면 예테보리 현장 방문이 필요한가요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "원격 및 대면 사이버보안 컨설팅을 모두 제공합니다. 원격 서비스는 화상 회의, 화면 공유 및 협업 문서 도구를 통해 전 세계적으로 이용 가능하며 분산 팀과 비용 효율적인 업무에 이상적입니다. 대면 컨설팅은 스웨덴 예테보리에서 제공되며, 직접 상호 작용, 실습 워크숍 또는 물리적 존재가 필요한 민감한 논의를 선호하는 고객에게 적합합니다. 원격과 가끔 현장 방문을 결합한 하이브리드 모델도 많은 고객에게 잘 작동합니다."
}
},
{
"@type": "Question",
"name": "공개 ISMS란 무엇이며 왜 중요한가요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "공개 ISMS(정보보안 관리 시스템)는 보안 정책, 절차, 위협 모델 및 위험 평가가 공개적으로 사용 가능한 개방적이고 투명한 프레임워크입니다(기밀로 유지되는 기존 ISMS와 달리). GitHub의 Hack23 공개 ISMS(https://github.com/Hack23/ISMS-PUBLIC)는 주장이 아닌 실제 구현을 통해 보안 전문성을 입증합니다. 이 투명성은: (1) 우리가 자신의 권장 사항을 따른다는 것을 증명하고, (2) 잠재 고객이 참여 전에 방법론을 평가할 수 있게 하며, (3) 보안 커뮤니티에 무료 템플릿과 예제를 제공하고, (4) 보안 자세에 대한 자신감을 보여줍니다. 모호함을 통한 보안이 아닌 투명성을 통한 보안입니다."
}
},
{
"@type": "Question",
"name": "Hack23 컨설턴트는 어떤 자격증을 보유하고 있나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Hack23 컨설턴트는 업계 공인 자격증을 보유하고 있습니다: (1) CISSP(공인 정보시스템 보안 전문가) - 보안 전문 지식의 글로벌 표준, (2) CISM(공인 정보보안 관리자) - 관리 중심 보안 자격증, (3) AWS 공인 보안 - 전문가 - 클라우드 보안 전문 지식, (4) AWS 공인 솔루션 아키텍트 - 프로페셔널 - 인프라 설계. 자격증 외에도 팀은 30년 이상의 실무 경험, 현재 실무자 역할(Application Security Officer 직책) 및 활발한 오픈소스 보안 기여를 제공합니다. 우리는 실용적 경험과 지속적인 학습이 자격증만으로보다 더 중요하다고 믿습니다."
}
},
{
"@type": "Question",
"name": "ISO 27001 구현에는 얼마나 걸리나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "ISO 27001 구현은 중소 스웨덴 조직(직원 10-50명)의 경우 일반적으로 3-6개월이 소요됩니다. 일정 분석: (1) 범위 지정 및 격차 분석: 2-4주, (2) ISMS 설계 및 위험 평가: 3-4주, (3) 통제 구현: 8-12주, (4) 내부 감사 및 경영 검토: 2-3주, (5) 인증 감사 준비: 1-2주. 대규모 조직(직원 50명 이상)은 6-12개월이 필요할 수 있습니다. 일정에 영향을 미치는 요소: 기존 보안 성숙도, 자원 가용성, 조직 복잡성 및 컨설턴트 참여. 우리의 공개 ISMS는 구현을 30-40% 가속화하는 입증된 템플릿을 제공합니다."
}
},
{
"@type": "Question",
"name": "어떤 산업 분야에 서비스를 제공하나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Hack23는 사이버보안 컨설팅으로 다양한 산업 분야에 서비스를 제공합니다: (1) 기술 및 SaaS 회사 - DevSecOps, 클라우드 보안, 안전한 SDLC, (2) 금융 서비스 - GDPR, PSD2, MAS 사이버보안 규정 준수, (3) 의료 및 제약 - ISO 27001, GDPR, 환자 데이터 보호, (4) 제조 및 산업 - OT 보안, 공급망 위험, ISO 27001, (5) 전자 상거래 및 소매 - PCI DSS, 데이터 보호, 사기 방지, (6) 전문 서비스 - 고객 데이터 보안, 규정 준수 프레임워크. 산업에 구애받지 않는 보안 원칙은 보편적으로 적용되며 필요한 경우 부문별 규제 지식을 제공합니다."
}
},
{
"@type": "Question",
"name": "GDPR 및 NIS2 규정 준수를 도와드릴 수 있나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "예, Hack23는 포괄적인 GDPR(일반 데이터 보호 규정) 및 NIS2(네트워크 및 정보보안 지침 2) 규정 준수 컨설팅을 제공합니다. GDPR 서비스: 데이터 보호 영향 평가(DPIA), 프라이버시 설계 통합, 동의 관리, 데이터 주체 권리 구현, 침해 통지 절차. NIS2 서비스: 필수/중요 주체 분류, 위험 관리 프레임워크, 사고 보고 절차(24시간 통지), 공급망 보안, 거버넌스 구조 정렬. GDPR/NIS2 요구 사항을 ISO 27001 구현에 통합하여 통합 규정 준수 관리를 수행합니다. 체크박스 규정 준수가 아닌 실용적이고 구현 가능한 솔루션."
}
},
{
"@type": "Question",
"name": "DevSecOps에 대한 접근 방식은 무엇인가요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "DevSecOps 접근 방식: '혁신을 차단하지 않고 가능하게 하는 보안.' 개발 속도를 저하시키지 않고 보안을 CI/CD 파이프라인에 통합합니다. 주요 요소: (1) 자동화된 보안 스캔: GitHub Actions/GitLab CI의 SAST/DAST/SCA 도구, (2) 코드형 인프라 보안: Terraform/CloudFormation 스캔, 정책 코드, (3) 컨테이너 보안: 이미지 스캔, 런타임 보호, Kubernetes 보안 정책, (4) 비밀 관리: HashiCorp Vault 통합, 하드 코딩된 자격 증명 없음, (5) 보안 게이트: 낮음/중간 발견은 비차단, 심각/높음은 차단, (6) 개발자 교육: 보안 챔피언 프로그램, 안전한 코딩 워크숍. 결과: 측정 가능한 위험 감소로 더 빠르고 안전한 릴리스."
}
},
{
"@type": "Question",
"name": "보안 아키텍처 검토를 제공하나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "예, Hack23는 다음을 포함하는 포괄적인 보안 아키텍처 검토를 수행합니다: (1) 클라우드 아키텍처: AWS/Azure/GCP 보안 평가, IAM 검토, 네트워크 세그먼테이션, 안전한 구성, (2) 애플리케이션 아키텍처: 위협 모델링(STRIDE 분석), 인증/권한 부여 설계, 데이터 흐름 보안, API 보안, (3) 인프라 아키텍처: 제로 트러스트 원칙, 심층 방어, 공격 표면 분석, 보안 모니터링, (4) 규정 준수 정렬: ISO 27001, NIST CSF, CIS 통제 매핑. 산출물: 상세한 보안 아키텍처 문서, 위협 모델, 우선순위가 지정된 개선 로드맵 및 구현 지침. 검토는 복잡도에 따라 일반적으로 2-4주가 소요됩니다."
}
},
{
"@type": "Question",
"name": "보안 컨설팅에는 무엇이 포함되나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Hack23 보안 컨설팅에는 다음이 포함됩니다: (1) 초기 평가: 보안 요구 사항, 과제 및 목표를 이해하기 위한 30-60분 발견 통화, (2) 격차 분석: 업계 표준(ISO 27001, NIST, CIS)에 대한 현재 보안 자세 검토, (3) 위협 환경: 업계 및 기술 스택과 관련된 관련 위협 식별, (4) 권장 사항: 비용/이익 분석을 통한 우선순위가 지정된 실행 가능한 보안 개선, (5) 로드맵: 마일스톤 및 자원 요구 사항이 포함된 구현 일정, (6) 후속 조치: 결과 및 다음 단계가 포함된 서면 보고서. 자격을 갖춘 잠재 고객에게 무료 초기 컨설팅 제공. 진행 의무 없음."
}
},
{
"@type": "Question",
"name": "Hack23와 어떻게 시작하나요?",
"acceptedAnswer": {
"@type": "Answer",
"text": "시작하기 간단합니다: (1) 문의: info@hack23.com으로 이메일을 보내세요, (2) 초기 통화: 보안 요구 사항을 논의하기 위한 30분 발견 통화(무료, 의무 없음), (3) 제안: 범위, 일정, 산출물 및 가격을 개략적으로 설명하는 맞춤 제안, (4) 킥오프: 승인되면 이해 관계자 인터뷰 및 문서 검토를 시작합니다, (5) 실행: 전체 참여 기간 동안 정기적인 체크인, 투명한 커뮤니케이션 및 산출물 검토. 일반적인 응답 시간: 초기 문의 후 24-48시간, 제안 전달 1주일. 보안 자세를 개선할 준비가 되셨나요? 오늘 연락하세요."
}
}
]
}
]
}</script>
<link rel="alternate" hreflang="ar" href="https://hack23.com/index_ar.html">
<link rel="alternate" hreflang="ar-SA" href="https://hack23.com/index_ar.html">
<link rel="alternate" hreflang="ar-EG" href="https://hack23.com/index_ar.html">
<link rel="alternate" hreflang="da" href="https://hack23.com/index_da.html">
<link rel="alternate" hreflang="de" href="https://hack23.com/index_de.html">
<link rel="alternate" hreflang="de-DE" href="https://hack23.com/index_de.html">
<link rel="alternate" hreflang="en" href="https://hack23.com/index.html">
<link rel="alternate" hreflang="es" href="https://hack23.com/index_es.html">
<link rel="alternate" hreflang="es-ES" href="https://hack23.com/index_es.html">
<link rel="alternate" hreflang="fi" href="https://hack23.com/index_fi.html">
<link rel="alternate" hreflang="fr" href="https://hack23.com/index_fr.html">
<link rel="alternate" hreflang="fr-FR" href="https://hack23.com/index_fr.html">
<link rel="alternate" hreflang="he" href="https://hack23.com/index_he.html">
<link rel="alternate" hreflang="he-IL" href="https://hack23.com/index_he.html">
<link rel="alternate" hreflang="ja" href="https://hack23.com/index_ja.html">
<link rel="alternate" hreflang="ja-JP" href="https://hack23.com/index_ja.html">
<link rel="alternate" hreflang="ko" href="https://hack23.com/index_ko.html">
<link rel="alternate" hreflang="ko-KR" href="https://hack23.com/index_ko.html">
<link rel="alternate" hreflang="nl" href="https://hack23.com/index_nl.html">
<link rel="alternate" hreflang="nl-NL" href="https://hack23.com/index_nl.html">
<link rel="alternate" hreflang="no" href="https://hack23.com/index_no.html">
<link rel="alternate" hreflang="nb" href="https://hack23.com/index_no.html">
<link rel="alternate" hreflang="sv" href="https://hack23.com/index_sv.html">
<link rel="alternate" hreflang="sv-SE" href="https://hack23.com/index_sv.html">
<link rel="alternate" hreflang="zh" href="https://hack23.com/index_zh.html">
<link rel="alternate" hreflang="zh-CN" href="https://hack23.com/index_zh.html">
<link rel="alternate" hreflang="zh-SG" href="https://hack23.com/index_zh.html">
<link rel="alternate" hreflang="zh-Hans" href="https://hack23.com/index_zh.html">
<link rel="alternate" hreflang="x-default" href="https://hack23.com/index.html">
</head>
<body>
<!-- 키보드 탐색을 위한 본문으로 건너뛰기 링크 -->
<a href="#main-content" class="skip-link">본문으로 건너뛰기</a>
<!-- Sticky Navigation Bar -->
<nav class="sticky-nav" role="navigation" aria-label="메인 내비게이션">
<div class="nav-container">
<a href="index_ko.html" class="nav-logo" aria-label="Hack23 AB 홈">
<span>Hack23</span>
</a>
<button class="nav-toggle" aria-label="내비게이션 메뉴 열기" aria-expanded="false" aria-controls="nav-menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu" id="nav-menu" aria-label="내비게이션 메뉴" aria-hidden="true">
<li><a href="#political-intelligence" tabindex="-1">AI 뉴스</a></li>
<li><a href="#value-proposition" tabindex="-1">왜 Hack23인가?</a></li>
<li><a href="#security-services">서비스</a></li>
<li><a href="#products">제품</a></li>
<li><a href="blog_ko.html">블로그</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact" class="btn-nav">문의</a></li>
</ul>
</div>
</nav>
<!-- Breadcrumb Navigation -->
<nav aria-label="Breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item" aria-current="page">
홈
</li>
</ol>
</nav>
<header>
<div class="logo-container">
<img src="cia-icon-140.webp"
alt="Hack23 AB - 프리미엄 사이버보안 컨설팅 스웨덴"
class="logo"
width="80"
height="80"
fetchpriority="high">
</div>
<h1><span aria-hidden="true">🔐 </span>Hack23 AB <span class="header-subtitle">프리미엄 사이버보안 컨설팅 | 스웨덴 유일의 공개 ISMS</span></h1>
<p class="hero-tagline">투명성을 통한 보안 우수성 — 유럽 전역의 의회 저널리즘을 혁신하는 AI 기반 정치 인텔리전스 미디어.</p>
<p class="hero-subtitle">30년 이상의 전문성 • CISSP/CISM 인증 • 14개 언어 AI 생성 뉴스 • 예테보리 기반</p>
<div class="hero-cta">
<a href="services_ko.html" class="btn-primary-large">서비스 탐색</a>
<a href="https://github.com/Hack23/ISMS-PUBLIC" class="btn-secondary">공개 ISMS 보기</a>
<a href="#political-intelligence" class="btn-secondary">AI 정치 인텔리전스</a>
</div>
<!-- Detailed Introduction - Below the fold -->
<details class="header-intro-details">
<summary>📖 Hack23 AB에 대해 더 알아보기</summary>
<div class="header-intro">
<p class="intro-tagline"><strong>Hack23 AB</strong>에서는 투명성이 신뢰를 운영화합니다: 모든 보안 제어, 위험 평가 및 규정 준수 결정은 <strong>스웨덴 유일의 완전 공개 ISMS</strong>를 통해 공개적으로 문서화되어 사이버보안 컨설팅에서 전례 없는 신뢰성을 창출합니다.</p>
<p class="intro-overview"><strong>2025년에 설립</strong>되어 <strong>스웨덴 예테보리</strong>에 기반을 둔 우리는 다섯 개의 통합된 사업 분야에서 전문 보안 서비스를 제공합니다:</p>
<div class="business-lines">
<div class="business-line">
<strong>1. 사이버보안 컨설팅</strong>
<span>ISO 27001, GDPR, NIS2, AWS 보안 아키텍처, DevSecOps 통합</span>
</div>
<div class="business-line">
<strong>2. AI 기반 정치 인텔리전스 미디어</strong>
<span>스웨덴 및 EU 의회를 위한 자율 AI 뉴스 생성 — 10개 이상의 에이전트 워크플로우, 14개 언어, 인간 편집자 제로</span>
</div>
<div class="business-line">
<strong>3. CIA Compliance Manager</strong>
<span>NIST/ISO 27001/GDPR/HIPAA/SOC2 규정 준수 매핑을 갖춘 자동화된 CIA 삼원소 평가</span>
</div>
<div class="business-line">
<strong>4. Citizen Intelligence Agency</strong>
<span>스웨덴 의회 투명성 및 민주적 책임 플랫폼</span>
</div>
<div class="business-line">
<strong>5. Black Trigram</strong>