-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframepage.html
More file actions
114 lines (109 loc) · 3.66 KB
/
Copy pathframepage.html
File metadata and controls
114 lines (109 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guide Frame</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #ffae004f;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
color: #333;
}
p {
color: #666;
font-size: 18px;
line-height: 1.6;
}
.instruction {
margin-top: 20px;
padding: 10px;
background-color: #f2f2f2;
border-radius: 8px;
}
.instruction b {
display: block;
text-align: center;
color: red;
font-size: 20px;
}
.instruction a {
font-size: 18px;
color: #007bff;
text-decoration: none;
}
.instruction a:hover {
text-decoration: underline;
}
img {
width: 100%;
height: auto;
border-radius: 10px;
margin-top: 20px;
}
figcaption {
font-style: oblique;
text-align: center;
font-weight: 700;
color: black;
margin-top: 5px;
}
.social-icons {
text-align: center;
margin-top: 20px;
}
.social-icons a {
color: #333;
text-decoration: none;
font-size: 24px;
margin: 0 10px;
transition: transform 0.3s ease-in-out;
}
.social-icons a:hover {
transform: scale(1.2);
}
</style>
</head>
<body>
<div class="container">
<h1>Network Analyzer Guide</h1>
<div class="instruction">
<p>Feel free to explore and learn more about each tool by clicking on its name or associated links.</p>
</div>
<div class="social-icons">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/im_imagi.nation?igsh=MTR3OWFta243MDUwdw==" target="_blank" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
</div>
<div class="instruction">
<p><a href="./process.txt" target="_self">View Log</a></p>
<b>Guide:</b>
</div>
<img src="./public/project output/new/1716920164891.jpg" alt="Main Output and Server">
<figcaption>Main output and server</figcaption>
<img src="./public/project output/new/1716971228112.jpg" alt="Enable Monitoring and Check Wi-Fi Interface">
<figcaption>Enable monitoring and check Wi-Fi interface</figcaption>
<img src="./public/project output/new/1716971228101.jpg" alt="Disable Monitoring Mode">
<figcaption>Disable monitoring mode</figcaption>
<img src="./public/project output/new/1716971228105.jpg" alt="Network Discovery and Deauthentication">
<figcaption>Network discovery and deauthentication</figcaption>
<img src="./public/project output/new/1716971228109.jpg" alt="Password Cracking Using .cap File">
<figcaption>Password cracking using .cap file</figcaption>
</div>
</body>
</html>