-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode5.html
More file actions
68 lines (56 loc) · 3.44 KB
/
Copy pathnode5.html
File metadata and controls
68 lines (56 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web and Mobile Security</title>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src = "js/d3.v7.min.js"></script>
<link rel="icon" type="image/png" sizes="32x32" href="../fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../fav/favicon-16x16.png">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<svg width="100%" height="100%">
<div class="dark-mode-toggle" id="darkModeToggle" onclick="toggleTheme()"></div>
<div class="toolbar">
<i class="fa fa-arrow-left fa-lg" onclick="history.back()"></i>
</div>
</svg>
<div class="tooltip"></div>
<script>
var nodes = [
{ id: 'start', label: 'Web and Mobile Security', contentUrl: 'start.html', tooltip: '' },
{ id: 'node1', label: '1. Web Security', contentUrl: 'Web and Mobile Security/node1.html', tooltip: '' },
{ id: 'node2', label: '2. Mobile Security', contentUrl: 'Web and Mobile Security/node2.html', tooltip: '' },
{ id: 'node3', label: '3. OWASP Top Ten Web Application Security Risks', contentUrl: 'Web and Mobile Security/node3.html', tooltip: '' },
{ id: 'node4', label: '4. Secure Coding Practices', contentUrl: 'Web and Mobile Security/node4.html', tooltip: '' },
{ id: 'node5', label: '5. Web Application Firewalls (WAF)', contentUrl: 'Web and Mobile Security/node5.html', tooltip: '' },
{ id: 'node6', label: '6. Cross-Site Request Forgery (CSRF) Protection', contentUrl: 'Web and Mobile Security/node6.html', tooltip: '' },
{ id: 'node7', label: '7. Security Headers and Content Security Policy (CSP)', contentUrl: 'Web and Mobile Security/node7.html', tooltip: '' },
{ id: 'node8', label: '8. Mobile Device Management (MDM)', contentUrl: 'Web and Mobile Security/node8.html', tooltip: '' },
{ id: 'node9', label: '9. Secure App Development', contentUrl: 'Web and Mobile Security/node9.html', tooltip: '' },
{ id: 'node10', label: '10. Mobile Threat Defense', contentUrl: 'Web and Mobile Security/node10.html', tooltip: '' },
{ id: 'node11', label: '11. Jailbreaking and Rooting Risks', contentUrl: 'Web and Mobile Security/node11.html', tooltip: '' },
{ id: 'node12', label: '12. Secure Wi-Fi and Bluetooth Usage', contentUrl: 'Web and Mobile Security/node12.html', tooltip: '' },
];
var links = [
{ source: 'start', target: 'node1' },
{ source: 'start', target: 'node2' },
{ source: 'start', target: 'node3' },
{ source: 'start', target: 'node4' },
{ source: 'start', target: 'node5' },
{ source: 'start', target: 'node6' },
{ source: 'start', target: 'node7' },
{ source: 'start', target: 'node8' },
{ source: 'start', target: 'node9' },
{ source: 'start', target: 'node10' },
{ source: 'start', target: 'node11' },
{ source: 'start', target: 'node12' },
];
</script>
<script src="js/script.js"></script>
<script src="js/theme.js"></script>
</body>
</html>