-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecurityChecklist.html
More file actions
708 lines (699 loc) · 32.7 KB
/
SecurityChecklist.html
File metadata and controls
708 lines (699 loc) · 32.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Vulnerabilities Checklist</title>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
margin: 0;
background-color: #f5f5f5;
zoom: 1;
}
.container {
background-color: white;
padding: 24px 2vw;
border-radius: 16px;
box-shadow: 0 8px 32px rgba(44,62,80,0.12);
max-width: 100vw;
width: 100vw;
margin: 0;
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 32px;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
font-size: 2rem;
letter-spacing: 0.5px;
}
.table-responsive {
width: 100%;
overflow-x: auto;
}
table {
width: 100%;
min-width: 700px;
border-collapse: collapse;
margin-bottom: 20px;
font-size: 13px;
background: #fff;
border-radius: 10px;
overflow: hidden;
border: 1px solid #d1d5db;
box-shadow: 0 2px 12px rgba(44,62,80,0.06);
}
th {
background-color: #34495e;
color: white;
padding: 10px 6px;
text-align: center;
font-weight: bold;
border: 1px solid #d1d5db;
font-size: 13px;
letter-spacing: 0.3px;
}
td {
padding: 8px 6px;
border: 1px solid #d1d5db;
vertical-align: middle;
font-size: 12px;
background: none;
color: #2c3e50;
text-align: left;
}
td.severity-high, td.severity-medium, td.severity-low, td.severity-info {
text-align: center;
font-weight: bold;
border-radius: 6px;
}
td.sno {
text-align: center;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f8f9fa;
}
tr:hover {
background-color: #e3f2fd;
transition: background 0.2s;
}
.severity-high { background-color: #ffebee; color: #c62828; }
.severity-medium { background-color: #fff3e0; color: #ef6c00; }
.severity-low { background-color: #f1f8e9; color: #2e7d32; }
.severity-info { background-color: #e8f5e8; color: #1565c0; }
.category-header {
background-color: #ecf0f1;
font-weight: bold;
color: #2c3e50;
text-align: center;
font-size: 13px;
letter-spacing: 0.5px;
}
.btn-export {
background: linear-gradient(90deg, #27ae60 0%, #219a52 100%);
color: white;
padding: 10px 18px;
border: none;
border-radius: 6px;
cursor: pointer;
margin: 8px 4px;
font-size: 13px;
box-shadow: 0 2px 8px rgba(39,174,96,0.08);
transition: background 0.2s, box-shadow 0.2s;
}
.btn-export:hover {
background: linear-gradient(90deg, #219a52 0%, #27ae60 100%);
box-shadow: 0 4px 16px rgba(39,174,96,0.15);
}
@media (max-width: 900px) {
.container {
padding: 8px 1vw;
border-radius: 8px;
}
h1 {
font-size: 1.2rem;
}
th, td {
padding: 6px 2px;
font-size: 11px;
}
table {
min-width: 500px;
}
}
@media (max-width: 600px) {
.container {
padding: 2px 0;
border-radius: 4px;
}
h1 {
font-size: 1rem;
}
th, td {
padding: 4px 1px;
font-size: 10px;
}
table {
min-width: 350px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Complete Security Vulnerabilities Checklist</h1>
<div style="margin-bottom: 20px;">
<button class="btn-export" onclick="exportToExcel()">📊 Export to Excel</button>
<button class="btn-export" onclick="exportToCSV()">📋 Export to CSV</button>
</div>
<div class="table-responsive">
<table id="securityTable">
<thead>
<tr>
<th style="width: 5%;">S.No</th>
<th style="width: 8%;">Severity</th>
<th style="width: 25%;">Vulnerability Name</th>
<th style="width: 12%;">Category</th>
<th style="width: 30%;">Description</th>
<th style="width: 12%;">Impact</th>
<th style="width: 8%;">Solution Summary</th>
</tr>
</thead>
<tbody>
<!-- HIGH SEVERITY VULNERABILITIES -->
<tr class="category-header">
<td colspan="7">HIGH SEVERITY VULNERABILITIES</td>
</tr>
<tr>
<td class="sno">1</td>
<td class="severity-high">HIGH</td>
<td>SQL Injection</td>
<td>Database Security</td>
<td>Malicious SQL execution through user input</td>
<td>Database compromise, data breach</td>
<td>Use Prepared Statements with parameterized queries</td>
</tr>
<tr>
<td class="sno">2</td>
<td class="severity-high">HIGH</td>
<td>SQL Injection 2.0</td>
<td>Database Security</td>
<td>Advanced SQL injection with parameter hiding</td>
<td>Database compromise, data exposure</td>
<td>Use parameterized queries with position-based parameters</td>
</tr>
<tr>
<td class="sno">3</td>
<td class="severity-high">HIGH</td>
<td>Cross Site Scripting (XSS)</td>
<td>Input Validation</td>
<td>Injection of malicious HTML/JavaScript code via user input</td>
<td>Code execution, data theft, session hijacking</td>
<td>Bootstrap validation with regex, AntiSamy filter</td>
</tr>
<tr>
<td class="sno">4</td>
<td class="severity-high">HIGH</td>
<td>Javascript Injection DOM Based</td>
<td>Input Validation</td>
<td>Client-side JavaScript injection through DOM manipulation</td>
<td>Code execution, data theft</td>
<td>Input sanitization, DOM validation</td>
</tr>
<tr>
<td class="sno">5</td>
<td class="severity-high">HIGH</td>
<td>Session Hijacking</td>
<td>Authentication</td>
<td>Session token theft to impersonate legitimate users</td>
<td>Identity theft, unauthorized access</td>
<td>Implement Spring Security 3.2.3+, generate new session ID for each login</td>
</tr>
<tr>
<td class="sno">6</td>
<td class="severity-high">HIGH</td>
<td>Authentication Bypass</td>
<td>Authentication</td>
<td>Bypassing login mechanisms</td>
<td>Unauthorized system access</td>
<td>Proper authentication implementation</td>
</tr>
<tr>
<td class="sno">7</td>
<td class="severity-high">HIGH</td>
<td>Session Puzzling</td>
<td>Session Management</td>
<td>Session manipulation and fixation attacks</td>
<td>Session takeover</td>
<td>Proper session management with Spring Security</td>
</tr>
<tr>
<td class="sno">8</td>
<td class="severity-high">HIGH</td>
<td>Session Token In URL</td>
<td>Session Management</td>
<td>Session token exposed in URL parameters</td>
<td>Session hijacking through URL sharing</td>
<td>Use cookies for session tokens, not URL parameters</td>
</tr>
<tr>
<td class="sno">9</td>
<td class="severity-high">HIGH</td>
<td>CSRF Token Is Not Validate</td>
<td>CSRF Protection</td>
<td>Missing or improper CSRF token validation</td>
<td>Unauthorized actions on behalf of user</td>
<td>Implement proper CSRF token validation</td>
</tr>
<tr>
<td class="sno">10</td>
<td class="severity-high">HIGH</td>
<td>IDOR (Insecure Direct Object Reference)</td>
<td>Authorization</td>
<td>Direct access to objects without authorization</td>
<td>Unauthorized data access</td>
<td>Encode/decode object references</td>
</tr>
<tr>
<td class="sno">11</td>
<td class="severity-high">HIGH</td>
<td>Directory Traversal in Spring Framework</td>
<td>File System</td>
<td>Access unauthorized files using ../ path manipulation</td>
<td>Sensitive file access</td>
<td>Spring Security 3.2.12+, AntiSamy filter restrictions</td>
</tr>
<tr>
<td class="sno">12</td>
<td class="severity-high">HIGH</td>
<td>File Path Traversal</td>
<td>File System</td>
<td>Access unauthorized files through path manipulation</td>
<td>Sensitive file access, information disclosure</td>
<td>Path validation, restricted file access</td>
</tr>
<tr>
<td class="sno">13</td>
<td class="severity-high">HIGH</td>
<td>Unrestricted File Upload</td>
<td>File Upload</td>
<td>Upload of dangerous file types without validation</td>
<td>System compromise</td>
<td>Validate file type, extension, and content</td>
</tr>
<tr>
<td class="sno">14</td>
<td class="severity-high">HIGH</td>
<td>Malicious File Upload</td>
<td>File Upload</td>
<td>Upload files with embedded malicious code/scripts</td>
<td>System compromise, backdoor access</td>
<td>Content Disarm and Reconstruction (CDR)</td>
</tr>
<tr>
<td class="sno">15</td>
<td class="severity-high">HIGH</td>
<td>HTML Injection</td>
<td>Input Validation</td>
<td>Injection of malicious HTML content in parameters</td>
<td>XSS attacks, content manipulation</td>
<td>Base64 encoding of URL parameters</td>
</tr>
<tr>
<td class="sno">16</td>
<td class="severity-high">HIGH</td>
<td>HTTP Parameter Pollution 2.0</td>
<td>Input Validation</td>
<td>Advanced parameter manipulation with encoding</td>
<td>Data tampering, business logic bypass</td>
<td>MD5 hash validation of form fields</td>
</tr>
<tr>
<td class="sno">17</td>
<td class="severity-high">HIGH</td>
<td>Account Take over</td>
<td>Authentication</td>
<td>Unauthorized access to user accounts</td>
<td>Complete account compromise</td>
<td>Multi-factor authentication, account monitoring</td>
</tr>
<!-- MEDIUM SEVERITY VULNERABILITIES -->
<tr class="category-header">
<td colspan="7">MEDIUM SEVERITY VULNERABILITIES</td>
</tr>
<tr>
<td class="sno">18</td>
<td class="severity-medium">MEDIUM</td>
<td>HTML Form without CSRF</td>
<td>CSRF Protection</td>
<td>Forms vulnerable to cross-site request forgery</td>
<td>Unauthorized form submissions</td>
<td>Spring Security CSRF protection</td>
</tr>
<tr>
<td class="sno">19</td>
<td class="severity-medium">MEDIUM</td>
<td>Server Side Validation/HTTP Parameter Pollution</td>
<td>Input Validation</td>
<td>Weak server-side validation allowing parameter manipulation</td>
<td>Data integrity issues</td>
<td>Server-side validation sync with client-side</td>
</tr>
<tr>
<td class="sno">20</td>
<td class="severity-medium">MEDIUM</td>
<td>Vulnerable JavaScript Library</td>
<td>Component Security</td>
<td>Using outdated JavaScript libraries with known vulnerabilities</td>
<td>Client-side exploits</td>
<td>Upgrade to secure JS library versions</td>
</tr>
<tr>
<td class="sno">21</td>
<td class="severity-medium">MEDIUM</td>
<td>Outdated Components</td>
<td>Component Security</td>
<td>Using outdated framework libraries</td>
<td>Known vulnerabilities in components</td>
<td>Update components to latest secure versions</td>
</tr>
<tr>
<td class="sno">22</td>
<td class="severity-medium">MEDIUM</td>
<td>Host Header Attack</td>
<td>HTTP Security</td>
<td>Manipulation of HTTP Host header</td>
<td>Host header injection, cache poisoning</td>
<td>Use SERVER_NAME instead of Host header</td>
</tr>
<tr>
<td class="sno">23</td>
<td class="severity-medium">MEDIUM</td>
<td>HTTP PUT method enabled</td>
<td>HTTP Security</td>
<td>HTTP PUT method allows file modifications</td>
<td>Unauthorized file modifications</td>
<td>Disable unnecessary HTTP methods</td>
</tr>
<tr>
<td class="sno">24</td>
<td class="severity-medium">MEDIUM</td>
<td>MetaCharacters Accepted</td>
<td>Input Validation</td>
<td>Allowing dangerous special characters in input</td>
<td>Injection attacks, parsing errors</td>
<td>Regex validation to restrict meta characters</td>
</tr>
<tr>
<td class="sno">25</td>
<td class="severity-medium">MEDIUM</td>
<td>File Content Modification</td>
<td>File Integrity</td>
<td>Tampering with uploaded file content</td>
<td>Data integrity compromise</td>
<td>SHA1 validation, content verification</td>
</tr>
<tr>
<td class="sno">26</td>
<td class="severity-medium">MEDIUM</td>
<td>Improper Hash of User Password</td>
<td>Cryptography</td>
<td>Weak password hashing mechanisms</td>
<td>Password cracking, credential theft</td>
<td>Strong hashing with salt, HTTPS implementation</td>
</tr>
<tr>
<td class="sno">27</td>
<td class="severity-medium">MEDIUM</td>
<td>Password value Set In Cookie</td>
<td>Cryptography</td>
<td>Storing password values in cookies</td>
<td>Credential exposure</td>
<td>Never store passwords in cookies, use secure tokens</td>
</tr>
<tr>
<td class="sno">28</td>
<td class="severity-medium">MEDIUM</td>
<td>Duplicate Cookie Set</td>
<td>HTTP Security</td>
<td>Multiple cookies with same name causing confusion</td>
<td>Session management issues</td>
<td>Ensure unique cookie names</td>
</tr>
<tr>
<td class="sno">29</td>
<td class="severity-medium">MEDIUM</td>
<td>Private IP Addresses disclosed</td>
<td>Information Disclosure</td>
<td>Internal IP addresses exposed in responses</td>
<td>Network topology disclosure</td>
<td>Remove internal IP addresses from responses</td>
</tr>
<tr>
<td class="sno">30</td>
<td class="severity-medium">MEDIUM</td>
<td>Sensitive Information in logs</td>
<td>Logging</td>
<td>Sensitive data logged in plain text</td>
<td>Data exposure through logs</td>
<td>Sanitize sensitive data before logging</td>
</tr>
<tr>
<td class="sno">31</td>
<td class="severity-medium">MEDIUM</td>
<td>Audit Trails Are Not Maintaining</td>
<td>Logging</td>
<td>No proper logging of user activities</td>
<td>Forensic analysis impossible</td>
<td>Implement comprehensive audit logging</td>
</tr>
<tr>
<td class="sno">32</td>
<td class="severity-medium">MEDIUM</td>
<td>Error Logs Are Not Maintaining</td>
<td>Logging</td>
<td>Poor error handling and logging</td>
<td>Security incidents undetected</td>
<td>Implement proper error logging with codes</td>
</tr>
<tr>
<td class="sno">33</td>
<td class="severity-medium">MEDIUM</td>
<td>Logs Are Maintaining on Same Server</td>
<td>Logging</td>
<td>Security logs stored on same application server</td>
<td>Log tampering, evidence loss</td>
<td>Store logs on centralized/separate server</td>
</tr>
<tr>
<td class="sno">34</td>
<td class="severity-medium">MEDIUM</td>
<td>Log Location</td>
<td>Logging</td>
<td>Insecure log file locations</td>
<td>Log access by unauthorized users</td>
<td>Secure log file locations with proper permissions</td>
</tr>
<tr>
<td class="sno">35</td>
<td class="severity-medium">MEDIUM</td>
<td>Log Corruption</td>
<td>Logging</td>
<td>Log files susceptible to corruption or tampering</td>
<td>Loss of audit trail</td>
<td>Implement log integrity checks</td>
</tr>
<tr>
<td class="sno">36</td>
<td class="severity-medium">MEDIUM</td>
<td>Log Rotation Policy</td>
<td>Logging</td>
<td>Inadequate log rotation and retention policies</td>
<td>Log storage issues, compliance violations</td>
<td>Implement proper log rotation and retention</td>
</tr>
<tr>
<td class="sno">37</td>
<td class="severity-medium">MEDIUM</td>
<td>Log Access Control</td>
<td>Logging</td>
<td>Unrestricted access to log files</td>
<td>Unauthorized log access, information disclosure</td>
<td>Implement role-based log access controls</td>
</tr>
<tr>
<td class="sno">38</td>
<td class="severity-medium">MEDIUM</td>
<td>Base-64 data in Parameter</td>
<td>Information Disclosure</td>
<td>Sensitive data encoded in Base64 in parameters</td>
<td>Data exposure through parameter analysis</td>
<td>Use proper encryption instead of encoding</td>
</tr>
<tr>
<td class="sno">39</td>
<td class="severity-medium">MEDIUM</td>
<td>Form Action Hijacking</td>
<td>HTTP Security</td>
<td>Form action URLs can be manipulated</td>
<td>Data submission to malicious endpoints</td>
<td>Validate and restrict form action URLs</td>
</tr>
<!-- LOW SEVERITY VULNERABILITIES -->
<tr class="category-header">
<td colspan="7">LOW SEVERITY VULNERABILITIES</td>
</tr>
<tr>
<td class="sno">40</td>
<td class="severity-low">LOW</td>
<td>Session ID Name Fingerprinting</td>
<td>Information Disclosure</td>
<td>Default session ID names revealing technology stack</td>
<td>Technology stack disclosure</td>
<td>Customize session ID name in web.xml</td>
</tr>
<tr>
<td class="sno">41</td>
<td class="severity-low">LOW</td>
<td>Login Page Password-Guessing Attack</td>
<td>Authentication</td>
<td>Brute force attacks on login forms</td>
<td>Account compromise</td>
<td>Implement account lockout, OTP verification</td>
</tr>
<tr>
<td class="sno">42</td>
<td class="severity-low">LOW</td>
<td>Cross Domain Script Include</td>
<td>Content Security</td>
<td>Loading JavaScript from external domains</td>
<td>Supply chain attacks</td>
<td>Host scripts locally instead of external CDN</td>
</tr>
<tr>
<td class="sno">43</td>
<td class="severity-low">LOW</td>
<td>Input Field with Autocomplete Enabled</td>
<td>Data Leakage</td>
<td>Browser auto-completion exposing sensitive data</td>
<td>Sensitive data exposure</td>
<td>Disable autocomplete for sensitive fields</td>
</tr>
<tr>
<td class="sno">44</td>
<td class="severity-low">LOW</td>
<td>Copy Paste Enabled</td>
<td>Data Leakage</td>
<td>Allowing copy/paste operations on sensitive data</td>
<td>Data leakage through clipboard</td>
<td>Disable copy/paste with JavaScript</td>
</tr>
<tr>
<td class="sno">45</td>
<td class="severity-low">LOW</td>
<td>Weak Captcha Implementation</td>
<td>Authentication</td>
<td>CAPTCHA can be easily bypassed or automated</td>
<td>Bot attacks, automated abuse</td>
<td>Implement strong CAPTCHA mechanisms</td>
</tr>
<tr>
<td class="sno">46</td>
<td class="severity-low">LOW</td>
<td>Insecure Captcha Bypass</td>
<td>Authentication</td>
<td>CAPTCHA validation can be circumvented</td>
<td>Automated attacks</td>
<td>Strengthen CAPTCHA validation logic</td>
</tr>
<tr>
<td class="sno">47</td>
<td class="severity-low">LOW</td>
<td>OTT Bypass</td>
<td>Authentication</td>
<td>One-Time Token validation can be bypassed</td>
<td>Authentication bypass</td>
<td>Strengthen OTT validation and expiry</td>
</tr>
<tr>
<td class="sno">48</td>
<td class="severity-low">LOW</td>
<td>SMS Bombing</td>
<td>Resource Abuse</td>
<td>Excessive SMS sending to user phone numbers</td>
<td>Resource abuse, user harassment</td>
<td>Implement rate limiting for SMS sending</td>
</tr>
<tr>
<td class="sno">49</td>
<td class="severity-low">LOW</td>
<td>Email Bombing (Safeguarding check)</td>
<td>Resource Abuse</td>
<td>Excessive email sending causing spam</td>
<td>Resource abuse, reputation damage</td>
<td>Implement email rate limiting and validation</td>
</tr>
<tr>
<td class="sno">50</td>
<td class="severity-low">LOW</td>
<td>Mobile Number Validation Bypass</td>
<td>Input Validation</td>
<td>Phone number validation can be circumvented</td>
<td>Invalid data entry, business logic bypass</td>
<td>Strengthen mobile number validation</td>
</tr>
<!-- INFORMATIONAL VULNERABILITIES -->
<tr class="category-header">
<td colspan="7">INFORMATIONAL VULNERABILITIES</td>
</tr>
<tr>
<td class="sno">51</td>
<td class="severity-info">INFORMATIONAL</td>
<td>Broken Links</td>
<td>User Experience</td>
<td>Dead links leading to error pages</td>
<td>Poor user experience</td>
<td>Implement proper error handling and redirects</td>
</tr>
<tr>
<td class="sno">52</td>
<td class="severity-info">INFORMATIONAL</td>
<td>Content Type Not Specified</td>
<td>HTTP Security</td>
<td>Missing Content-Type header in responses</td>
<td>MIME type confusion</td>
<td>Set proper Content-Type headers in JSP</td>
</tr>
<tr>
<td class="sno">53</td>
<td class="severity-info">INFORMATIONAL</td>
<td>Password Type Input with Auto-complete Enabled</td>
<td>Data Leakage</td>
<td>Browser saving password in autocomplete</td>
<td>Credential exposure</td>
<td>Set autocomplete="off" for password fields</td>
</tr>
<tr>
<td class="sno">54</td>
<td class="severity-info">INFORMATIONAL</td>
<td>Data Breach</td>
<td>Data Protection</td>
<td>Potential for unauthorized data access or exposure</td>
<td>Data privacy violations, compliance issues</td>
<td>Implement comprehensive data protection measures</td>
</tr>
</tbody>
</table>
</div>
</div>
<script>
function exportToExcel() {
const table = document.getElementById('securityTable');
const wb = XLSX.utils.table_to_book(table, {sheet: "Security_Checklist"});
XLSX.writeFile(wb, 'Security_Vulnerabilities_Checklist.xlsx');
}
function exportToCSV() {
const table = document.getElementById('securityTable');
const rows = Array.from(table.querySelectorAll('tr'));
const csv = rows.map(row => {
const cells = Array.from(row.querySelectorAll('th, td'));
return cells.map(cell => `"${cell.textContent.replace(/"/g, '""')}"`).join(',');
}).join('\n');
const blob = new Blob([csv], { type: 'text/csv' });
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'Security_Vulnerabilities_Checklist.csv';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
window.URL.revokeObjectURL(url);
}
</script>
<!-- Include SheetJS for Excel export -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
</body>
</html>