-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_report.json
More file actions
4487 lines (4487 loc) · 206 KB
/
analysis_report.json
File metadata and controls
4487 lines (4487 loc) · 206 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
{
"total_posts": 58,
"total_blocks": 634,
"categories": {
"code_image": 528,
"keep_code": 42,
"mermaid_diagram": 45,
"existing_mermaid": 19
},
"languages": {
"plaintext": 2,
"(no language)": 103,
"json": 17,
"hcl": 27,
"python": 47,
"bash": 122,
"yaml": 238,
"text": 6,
"c": 4,
"solidity": 5,
"markdown": 7,
"dockerfile": 2,
"xml": 2,
"javascript": 2,
"typescript": 7,
"tsx": 5,
"sql": 2,
"powershell": 7,
"yara": 1,
"mermaid": 19,
"spl": 8,
"nginx": 1
},
"recommendations": {
"mermaid_diagram": [
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 136,
"language": "hcl",
"length": 42,
"preview": "# Terraform: 보안 VPC 구성 resource \"aws_vpc\" \"secure_vpc\" { cidr_block = \"10.0.0.0/16\" en"
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 176,
"language": "",
"length": 29,
"preview": "사용자 요청: \"Lambda 함수가 S3 버킷 'app-data'에서 읽기만 하고, CloudWatch Logs에 로그를 쓸 수 있는 최소 권한 정책 생성해줘\" AI 자동 생성"
},
{
"file": "2025-06-06-Cloud_Security_Course_7Batch_-_8Week_CI_CDAnd_Kubernetes_Security_Practical_Guide.md",
"line": 95,
"language": "yaml",
"length": 70,
"preview": "# .github/workflows/secure-pipeline.yml name: Secure CI/CD Pipeline on: push: branches: [main, de"
},
{
"file": "2025-06-06-Cloud_Security_Course_7Batch_-_8Week_CI_CDAnd_Kubernetes_Security_Practical_Guide.md",
"line": 669,
"language": "yaml",
"length": 17,
"preview": "# Audit Policy에서 credential 추적 활성화 apiVersion: audit.k8s.io/v1 kind: Policy rules: - level: RequestR"
},
{
"file": "2025-06-13-Cloud_Security_Course_7Batch_-_9Week_DevSecOps_Integration.md",
"line": 83,
"language": "",
"length": 26,
"preview": "┌──────────────────────────────────────────────────────────────────────────┐ │ DevSecOps Pipeline │ "
},
{
"file": "2025-09-10-npm_Ecosystem_Large_scale_Security_Breach_20_Download_Package_Malware_Infection.md",
"line": 137,
"language": "yaml",
"length": 24,
"preview": "# .github/workflows/lockfile-lint.yml name: Lockfile Security on: [push, pull_request] jobs: loc"
},
{
"file": "2025-10-02-Karpenter_v153_Node_Integration_Due_to_Large_scale_Incident_Analysis_And_Resolution.md",
"line": 299,
"language": "bash",
"length": 7,
"preview": "kubectl get events --field-selector reason=Killing -A NAMESPACE LAST SEEN TYPE REASON OBJECT MESSAG"
},
{
"file": "2025-10-02-Karpenter_v153_Node_Integration_Due_to_Large_scale_Incident_Analysis_And_Resolution.md",
"line": 312,
"language": "",
"length": 18,
"preview": "┌────────────────────────────────────────────────────────────────────┐ │ Impact Analysis │ ├────────"
},
{
"file": "2025-10-03-AWSIn_Database_Access_Gateway_Build_NLB_Security_Group_Complete_Guide.md",
"line": 166,
"language": "hcl",
"length": 17,
"preview": "resource \"aws_lb_target_group\" \"rds_mysql\" { name = \"rds-mysql-tg\" port = 3306 protoco"
},
{
"file": "2025-10-03-AWSIn_Database_Access_Gateway_Build_NLB_Security_Group_Complete_Guide.md",
"line": 210,
"language": "hcl",
"length": 27,
"preview": "resource \"aws_security_group\" \"nlb\" { name = \"db-gateway-nlb-sg\" description = \"Security "
},
{
"file": "2025-10-03-AWSIn_Database_Access_Gateway_Build_NLB_Security_Group_Complete_Guide.md",
"line": 250,
"language": "hcl",
"length": 28,
"preview": "resource \"aws_security_group\" \"database\" { name = \"database-sg\" description = \"Security g"
},
{
"file": "2025-10-03-AWSIn_Database_Access_Gateway_Build_NLB_Security_Group_Complete_Guide.md",
"line": 422,
"language": "hcl",
"length": 6,
"preview": "resource \"aws_flow_log\" \"vpc_flow_log\" { iam_role_arn = aws_iam_role.flow_log.arn log_destina"
},
{
"file": "2025-10-03-AWSIn_Database_Access_Gateway_Build_NLB_Security_Group_Complete_Guide.md",
"line": 578,
"language": "hcl",
"length": 33,
"preview": "# VPC Lattice Resource Gateway 예시 (2025) resource \"aws_vpclattice_service\" \"db_service\" { name = \""
},
{
"file": "2025-11-21-Cloud_Security_8Batch_OT_Guide_DevSecOpsFrom_FinOpsTo_Practical_Talent_Leap.md",
"line": 171,
"language": "bash",
"length": 28,
"preview": "# AWS CLI를 사용한 보안 환경 기본 구성 # 1. VPC 생성 (보안을 위한 네트워크 분리) aws ec2 create-vpc --cidr-block 10.0.0.0/16"
},
{
"file": "2025-11-26-Cloud_Security_8Batch_1Week_Infrastructure_EssenceFrom_Security_FutureTo.md",
"line": 92,
"language": "bash",
"length": 25,
"preview": "# 클라우드 인프라 보안 기본 설정 예시 # IAM 역할 생성 (최소 권한 원칙) aws iam create-role --role-name EC2-Minimal-Role \\ "
},
{
"file": "2025-12-05-Cloud_Security_8Batch_2Week_AWS_Security_Architecture_Core_VPCFrom_GuardDutyTo_Complete_Conquer.md",
"line": 101,
"language": "bash",
"length": 17,
"preview": "# VPC 생성 및 서브넷 구성 예시 aws ec2 create-vpc --cidr-block 10.0.0.0/16 --tag-specifications 'ResourceType="
},
{
"file": "2025-12-19-Cloud_Security_8Batch_4Week_Integration_Security_Vulnerability_Inspection_And_ISMS-P_Certification_Response.md",
"line": 185,
"language": "yaml",
"length": 30,
"preview": "# GitHub Actions 예시 (간단한 구조) name: Security Scan Pipeline on: [push, pull_request] jobs: securit"
},
{
"file": "2026-01-03-OWASP_2025_Latest_Update_Complete_Guide_Top_10_Agentic_AI_Security.md",
"line": 272,
"language": "",
"length": 4,
"preview": "--> > **참고**: Dependabot 설정 관련 자세한 내용은 [GitHub Dependabot 문서](https://docs.github.com/en/code-secur"
},
{
"file": "2026-01-06-DevSecOps_Viewing_Automotive_Security_Complete_Guide.md",
"line": 335,
"language": "yaml",
"length": 95,
"preview": "# .github/workflows/automotive-sast.yml name: Automotive SAST Pipeline on: push: branches: [m"
},
{
"file": "2026-01-08-Blockchain_Cryptocurrency_Security_Complete_Guide_DevSecOps_From_Perspective_View_GitHub_Security_Tools_And_Best_Practice.md",
"line": 229,
"language": "yaml",
"length": 18,
"preview": "# .github/workflows/security-audit.yml name: Security Audit on: [push, pull_request] jobs: slithe"
},
{
"file": "2026-01-08-Blockchain_Cryptocurrency_Security_Complete_Guide_DevSecOps_From_Perspective_View_GitHub_Security_Tools_And_Best_Practice.md",
"line": 319,
"language": "yaml",
"length": 14,
"preview": "# .github/workflows/securify.yml name: Securify Security Scan on: [push, pull_request] jobs: secu"
},
{
"file": "2026-01-08-Blockchain_Cryptocurrency_Security_Complete_Guide_DevSecOps_From_Perspective_View_GitHub_Security_Tools_And_Best_Practice.md",
"line": 415,
"language": "yaml",
"length": 34,
"preview": "# .github/workflows/blockchain-security.yml name: Blockchain Security Pipeline on: push: branc"
},
{
"file": "2026-01-08-Blockchain_Cryptocurrency_Security_Complete_Guide_DevSecOps_From_Perspective_View_GitHub_Security_Tools_And_Best_Practice.md",
"line": 465,
"language": "yaml",
"length": 22,
"preview": "# .github/workflows/codeql-analysis.yml name: CodeQL Analysis on: push: branches: [main] pul"
},
{
"file": "2026-01-08-Cloud_Security_Course_8Batch_6Week_AWS_WAF_CloudFront_Security_Architecture_And_GitHub_DevSecOps_Practical.md",
"line": 329,
"language": "yaml",
"length": 18,
"preview": "# .github/workflows/codeql-analysis.yml name: \"CodeQL Analysis\" on: push: { branches: [main, devel"
},
{
"file": "2026-01-11-AI_Music_Video_Generation_Complete_Guide_DevSecOps_Perspective.md",
"line": 531,
"language": "yaml",
"length": 52,
"preview": "# .github/workflows/ai-video-generation.yml name: AI Music Video Generation on: workflow_dispatch"
},
{
"file": "2026-01-15-Cloud_Security_Course_8Batch_7Week_Docker_Kubernetes_Security_Practical_Guide.md",
"line": 207,
"language": "bash",
"length": 26,
"preview": "# 클러스터 정보 확인 kubectl cluster-info # Node 목록 확인 kubectl get nodes # Pod 목록 확인 kubectl get pods # N"
},
{
"file": "2026-01-16-Postmortem_NextJS_SSR_Error_Cloudflare_Blocking_ALB_5XX_Incident_Analysis.md",
"line": 630,
"language": "yaml",
"length": 68,
"preview": "# .github/workflows/build-and-deploy.yml name: Build and Deploy on: push: branches: - m"
},
{
"file": "2026-01-17-AI_Coding_Assistants_Comparison_Gemini_Claude_Code_ChatGPT_OpenCode_2025_2026_Research_Analysis.md",
"line": 712,
"language": "bash",
"length": 11,
"preview": "# 1. 프로젝트 구조 분석 claude-code analyze --project ./services --language java # 2. 리팩토링 계획 수립 (2주 소요) cl"
},
{
"file": "2026-01-17-AI_Coding_Assistants_Comparison_Gemini_Claude_Code_ChatGPT_OpenCode_2025_2026_Research_Analysis.md",
"line": 1014,
"language": "yaml",
"length": 82,
"preview": "name: AI-Assisted CI/CD Pipeline on: push: branches: [main, develop] pull_request: type"
},
{
"file": "2026-01-22-Cloud_Security_Course_8Batch_8Week_CI_CD_Kubernetes_Security_Practical_Guide.md",
"line": 570,
"language": "yaml",
"length": 28,
"preview": "# .github/workflows/claude-security-review.yml name: Claude Security Review on: pull_request: "
},
{
"file": "2026-01-22-Cloud_Security_Course_8Batch_8Week_CI_CD_Kubernetes_Security_Practical_Guide.md",
"line": 656,
"language": "yaml",
"length": 42,
"preview": "# .github/workflows/ai-powered-security.yml name: AI-Powered Security Scan on: push: branches:"
},
{
"file": "2026-01-22-Cloud_Security_Course_8Batch_8Week_CI_CD_Kubernetes_Security_Practical_Guide.md",
"line": 823,
"language": "yaml",
"length": 31,
"preview": "# .github/workflows/security-scan.yml name: Security Scan on: push: branches: [ main, develop "
},
{
"file": "2026-01-22-Cloud_Security_Course_8Batch_8Week_CI_CD_Kubernetes_Security_Practical_Guide.md",
"line": 859,
"language": "bash",
"length": 33,
"preview": "# Namespace 생성 및 보안 정책 적용 kubectl create namespace production kubectl label namespace production \\ "
},
{
"file": "2026-01-22-KARA_Ransomware_Trends_Report_2025_Q3_Analysis_SK_Shieldus_EQST.md",
"line": 371,
"language": "",
"length": 8,
"preview": "Quadruple Extortion Tactics: Stage 1: Data Encryption + Ransom Demand (\"Pay $500,000 for decryption\""
},
{
"file": "2026-01-22-KISA_Security_Advisory_Ransomware_Prevention_Linux_Rootkit_Detection_Guide_Analysis.md",
"line": 365,
"language": "",
"length": 17,
"preview": "Phishing Detection Checklist: SMS Phishing (Smishing): - Sender number differs from official number "
},
{
"file": "2026-01-22-KISA_Security_Advisory_Ransomware_Prevention_Linux_Rootkit_Detection_Guide_Analysis.md",
"line": 415,
"language": "yaml",
"length": 40,
"preview": "# .github/workflows/security-scan.yml name: Security Scan on: push: branches: [main, develop]"
},
{
"file": "2026-01-22-Security_Vendor_Blog_Weekly_Review.md",
"line": 260,
"language": "",
"length": 5,
"preview": "Zero Trust for AI Agents - NHI Management Strategy: 1. Dynamic Secrets → Temporary credentials via V"
},
{
"file": "2026-01-23-Tech_Security_Weekly_Digest_Microsoft_AitM_Phishing_Agentic_AI_Zero_Trust_OpenAI_PostgreSQL.md",
"line": 265,
"language": "",
"length": 6,
"preview": "AI-Assisted Incident Response: 1. Alert Received (PagerDuty/Opsgenie → Gemini CLI auto-trigger) 2. C"
},
{
"file": "2026-01-26-Tech_Security_Weekly_Digest_Zero_Trust_Agentic_AI_Chrome_Tech_Support_Scam_Terraform_Stacks.md",
"line": 226,
"language": "hcl",
"length": 33,
"preview": "# stacks/production/main.tfstack.hcl stack { name = \"production-infrastructure\" component \"ne"
},
{
"file": "2026-01-28-Claude_MD_Security_Guide.md",
"line": 569,
"language": "yaml",
"length": 51,
"preview": "# .github/workflows/security-scan.yml name: Security Scan on: push: branches: [main] pull_r"
},
{
"file": "2026-01-28-Tech_Security_Weekly_Digest_MS_Office_Zero_Day_CTEM_Grist_Core_RCE.md",
"line": 448,
"language": "yaml",
"length": 32,
"preview": "# CVE-2026-21509 대응 플레이북 playbook: name: \"CVE-2026-21509 Response\" trigger: - type: alert "
},
{
"file": "2026-01-28-Tech_Security_Weekly_Digest_MS_Office_Zero_Day_CTEM_Grist_Core_RCE.md",
"line": 565,
"language": "yaml",
"length": 43,
"preview": "# .github/workflows/security-pipeline.yml name: Security Pipeline on: pull_request: branches:"
},
{
"file": "2026-01-29-Tech_Security_Weekly_Digest_n8n_RCE_D_Link_Zero_Day_Kubernetes_AI_Agent.md",
"line": 271,
"language": "yaml",
"length": 38,
"preview": "# sigma/rules/application/n8n_sandbox_escape_attempt.yml title: n8n Code Node Sandbox Escape Attempt"
},
{
"file": "2026-01-30-Tech_Security_Weekly_Digest_Ollama_AI_SolarWinds_RCE_Google_IPIDEA.md",
"line": 1096,
"language": "",
"length": 4,
"preview": "Microsoft AI Threat Detection Pipeline: INPUT: Threat Reports, Existing Detection Rules, MITRE ATT&C"
},
{
"file": "2026-01-31-Tech_Security_Weekly_Digest_ShinyHunters_Vishing_Chrome_Extension_OT_Attack.md",
"line": 606,
"language": "yaml",
"length": 31,
"preview": "# .github/workflows/security-awareness.yml name: Security Awareness Check on: pull_request: b"
}
],
"code_image": [
{
"file": "2025-04-29-SKT_Security_Issue_Complete_Response_Guide_IMEI_Check_USIMeSIM_Replace_And_MFA_Importance.md",
"line": 78,
"language": "plaintext",
"length": 12,
"preview": "공격 흐름도: [공격자] ──사회공학적 공격──> [통신사 직원/시스템] │ "
},
{
"file": "2025-04-30-Public_PCEven_in_Safely_Passkey_OTP_Strong_Password_Management_Usage.md",
"line": 95,
"language": "",
"length": 5,
"preview": "Defense in Depth - Public PC Security: Layer 1: Anti-Phishing Auth (Passkey) Layer 2: Multi-Factor A"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 131,
"language": "hcl",
"length": 2,
"preview": "> # Terraform: 보안 VPC 구성... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 188,
"language": "python",
"length": 2,
"preview": "> import boto3... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 193,
"language": "python",
"length": 39,
"preview": "import boto3 import json def lambda_handler(event, context): \"\"\"GuardDuty 위협 자동 대응\"\"\" detai"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 241,
"language": "",
"length": 30,
"preview": "┌─────────────────────────────────────────────────────────────────┐ │ FinOps Life"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 313,
"language": "python",
"length": 2,
"preview": "> import boto3... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 318,
"language": "python",
"length": 25,
"preview": "import boto3 from datetime import datetime, timedelta def analyze_costs(): \"\"\"월간 비용 분석 및 이상 탐지\""
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 351,
"language": "python",
"length": 2,
"preview": "> import boto3... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 356,
"language": "python",
"length": 39,
"preview": "import boto3 def create_budget_alerts(): \"\"\"예산 및 알림 생성\"\"\" budgets = boto3.client('budgets')"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 405,
"language": "bash",
"length": 2,
"preview": "> # AWS Compute Optimizer 활용... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 410,
"language": "bash",
"length": 11,
"preview": "# AWS Compute Optimizer 활용 aws compute-optimizer get-ec2-instance-recommendations \\ --filters name"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 429,
"language": "yaml",
"length": 2,
"preview": "> compute_savings_plan:... > "
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 434,
"language": "yaml",
"length": 14,
"preview": "compute_savings_plan: type: \"Compute Savings Plans\" term: \"1 Year\" payment_option: \"Partial Up"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 493,
"language": "",
"length": 16,
"preview": "┌─────────────────────────────────────────────────────────────────┐ │ AWS Securit"
},
{
"file": "2025-05-02-Cloud_Security_Course_7Batch_-_3Week_AWS_Security_And_Finops.md",
"line": 528,
"language": "bash",
"length": 7,
"preview": "# 브라우저 세션으로 CLI 자격증명 획득 aws login # 기존 방식 대비 장점: # - SSO 연동 간소화 # - 임시 자격증명 자동 관리 # - 보안성과 편의성 동시 확"
},
{
"file": "2025-05-02-Kandji_macOS_Complete_Master_SetupFrom_Security_Regulation_ComplianceTo_All-in-One_Guide.md",
"line": 92,
"language": "",
"length": 5,
"preview": "Kandji UEM Supported Platforms: - macOS (Intel/Apple Silicon) - iOS (iPhone) - iPadOS (iPad) - tvOS "
},
{
"file": "2025-05-02-Kandji_macOS_Complete_Master_SetupFrom_Security_Regulation_ComplianceTo_All-in-One_Guide.md",
"line": 115,
"language": "plaintext",
"length": 5,
"preview": "[Apple Business Manager] ──MDM 서버 등록──> [Kandji] │ │ "
},
{
"file": "2025-05-09-Cloud_Security_Course_7Batch_-_4Week_AWS_Vulnerability_Inspection_And_ISMS_Response_Guide.md",
"line": 93,
"language": "",
"length": 5,
"preview": "AWS Security Services: - Inspector (Vulnerability Scanning) - SecurityHub (Unified Dashboard) - Conf"
},
{
"file": "2025-05-09-Cloud_Security_Course_7Batch_-_4Week_AWS_Vulnerability_Inspection_And_ISMS_Response_Guide.md",
"line": 128,
"language": "python",
"length": 2,
"preview": "> # AWS Security Agent 활용 예시 (개념적 코드)... > "
},
{
"file": "2025-05-09-Cloud_Security_Course_7Batch_-_4Week_AWS_Vulnerability_Inspection_And_ISMS_Response_Guide.md",
"line": 133,
"language": "python",
"length": 16,
"preview": "# AWS Security Agent 활용 예시 (개념적 코드) def security_review_pipeline(): \"\"\" 개발 파이프라인에 Security A"
},
{
"file": "2025-05-09-Cloud_Security_Course_7Batch_-_4Week_AWS_Vulnerability_Inspection_And_ISMS_Response_Guide.md",
"line": 199,
"language": "bash",
"length": 7,
"preview": "# 브라우저 기반 CLI 인증 aws login # ISMS 대응 장점: # - 자격증명 관리 간소화 # - SSO 연동으로 중앙 인증 관리 # - 감사 로그 통합 "
},
{
"file": "2025-05-16-Cloud_Security_Course_7Batch_-_5Week_AWS_Control_Tower_And_ZTNA.md",
"line": 97,
"language": "",
"length": 4,
"preview": "AWS Control Tower Components: - Landing Zone (Base Environment) - SCP (Service Control Policy) - Gua"
},
{
"file": "2025-05-16-Cloud_Security_Course_7Batch_-_5Week_AWS_Control_Tower_And_ZTNA.md",
"line": 151,
"language": "bash",
"length": 2,
"preview": "# IAM Policy Autopilot 실행 iam-policy-autopilot analyze --source ./my-app --output policy.json "
},
{
"file": "2025-05-23-Cloud_Security_Course_7Batch_-_6Week_Cloudflare_And_github_Security.md",
"line": 133,
"language": "bash",
"length": 5,
"preview": "# DVWA 컨테이너 실행 예시 docker run --rm -it -p 80:80 vulnerables/web-dvwa # AWS WAF 설정 테스트 # AWS Console에"
},
{
"file": "2025-05-23-Cloud_Security_Course_7Batch_-_6Week_Cloudflare_And_github_Security.md",
"line": 224,
"language": "yaml",
"length": 13,
"preview": "# .github/dependabot.yml version: 2 updates: - package-ecosystem: \"npm\" directory: \"/\" sch"
},
{
"file": "2025-05-23-Cloud_Security_Course_7Batch_-_6Week_Cloudflare_And_github_Security.md",
"line": 241,
"language": "yaml",
"length": 14,
"preview": "# .github/dependabot.yml version: 2 updates: - package-ecosystem: \"npm\" directory: \"/\" sch"
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 99,
"language": "python",
"length": 2,
"preview": "> # Amazon Q Developer 보안 스캔 활성화 예시... > "
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 104,
"language": "python",
"length": 30,
"preview": "# Amazon Q Developer 보안 스캔 활성화 예시 # VS Code 또는 JetBrains IDE에서 설정 \"\"\" Amazon Q Developer 2025 신규 보안"
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 144,
"language": "yaml",
"length": 2,
"preview": "> # MCP 서버 설정 예시 (claude_desktop_config.json)... > "
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 149,
"language": "yaml",
"length": 14,
"preview": "# MCP 서버 설정 예시 (claude_desktop_config.json) { \"mcpServers\": { \"aws-iam-autopilot\": { \"co"
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 171,
"language": "",
"length": 2,
"preview": "> 사용자 요청:... > "
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 227,
"language": "",
"length": 2,
"preview": " <!-- 전체 코드는 위 GitHub 링크 참조 "
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 250,
"language": "",
"length": 9,
"preview": "--> ### 2.5 Supply Chain Security 강화 npm 등 패키지 레지스트리에 대한 공급망 공격이 증가하면서 SBOM과 의존성 검증이 필수가 되었습니다: >"
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 261,
"language": "",
"length": 2,
"preview": " <!-- 전체 코드는 위 GitHub 링크 참조 "
},
{
"file": "2025-05-24-Amazon_Q_DeveloperAnd_GitHub_Advanced_Security_Security_And_AWS.md",
"line": 295,
"language": "",
"length": 6,
"preview": "--> ### 2.6 Shift Left Security 접근법 Security-by-Design 원칙에 따라 보안을 개발 초기부터 통합: "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 98,
"language": "bash",
"length": 2,
"preview": "> # 이미지 다운로드... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 103,
"language": "bash",
"length": 15,
"preview": "# 이미지 다운로드 docker pull nginx:latest # 컨테이너 실행 docker run -d -p 8080:80 --name my-nginx nginx:latest"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 129,
"language": "",
"length": 22,
"preview": "┌─────────────────────────────────────────────────────┐ │ Control Plane │ │ ┌─────────────┐ ┌───────"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 162,
"language": "yaml",
"length": 2,
"preview": "> apiVersion: v1... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 167,
"language": "yaml",
"length": 13,
"preview": "apiVersion: v1 kind: Pod metadata: name: nginx-pod labels: app: nginx spec: containers: - name:"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 189,
"language": "yaml",
"length": 2,
"preview": "> apiVersion: apps/v1... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 194,
"language": "yaml",
"length": 20,
"preview": "apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 3 selector:"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 223,
"language": "yaml",
"length": 2,
"preview": "> apiVersion: v1... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 228,
"language": "yaml",
"length": 13,
"preview": "apiVersion: v1 kind: Service metadata: name: nginx-service spec: selector: app: nginx ports: - "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 254,
"language": "bash",
"length": 3,
"preview": " # Trivy를 사용한 이미지 스캔 trivy image nginx:latest "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 267,
"language": "yaml",
"length": 2,
"preview": "> # SecurityContext 설정 예시... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 272,
"language": "yaml",
"length": 20,
"preview": "# SecurityContext 설정 예시 apiVersion: v1 kind: Pod metadata: name: secure-pod spec: securityContext:"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 300,
"language": "yaml",
"length": 9,
"preview": "apiVersion: networking.k8s.io/v1 kind: NetworkPolicy metadata: name: deny-all-ingress spec: podSel"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 318,
"language": "bash",
"length": 9,
"preview": "# macOS brew install minikube # Linux curl -LO https://storage.googleapis.com/minikube/releases/lat"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 336,
"language": "bash",
"length": 5,
"preview": "# 설치 brew install k9s # 실행 k9s "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 371,
"language": "yaml",
"length": 7,
"preview": "# kubelet 설정에서 Fine-grained 인가 활성화 apiVersion: kubelet.config.k8s.io/v1beta1 kind: KubeletConfigurat"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 392,
"language": "bash",
"length": 5,
"preview": "# 인증서 기반 credential 추적 확인 kubectl get certificatesigningrequests -o wide # Audit 로그에서 credential ID"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 415,
"language": "yaml",
"length": 2,
"preview": "> apiVersion: v1... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 420,
"language": "yaml",
"length": 13,
"preview": "apiVersion: v1 kind: Pod metadata: name: userns-pod spec: hostUsers: false # User Namespace 활성화"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 448,
"language": "yaml",
"length": 2,
"preview": "> apiVersion: v1... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 453,
"language": "yaml",
"length": 23,
"preview": "apiVersion: v1 kind: Pod metadata: name: mtls-pod spec: containers: - name: app image: mya"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 491,
"language": "yaml",
"length": 2,
"preview": "> # EKS 1.32+ 에서의 익명 인증 설정... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 496,
"language": "yaml",
"length": 13,
"preview": "# EKS 1.32+ 에서의 익명 인증 설정 # 기존의 익명 접근이 제한됨에 따라 명시적 인증 필요 apiVersion: rbac.authorization.k8s.io/v1 kin"
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 517,
"language": "yaml",
"length": 2,
"preview": "> # Deprecated (사용 자제)... > "
},
{
"file": "2025-05-30-Cloud_Security_Course_7Batch_-_7Week_Docker_And_Kubernetes_Understanding.md",
"line": 522,
"language": "yaml",
"length": 13,
"preview": "# Deprecated (사용 자제) apiVersion: v1 kind: ServiceAccount metadata: name: my-sa annotations: "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 96,
"language": "bash",
"length": 9,
"preview": "# macOS (Homebrew) brew install minikube # Linux curl -LO https://storage.googleapis.com/minikube/r"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 112,
"language": "bash",
"length": 13,
"preview": "# 최신 안정 버전으로 시작 minikube start --kubernetes-version=stable # 특정 Kubernetes 버전 지정 (예: 1.34.0) miniku"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 132,
"language": "bash",
"length": 6,
"preview": "# containerd 런타임으로 시작 minikube start --container-runtime=containerd # 런타임 확인 minikube ssh -- docker"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 145,
"language": "bash",
"length": 10,
"preview": "# 현재 리소스 확인 minikube status # 리소스 증가 minikube stop minikube start --memory=8192 --cpus=4 # 또는 mini"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 160,
"language": "bash",
"length": 7,
"preview": "# 현재 드라이버 확인 minikube config get driver # 드라이버 변경 minikube stop minikube delete minikube start --dr"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 172,
"language": "bash",
"length": 8,
"preview": "# 네트워크 재설정 minikube stop minikube delete minikube start --network-plugin=cni # DNS 문제 해결 minikube s"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 185,
"language": "bash",
"length": 11,
"preview": "# 사용 가능한 addons 확인 minikube addons list # 유용한 addons 활성화 minikube addons enable metrics-server #"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 203,
"language": "bash",
"length": 10,
"preview": "# macOS (Homebrew) brew install k9s # Linux wget https://github.com/derailed/k9s/releases/download/"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 218,
"language": "bash",
"length": 8,
"preview": "# K9s 시작 k9s # 특정 네임스페이스로 시작 k9s -n production # 읽기 전용 모드 (보안 감사 시 유용) k9s --readonly "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 246,
"language": "bash",
"length": 5,
"preview": "# 특정 네임스페이스에 집중하여 성능 향상 k9s -n default # 여러 네임스페이스 전환 단축키 설정 # ~/.config/k9s/hotkeys.yml에 설정 "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 256,
"language": "yaml",
"length": 13,
"preview": "# ~/.config/k9s/config.yml k9s: refreshRate: 2 # 대규모 클러스터(1000+ pods)에서는 5-10초로 증가 maxConnRetry"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 276,
"language": "bash",
"length": 9,
"preview": "# 읽기 전용 모드로 감사 수행 k9s --readonly # 환경별 kubeconfig 분리 export KUBECONFIG=~/.kube/config-dev k9s # RB"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 290,
"language": "yaml",
"length": 11,
"preview": "# ~/.config/k9s/views.yml views: v1/pods: columns: - NAME - STATUS - READY "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 308,
"language": "bash",
"length": 4,
"preview": "# K9s 내에서 포트 포워딩 # 1. Service 또는 Pod 선택 # 2. 'x' 키 누르기 # 3. 포트 매핑 입력 (예: 8080:80) "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 317,
"language": "bash",
"length": 3,
"preview": "# 여러 Pod 로그 동시 확인 # 1. Pod 리스트에서 여러 Pod 선택 (Space) # 2. 'l' 키로 로그 확인 "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 325,
"language": "bash",
"length": 3,
"preview": "# 리소스 사용량 실시간 모니터링 # 1. Pod 리스트에서 CPU/MEMORY 컬럼 확인 # 2. 'd' 키로 상세 메트릭 확인 "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 335,
"language": "yaml",
"length": 20,
"preview": "# nginx-pod.yaml apiVersion: v1 kind: Pod metadata: name: nginx-pod labels: app: nginx spec:"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 358,
"language": "bash",
"length": 8,
"preview": "# Pod 생성 kubectl apply -f nginx-pod.yaml # K9s에서 확인 # 1. k9s 실행 # 2. 'po' 입력하여 Pod 리스트 확인 # 3. 'd' "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 371,
"language": "yaml",
"length": 40,
"preview": "# nginx-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 414,
"language": "bash",
"length": 7,
"preview": "# Deployment 및 Service 생성 kubectl apply -f nginx-deployment.yaml # K9s에서 모니터링 # 1. 'deploy' 입력하여 De"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 426,
"language": "yaml",
"length": 17,
"preview": "# configmap-example.yaml apiVersion: v1 kind: ConfigMap metadata: name: app-config data: databas"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 446,
"language": "bash",
"length": 7,
"preview": "# ConfigMap 및 Secret 생성 kubectl apply -f configmap-example.yaml # K9s에서 확인 # 1. 'cm' 입력하여 ConfigMap"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 460,
"language": "bash",
"length": 14,
"preview": "# 1. Pod 상태 확인 kubectl get pods k9s # 'po' 입력하여 Pod 리스트 확인 # 2. Pod 이벤트 확인 kubectl describe pod <p"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 479,
"language": "bash",
"length": 8,
"preview": "# 리소스 사용량 확인 kubectl top pods kubectl top nodes # K9s에서 CPU/MEMORY 컬럼 확인 # 1. 'po' 입력 # 2. CPU/MEMO"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 492,
"language": "bash",
"length": 10,
"preview": "# Service 엔드포인트 확인 kubectl get endpoints # 포트 포워딩으로 직접 테스트 kubectl port-forward svc/nginx-service 8"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 516,
"language": "bash",
"length": 2,
"preview": "# Kubernetes 1.32로 클러스터 시작 minikube start --kubernetes-version=v1.32.0 "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 537,
"language": "bash",
"length": 8,
"preview": "# Kubernetes 버전 확인 kubectl version --short # Minikube에서 최신 안정 버전으로 시작 minikube start --kubernetes-v"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 558,
"language": "yaml",
"length": 17,
"preview": "# User Namespace 활성화 Pod 예시 apiVersion: v1 kind: Pod metadata: name: secure-pod spec: hostUsers:"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 589,
"language": "yaml",
"length": 10,
"preview": "apiVersion: v1 kind: Pod metadata: name: app-pod spec: serviceAccountName: app-sa automountSer"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 611,
"language": "yaml",
"length": 9,
"preview": "apiVersion: v1 kind: Pod metadata: name: mtls-pod spec: containers: - name: app image: mya"
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 625,
"language": "yaml",
"length": 2,
"preview": "> # Fine-grained Kubelet Authorization 설정 예시... > "
},
{
"file": "2025-05-30-Kubernetes_Minikube_ampamp_K9s_Practice_Guide_Problem_From_Resolution_Practical_TestTo.md",
"line": 630,
"language": "yaml",