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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
<?php
/**
* YAMN Web Interface - Email Gateway
* All traffic routed through Tor
*/
// Disable all error display
ini_set('display_errors', 0);
error_reporting(0);
// Load remailer downloader to populate select options
require_once 'download_remailers.php';
$downloader = new SecureRemailerDownloader();
$remailerList = $downloader->getRemailerList();
// Parse remailer list to extract remailer names
$remailers = [];
if ($remailerList) {
$lines = explode("\n", $remailerList);
foreach ($lines as $line) {
// Extract remailer names (format: "name ******** time uptime")
if (preg_match('/^([a-zA-Z0-9\-]+)\s+/', $line, $matches)) {
$name = trim($matches[1]);
if (!empty($name) && $name !== 'mixmaster' && strlen($name) > 2) {
$remailers[] = $name;
}
}
}
// Remove duplicates and sort
$remailers = array_unique($remailers);
sort($remailers);
}
// If no remailers found, add wildcards
if (empty($remailers)) {
$remailers = ['*'];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<meta name="robots" content="noindex, nofollow">
<title>YAMN Gateway</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
color: #0f0;
font-family: 'Courier New', monospace;
font-size: 14px;
line-height: 1.6;
padding: 20px;
max-width: 900px;
margin: 0 auto;
}
.container {
border: 2px solid #0f0;
padding: 20px;
background: #000;
}
.header {
text-align: center;
border-bottom: 2px solid #0f0;
padding-bottom: 15px;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
letter-spacing: 3px;
font-weight: bold;
color: #0f0;
text-shadow: 0 0 10px #0f0;
}
.subtitle {
font-size: 11px;
color: #0a0;
margin-top: 5px;
letter-spacing: 1px;
}
.mission-brief {
background: #001a00;
border: 1px solid #0f0;
padding: 15px;
margin-bottom: 25px;
font-size: 12px;
line-height: 1.8;
}
.mission-brief p {
margin-bottom: 10px;
}
.mission-brief strong {
color: #0f0;
text-shadow: 0 0 5px #0f0;
}
.form-section {
margin-bottom: 20px;
border: 1px solid #0a0;
padding: 15px;
background: #001100;
}
.section-title {
color: #0f0;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
letter-spacing: 2px;
border-bottom: 1px solid #0a0;
padding-bottom: 5px;
}
label {
display: block;
color: #0a0;
margin-bottom: 5px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
}
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
width: 100%;
background: #000;
border: 1px solid #0f0;
color: #0f0;
padding: 8px;
font-family: 'Courier New', monospace;
font-size: 13px;
margin-bottom: 15px;
transition: all 0.3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
outline: none;
border-color: #0f0;
box-shadow: 0 0 10px #0f0;
}
textarea {
min-height: 200px;
resize: vertical;
}
select {
cursor: pointer;
}
select option {
background: #000;
color: #0f0;
}
.inline-group {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 15px;
}
.field-note {
color: #0a0;
font-size: 11px;
margin-top: -10px;
margin-bottom: 15px;
font-style: italic;
}
.required {
color: #ff0;
text-shadow: 0 0 5px #ff0;
}
.submit-container {
text-align: center;
margin-top: 25px;
padding-top: 20px;
border-top: 2px solid #0f0;
}
button[type="submit"] {
background: #000;
color: #0f0;
border: 2px solid #0f0;
padding: 12px 40px;
font-family: 'Courier New', monospace;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 3px;
cursor: pointer;
transition: all 0.3s;
}
button[type="submit"]:hover {
background: #0f0;
color: #000;
box-shadow: 0 0 20px #0f0;
}
button[type="submit"]:active {
transform: scale(0.98);
}
.tor-status {
position: fixed;
top: 10px;
right: 10px;
background: #001a00;
border: 1px solid #0f0;
padding: 8px 12px;
font-size: 11px;
color: #0f0;
box-shadow: 0 0 10px #0f0;
}
.tor-indicator {
display: inline-block;
width: 8px;
height: 8px;
background: #0f0;
border-radius: 50%;
margin-right: 5px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.footer {
margin-top: 30px;
padding-top: 15px;
border-top: 1px solid #0a0;
text-align: center;
font-size: 11px;
color: #0a0;
}
@media (max-width: 768px) {
.inline-group {
grid-template-columns: 1fr;
}
body {
padding: 10px;
}
.container {
padding: 15px;
}
}
</style>
</head>
<body>
<div class="tor-status">
<span class="tor-indicator"></span>TOR ACTIVE
</div>
<div class="container">
<div class="header">
<h1>[ YAMN GATEWAY ]</h1>
<div class="subtitle">YET ANOTHER MIX NETWORK - SECURE ANONYMOUS EMAIL SYSTEM</div>
</div>
<div class="mission-brief">
<p><strong>MISSION:</strong> This interface provides access to the YAMN anonymous remailer network for secure, untraceable email transmission. Messages are encrypted and routed through a chain of randomly selected mix nodes, making traffic analysis and sender identification computationally infeasible.</p>
<p><strong>OPERATION:</strong> All traffic is mandatorily routed through Tor before reaching the YAMN network. The YAMN entry node receives connections only from Tor exit nodes, never learning the true origin IP address. Messages are padded to standard sizes, delayed with random intervals, and protected against replay attacks through cryptographic message-ID verification.</p>
<p><strong>SECURITY:</strong> Double-layer anonymization: Tor conceals your identity from the YAMN network, while YAMN's multi-hop mixing (minimum 3 remailers) prevents the final recipient from tracing back to the entry point. No persistent metadata retained.</p>
<p><strong>STATUS:</strong> System operational. Tor connection verified. No logs retained.</p>
</div>
<form action="send_email_with_tor.php" method="POST">
<!-- REMAILER CHAIN CONFIGURATION -->
<div class="form-section">
<div class="section-title">[ Chain Configuration ]</div>
<div class="inline-group">
<div>
<label for="entry_remailer">Entry Node <span class="required">*</span></label>
<select name="entry_remailer" id="entry_remailer" required>
<option value="*" selected>* (Random)</option>
<?php foreach ($remailers as $remailer): ?>
<option value="<?php echo htmlspecialchars($remailer); ?>">
<?php echo htmlspecialchars($remailer); ?>
</option>
<?php endforeach; ?>
</select>
</div>
<div>
<label for="middle_remailer">Middle Node <span class="required">*</span></label>
<select name="middle_remailer" id="middle_remailer" required>
<option value="*" selected>* (Random)</option>
<?php foreach ($remailers as $remailer): ?>
<option value="<?php echo htmlspecialchars($remailer); ?>">
<?php echo htmlspecialchars($remailer); ?>
</option>
<?php endforeach; ?>
</select>
</div>
<div>
<label for="exit_remailer">Exit Node <span class="required">*</span></label>
<select name="exit_remailer" id="exit_remailer" required>
<option value="*" selected>* (Random)</option>
<?php foreach ($remailers as $remailer): ?>
<option value="<?php echo htmlspecialchars($remailer); ?>">
<?php echo htmlspecialchars($remailer); ?>
</option>
<?php endforeach; ?>
</select>
</div>
</div>
<div class="field-note">* = Random selection (recommended for maximum security)</div>
</div>
<!-- MESSAGE HEADERS -->
<div class="form-section">
<div class="section-title">[ Message Headers ]</div>
<label for="from">From <span class="required">*</span></label>
<input type="email" name="from" id="from" placeholder="anonymous@anonymous.invalid" required>
<label for="reply_to">Reply-To (Optional)</label>
<input type="email" name="reply_to" id="reply_to" placeholder="reply@example.com">
<label for="to">To <span class="required">*</span></label>
<input type="email" name="to" id="to" placeholder="recipient@example.com" required>
<label for="subject">Subject <span class="required">*</span></label>
<input type="text" name="subject" id="subject" placeholder="Message subject" required>
<label for="newsgroups">Newsgroups (Optional)</label>
<input type="text" name="newsgroups" id="newsgroups" placeholder="alt.anonymous.messages">
<div class="field-note">For Usenet posting (leave blank for email only)</div>
<label for="references">References (Optional)</label>
<input type="text" name="references" id="references" placeholder="Message-ID for threading">
<div class="field-note">For reply threading</div>
</div>
<!-- MESSAGE BODY -->
<div class="form-section">
<div class="section-title">[ Message Body ]</div>
<label for="data">Content <span class="required">*</span></label>
<textarea name="data" id="data" placeholder="Enter your message here..." required></textarea>
</div>
<!-- TRANSMISSION OPTIONS -->
<div class="form-section">
<div class="section-title">[ Transmission Options ]</div>
<label for="copies">Number of Copies <span class="required">*</span></label>
<select name="copies" id="copies" required>
<option value="1">1 Copy (Faster)</option>
<option value="2" selected>2 Copies (Balanced - Recommended)</option>
<option value="3">3 Copies (Maximum Reliability)</option>
</select>
<div class="field-note">Multiple copies share same exit node to prevent duplicates</div>
</div>
<!-- SUBMIT -->
<div class="submit-container">
<button type="submit">[ TRANSMIT MESSAGE ]</button>
</div>
</form>
<div class="footer">
YAMN GATEWAY v2.0 | ALL TRAFFIC ROUTED VIA TOR | NO LOGS RETAINED<br>
OPERATIONAL SECURITY: ENABLED | METADATA PROTECTION: ACTIVE
</div>
</div>
</body>
</html>
|