-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
212 lines (202 loc) · 5.56 KB
/
index.html
File metadata and controls
212 lines (202 loc) · 5.56 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>SSH-MITM – GitHub Project Page</title>
<style>
:root {
--bg-dark: #0f172a;
--bg-light: #f8fafc;
--accent: #2563eb;
--accent-hover: #1e40af;
--text-dark: #1e293b;
--text-light: #64748b;
--radius: 14px;
--shadow: 0 8px 20px rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: "Segoe UI", system-ui, sans-serif;
background: var(--bg-light);
color: var(--text-dark);
line-height: 1.6;
}
a { text-decoration: none; color: var(--accent); }
h1, h2, h3 { font-weight: 700; line-height: 1.2; margin: 1.5rem 0 1rem; }
p { margin-bottom: 1rem; }
/* Header */
header {
background: var(--bg-dark);
color: #fff;
padding: 1rem 2rem;
text-align: center;
box-shadow: var(--shadow);
}
header h1 {
font-size: 1.8rem;
}
header p {
color: #cbd5e1;
margin-top: 0.4rem;
}
/* Hero */
.hero {
text-align: center;
padding: 3rem 1rem 2rem;
max-width: 900px;
margin: auto;
}
.hero img {
width: 100%;
max-width: 520px;
margin: 2rem auto;
display: block;
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.hero-buttons {
margin-top: 1.5rem;
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.btn {
padding: 0.7rem 1.4rem;
border-radius: var(--radius);
font-weight: 600;
transition: background 0.2s;
display: inline-block;
}
.btn-primary {
background: var(--accent);
color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-light {
background: #fff;
color: var(--text-dark);
border: 1px solid #cbd5e1;
}
.btn-light:hover { background: #f1f5f9; }
/* Content */
main {
max-width: 900px;
margin: auto;
padding: 2rem 1rem 4rem;
}
section { margin-bottom: 3rem; }
ul { margin: 0 0 1rem 1.5rem; }
code {
background: #0f172a;
color: #e2e8f0;
padding: 0.2rem 0.4rem;
border-radius: 6px;
font-size: 0.9rem;
}
pre {
background: #0f172a;
color: #e2e8f0;
padding: 1rem;
border-radius: var(--radius);
overflow-x: auto;
margin-bottom: 1rem;
}
/* Footer */
.footer {
background: var(--bg-dark);
color: #e2e8f0;
text-align: center;
padding: 2.5rem 1rem;
margin-top: 3rem;
}
.footer h3 {
margin-bottom: 0.5rem;
font-size: 1.3rem;
color: #fff;
}
.footer p { margin: 0.5rem 0 1rem; }
.footer-links {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 1.5rem;
}
.footer-links a {
color: #cbd5e1;
transition: color 0.2s;
font-weight: 500;
}
.footer-links a:hover { color: #fff; }
.copyright {
font-size: 0.85rem;
color: #94a3b8;
}
</style>
</head>
<body>
<header>
<h1>SSH-MITM</h1>
</header>
<section class="hero">
<h2>SSH audits made simple</h2>
<p>
SSH-MITM is a man-in-the-middle SSH server for security audits with
<b>publickey authentication</b>, <b>session hijacking</b> and
<b>file manipulation</b>.
</p>
<img src="https://docs.ssh-mitm.at/_images/intro.png" alt="SSH-MITM intercepting password login">
<div class="hero-buttons">
<a href="https://docs.ssh-mitm.at" class="btn btn-primary">📘 Documentation</a>
<a href="https://github.com/ssh-mitm/ssh-mitm" class="btn btn-light">🌐 GitHub Repository</a>
</div>
</section>
<main>
<section id="quickstart">
<h2>Quickstart</h2>
<p>Install SSH-MITM with pip and start the server:</p>
<pre>python3 -m pip install ssh-mitm
ssh-mitm server --remote-host 192.168.0.x</pre>
<p>Connect to the MITM server:</p>
<pre>ssh -p 10022 user@proxyserver</pre>
<p>
That’s it! Credentials and sessions are logged.<br>
For installation options (AppImage, Snap, Flatpak, etc.) and advanced usage, see the
<a href="https://docs.ssh-mitm.at">documentation</a>.
</p>
</section>
<section id="features">
<h2>Key Features</h2>
<ul>
<li>Publickey authentication & FIDO token phishing</li>
<li>Hijacking and logging of SSH sessions</li>
<li>SCP/SFTP file manipulation</li>
<li>Dynamic port forwarding with SOCKS 4/5</li>
<li>MOSH interception</li>
<li>Client vulnerability audits</li>
<li>Plugin support</li>
</ul>
</section>
</main>
<footer class="footer">
<div class="footer-content">
<h3>SSH-MITM – Open Source Security Auditing</h3>
<p>
SSH-MITM is developed and maintained by the community.<br>
Source code, issues and contributions are managed on GitHub.
</p>
<div class="footer-links">
<a href="https://docs.ssh-mitm.at">📘 Documentation</a>
<a href="https://github.com/ssh-mitm/ssh-mitm">🌐 GitHub</a>
<a href="https://github.com/ssh-mitm/ssh-mitm/issues">🐞 Issue Tracker</a>
<a href="mailto:support@ssh-mitm.at">✉️ Contact</a>
</div>
<p class="copyright">
© 2025 <a href="https://github.com/ssh-mitm/ssh-mitm">SSH-MITM Dev-Team</a>. Licensed under the GPL.
</p>
</div>
</footer>
</body>
</html>