-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
136 lines (117 loc) Β· 4.26 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScanPro - Landing Page</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container {
width: 80%;
margin: 0 auto;
overflow: hidden;
}
#main {
padding: 30px;
background: white;
margin-top: 20px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1,
h2 {
color: #333;
}
p {
line-height: 1.8;
font-size: 1.1em;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px 0;
position: fixed;
bottom: 0;
width: 100%;
}
.button {
display: inline-block;
padding: 12px 25px;
margin-top: 15px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #45a049;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
font-size: 1.1em;
}
li::before {
content: "π";
margin-right: 10px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Welcome to ScanPro π</h1>
</div>
</header>
<div class="container">
<div id="main">
<h2>Overview π</h2>
<p>ScanPro is a comprehensive network scanning tool designed for security professionals and enthusiasts. It
offers a wide range of scanning options to help identify vulnerabilities and gather detailed information
about network hosts. Whether you are conducting a security audit or simply exploring network
configurations, ScanPro provides the tools you need to perform thorough and efficient scans.</p>
<h2>Features π</h2>
<ul>
<li><strong>Target Selection:</strong> Choose specific IPs, hostnames, or ranges for scanning.</li>
<li><strong>Port Selection:</strong> Scan individual ports or ranges to identify open services.</li>
<li><strong>Scan Types:</strong> Utilize different scanning techniques such as TCP connect and SYN
scans.</li>
<li><strong>Service and OS Detection:</strong> Identify running services and operating systems on target
hosts.</li>
<li><strong>Output Formats:</strong> Save scan results in various formats for further analysis.</li>
<li><strong>NSE Scripting:</strong> Leverage Nmap Scripting Engine for advanced scanning capabilities.
</li>
<li><strong>HTTP Info Gathering:</strong> Collect detailed information from HTTP services.</li>
<li><strong>Timing and Performance:</strong> Adjust scan speed and performance settings to suit your
network environment.</li>
</ul>
<h2>Usage π οΈ</h2>
<p>To get started with ScanPro, simply download the script from our GitHub repository and run it on your
preferred terminal. Follow the on-screen prompts to configure your scan settings and view the results.
For detailed instructions and examples, visit our GitHub page.</p>
<a href="https://github.com/AnLoMinus/ScanPro/" class="button">Visit GitHub π</a>
</div>
</div>
<footer>
<p>© 2023 ScanPro. All rights reserved. π</p>
</footer>
</body>
</html>