-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html
More file actions
150 lines (138 loc) · 5.78 KB
/
Copy pathreport.html
File metadata and controls
150 lines (138 loc) · 5.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GOD MODE REPORT - example.com</title>
<style>
:root {
--bg: #0d1117;
--card: #161b22;
--text: #c9d1d9;
--accent: #58a6ff;
--danger: #f85149;
--success: #238636;
--warning: #d29922;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 20px;
}
.container { max-width: 1200px; margin: 0 auto; }
h1, h2, h3 { color: var(--accent); }
.header {
text-align: center;
padding: 40px 0;
border-bottom: 2px solid var(--card);
margin-bottom: 40px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.stat-card {
background: var(--card);
padding: 20px;
border-radius: 8px;
text-align: center;
border: 1px solid #30363d;
}
.stat-number { font-size: 2.5em; font-weight: bold; color: var(--text); }
.stat-label { color: #8b949e; margin-top: 5px; }
.section {
background: var(--card);
padding: 25px;
margin-bottom: 25px;
border-radius: 8px;
border: 1px solid #30363d;
}
.tag {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85em;
margin: 2px;
background: #1f6feb;
color: white;
}
.tag.danger { background: var(--danger); }
.tag.warning { background: var(--warning); color: #000; }
table { width: 100%; border-collapse: collapse; margin-top: 15px; }
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #30363d;
}
th { color: #8b949e; }
code {
background: rgba(110, 118, 129, 0.4);
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>⚡ GOD MODE REPORT ⚡</h1>
<p>Target: <strong>example.com</strong> | Date: 2026-02-10 18:28</p>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">10</div>
<div class="stat-label">Subdomains</div>
</div>
<div class="stat-card">
<div class="stat-number" style="color: var(--danger)">0</div>
<div class="stat-label">Vulnerabilities</div>
</div>
<div class="stat-card">
<div class="stat-number" style="color: var(--warning)">5</div>
<div class="stat-label">Missing Headers</div>
</div>
<div class="stat-card">
<div class="stat-number">Cloudflare</div>
<div class="stat-label">WAF Detected</div>
</div>
</div>
<div class="section">
<h2>🌍 Reconnaissance</h2>
<h3>IP Addresses</h3>
<p>2606:4700:90d2:8c7c:33ca:420:ccc4:a209, 104.18.27.120, 104.18.26.120</p>
<h3>Subdomains</h3>
<div class="tags">
<span class="tag">example.com</span><span class="tag">www.example.com</span><span class="tag">subjectname@example.com</span><span class="tag">m.testexample.com</span><span class="tag">m.example.com</span><span class="tag">dev.example.com</span><span class="tag">products.example.com</span><span class="tag">support.example.com</span><span class="tag">AS207960 Test Intermediate - example.com</span><span class="tag">user@example.com</span>
</div>
</div>
<div class="section">
<h2>🛡️ Tech Stack</h2>
<p><strong>Server:</strong> cloudflare</p>
<p><strong>CMS:</strong> None</p>
<p><strong>WAF:</strong> <span class="tag danger">Cloudflare</span></p>
</div>
<div class="section">
<h2>🚨 Security Issues</h2>
<h3>Missing Headers</h3>
<ul>
<li><code>Content-Security-Policy</code></li><li><code>X-Frame-Options</code></li><li><code>X-XSS-Protection</code></li><li><code>Strict-Transport-Security</code></li><li><code>X-Content-Type-Options</code></li>
</ul>
<h3>Open Ports</h3>
<p>No open ports found (top common list).</p>
</div>
<div class="section">
<h2>🔥 Vulnerabilities Found</h2>
<p style='color: var(--success)'>✅ No critical vulnerabilities found in this scan.</p>
</div>
<div class="section">
<h2>📂 Fuzzing Results</h2>
<p>No sensitive files found.</p>
</div>
</div>
</body>
</html>