-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreport.html
More file actions
116 lines (116 loc) · 4.03 KB
/
Copy pathreport.html
File metadata and controls
116 lines (116 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FireScan Report — 127.0.0.1</title>
<style>
:root { color-scheme: dark; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #020617, #111827);
color: #e5e7eb;
padding: 24px;
}
.container { max-width: 1280px; margin: 0 auto; }
.header {
text-align: center;
padding: 30px 0 24px;
border-bottom: 1px solid #334155;
margin-bottom: 24px;
}
.header h1 {
font-size: 2.4em;
background: linear-gradient(135deg, #38bdf8, #818cf8, #34d399);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.badge { display: inline-block; margin-top: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(56,189,248,0.16); color: #bae6fd; font-size: 0.9em; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.summary-card { background: rgba(15,23,42,0.92); border: 1px solid #334155; border-radius: 14px; padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.summary-card .label { color: #94a3b8; font-size: 0.82em; text-transform: uppercase; letter-spacing: 0.08em; }
.summary-card .value { font-size: 1.5em; font-weight: 700; margin-top: 6px; }
.pill { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #1d4ed8; color: white; font-size: 0.85em; }
.state-open { background: rgba(16,185,129,0.18); color: #ecfdf5; }
.state-filtered { background: rgba(249,115,22,0.16); color: #ffedd5; }
.state-closed { background: rgba(15,23,42,0.95); color: #cbd5e1; }
table { width: 100%; border-collapse: collapse; background: rgba(15,23,42,0.95); border-radius: 14px; overflow: hidden; margin-top: 6px; }
th { background: #1e293b; padding: 12px 10px; text-align: left; font-weight: 600; color: #cbd5e1; }
td { padding: 10px; border-bottom: 1px solid #1f2937; }
tr:hover { filter: brightness(1.1); }
.footer { text-align: center; padding: 30px 10px 8px; color: #64748b; font-size: 0.95em; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🔥 FireScan Report</h1>
<div class="badge">Generated by FireScan v5.1.0 · Professional Security Intelligence</div>
</div>
<div class="summary-grid">
<div class="summary-card">
<div class="label">Target</div>
<div class="value">127.0.0.1</div>
</div>
<div class="summary-card">
<div class="label">Engine</div>
<div class="value">naive</div>
</div>
<div class="summary-card">
<div class="label">Duration</div>
<div class="value">37.0s</div>
</div>
<div class="summary-card">
<div class="label">Hosts</div>
<div class="value">1</div>
</div>
<div class="summary-card">
<div class="label">Open Ports</div>
<div class="value" style="color: #4ade80;">4</div>
</div>
</div>
<table>
<thead>
<tr>
<th>IP</th><th>Port</th><th>Protocol</th><th>State</th><th>Service</th><th>Version</th>
</tr>
</thead>
<tbody>
<tr class="state-open">
<td><strong>127.0.0.1</strong></td>
<td><span class="pill">135</span></td>
<td>tcp</td>
<td>open</td>
<td></td>
<td></td>
</tr>
<tr class="state-open">
<td><strong>127.0.0.1</strong></td>
<td><span class="pill">445</span></td>
<td>tcp</td>
<td>open</td>
<td></td>
<td></td>
</tr>
<tr class="state-open">
<td><strong>127.0.0.1</strong></td>
<td><span class="pill">902</span></td>
<td>tcp</td>
<td>open</td>
<td>unknown</td>
<td></td>
</tr>
<tr class="state-open">
<td><strong>127.0.0.1</strong></td>
<td><span class="pill">912</span></td>
<td>tcp</td>
<td>open</td>
<td>unknown</td>
<td></td>
</tr></tbody>
</table>
<div class="footer">FireScan v5.1.0 — MIT License · Designed for analysts, pentesters, and security teams</div>
</div>
</body>
</html>