-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
725 lines (654 loc) · 19.9 KB
/
Copy pathindex.html
File metadata and controls
725 lines (654 loc) · 19.9 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
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="NetDebug Toolkit — 17 network diagnostic tools and the My Automation workflow builder in one app. Ping, DNS Lookup, DNS Record Explorer, Whois, Traceroute, HTTP(S) Check, iperf3 Client, Port Scan, Port Connect, LAN Scan, Subnet Calculator, Public IP + Geo/ASN, Speed/Latency Baseline, TLS Inspector, Bonjour Browser, UPnP/NAT-PMP, and Wake-on-LAN — plus one-tap automations that chain any combination into a single report." />
<title>NetDebug Toolkit — Network Diagnostics for Developers & IT Teams</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
--bg: #050507;
--surface: #0e0e12;
--surface-2: #16161d;
--surface-3: #1e1e28;
--border: rgba(255,255,255,.08);
--border-hover: rgba(255,255,255,.15);
--text: #eaeaf0;
--text-secondary: #9898a8;
--brand: #FF5D24;
--brand-glow: rgba(255,93,36,.15);
--brand-subtle: rgba(255,93,36,.08);
--gradient-brand: linear-gradient(135deg, #ff7a4d, #FF5D24, #e04800);
--radius: 16px;
--radius-sm: 10px;
--shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 32px rgba(0,0,0,.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
/* Ambient glow */
.glow-bg {
position: fixed;
top: -200px;
left: 50%;
transform: translateX(-50%);
width: 800px;
height: 600px;
background: radial-gradient(ellipse, rgba(255,93,36,.07) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.wrap {
max-width: 1120px;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 1;
}
/* ── Navigation ── */
.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0;
border-bottom: 1px solid var(--border);
flex-wrap: wrap;
gap: 12px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--text);
font-weight: 700;
font-size: 15px;
letter-spacing: .3px;
}
.brand-logo {
width: 36px;
height: 36px;
object-fit: contain;
border-radius: 8px;
}
.nav-links {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
row-gap: 4px;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 13px;
font-weight: 500;
padding: 6px 12px;
border-radius: 8px;
transition: color .2s, background .2s;
}
.nav-links a:hover {
color: var(--text);
background: var(--surface-2);
}
/* ── Hero ── */
.hero {
padding: 72px 0 56px;
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--brand-subtle);
border: 1px solid rgba(255,93,36,.2);
color: var(--brand);
font-size: 12px;
font-weight: 600;
padding: 5px 14px;
border-radius: 999px;
margin-bottom: 24px;
letter-spacing: .4px;
text-transform: uppercase;
}
.hero h1 {
font-size: clamp(36px, 5vw, 60px);
font-weight: 800;
line-height: 1.1;
letter-spacing: -.02em;
max-width: 720px;
margin: 0 auto 20px;
}
.hero h1 .accent {
background: var(--gradient-brand);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: 17px;
color: var(--text-secondary);
max-width: 560px;
margin: 0 auto 32px;
line-height: 1.7;
}
.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
/* Official "Download on the App Store" badge (Apple Marketing Guidelines).
The badge artwork is never recolored or restyled; we only scale it while
preserving its aspect ratio and reserve the required clear space. */
.app-store-badge {
display: inline-flex;
align-items: center;
/* Clear space ≥ 1/4 of badge height on all sides per Apple guidelines. */
padding: 13px 0;
text-decoration: none;
transition: transform .2s, opacity .2s;
}
.app-store-badge img {
height: 52px;
width: auto;
display: block;
}
.app-store-badge:hover {
transform: translateY(-1px);
opacity: .85;
}
/* ── Stats Bar ── */
.stats {
display: flex;
justify-content: center;
gap: 48px;
padding: 0 0 56px;
flex-wrap: wrap;
}
.stat {
text-align: center;
}
.stat-number {
font-size: 28px;
font-weight: 800;
color: var(--brand);
}
.stat-label {
font-size: 13px;
color: var(--text-secondary);
margin-top: 2px;
}
/* ── Feature Cards (Why Section) ── */
.why {
padding: 48px 0;
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.why-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px 24px;
transition: border-color .25s, box-shadow .25s;
}
.why-card:hover {
border-color: var(--border-hover);
box-shadow: var(--shadow);
}
.why-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--brand-subtle);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
font-size: 20px;
}
.why-card h3 {
font-size: 15px;
font-weight: 600;
margin-bottom: 6px;
}
.why-card p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.6;
}
/* ── Tools Section ── */
.tools-section {
padding: 48px 0;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2 {
font-size: 32px;
font-weight: 800;
letter-spacing: -.01em;
margin-bottom: 8px;
}
.section-header p {
font-size: 15px;
color: var(--text-secondary);
}
.category {
margin-bottom: 32px;
}
.category-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 1.2px;
text-transform: uppercase;
color: var(--brand);
margin-bottom: 12px;
padding-left: 2px;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 12px;
}
.tool-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 18px 20px;
display: flex;
align-items: flex-start;
gap: 14px;
transition: border-color .25s, transform .15s, box-shadow .25s;
}
.tool-card:hover {
border-color: var(--border-hover);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.tool-icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: var(--surface-3);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 16px;
}
.tool-info h3 {
font-size: 14px;
font-weight: 600;
margin-bottom: 3px;
}
.tool-info p {
font-size: 12px;
color: var(--text-secondary);
line-height: 1.5;
}
/* ── Platforms ── */
.platforms {
padding: 48px 0;
text-align: center;
}
.platform-badges {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
margin-top: 24px;
}
.platform-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--surface);
border: 1px solid var(--border);
padding: 10px 18px;
border-radius: 10px;
font-size: 14px;
font-weight: 500;
color: var(--text);
}
.platform-badge span.icon {
font-size: 18px;
}
/* ── CTA Bottom ── */
.cta-bottom {
padding: 56px 0;
text-align: center;
}
.cta-box {
background: linear-gradient(135deg, var(--surface-2), var(--surface));
border: 1px solid var(--border);
border-radius: 20px;
padding: 48px 32px;
position: relative;
overflow: hidden;
}
.cta-box::before {
content: '';
position: absolute;
top: -80px;
left: 50%;
transform: translateX(-50%);
width: 400px;
height: 200px;
background: radial-gradient(ellipse, rgba(255,93,36,.1) 0%, transparent 70%);
pointer-events: none;
}
.cta-box h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
position: relative;
}
.cta-box p {
color: var(--text-secondary);
font-size: 15px;
margin-bottom: 24px;
position: relative;
}
/* ── Footer ── */
footer {
border-top: 1px solid var(--border);
padding: 24px 0 32px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
footer .copy {
font-size: 13px;
color: var(--text-secondary);
}
footer nav {
display: flex;
gap: 20px;
}
footer nav a {
font-size: 13px;
color: var(--text-secondary);
text-decoration: none;
transition: color .2s;
}
footer nav a:hover {
color: var(--text);
}
/* ── Responsive ── */
@media (max-width: 860px) {
.why-grid { grid-template-columns: 1fr 1fr; }
.tools-grid { grid-template-columns: repeat(2, 1fr); }
.stats { gap: 32px; }
}
@media (max-width: 620px) {
.hero { padding: 48px 0 36px; }
.why-grid { grid-template-columns: 1fr; }
.tools-grid { grid-template-columns: 1fr; }
/* Keep every nav link reachable on phones; just compress the chrome. */
.nav-links a { font-size: 12.5px; padding: 5px 10px; }
.wrap { padding: 0 16px; }
.stats { gap: 24px; }
.stat-number { font-size: 24px; }
}
</style>
</head>
<body>
<div class="glow-bg"></div>
<div class="wrap">
<!-- Navigation -->
<header class="nav">
<a href="/" class="brand">
<img class="brand-logo" src="netdebug.png" alt="NetDebug Toolkit logo" />
NetDebug Toolkit
</a>
<div class="nav-links">
<a href="#tools">Tools</a>
<a href="docs.html">Docs</a>
<a href="support.html">Support</a>
<a href="terms.html">Terms</a>
<a href="privacy.html">Privacy</a>
</div>
</header>
<!-- Hero -->
<section class="hero">
<div class="hero-badge">17 Tools + Automations</div>
<h1>Network diagnostics,<br><span class="accent">simplified.</span></h1>
<p class="hero-sub">
Ping, DNS, Whois, Traceroute, Port Scan, TLS Inspector, Wake-on-LAN, and more — chain any of them into one-tap workflows with the new My Automation builder.
</p>
<div class="hero-actions">
<a href="https://apps.apple.com/app/id6759454574" class="app-store-badge" target="_blank" rel="noopener" aria-label="Download NetDebug Toolkit on the App Store">
<img src="app-store-badge.svg" alt="Download on the App Store" width="156" height="52" />
</a>
</div>
</section>
<!-- Stats -->
<div class="stats">
<div class="stat">
<div class="stat-number">17</div>
<div class="stat-label">Network Tools</div>
</div>
<div class="stat">
<div class="stat-number">3</div>
<div class="stat-label">Tool Categories</div>
</div>
<div class="stat">
<div class="stat-number">1-tap</div>
<div class="stat-label">Automation Workflows</div>
</div>
</div>
<!-- Why Section -->
<section class="why">
<div class="why-grid">
<div class="why-card">
<div class="why-icon">⚡</div>
<h3>My Automation</h3>
<p>Chain any combination of tools into a one-tap workflow. See every result on one screen, export the whole run as PDF, PNG, or text, and trigger it from a deeplink.</p>
</div>
<div class="why-card">
<div class="why-icon">⚙</div>
<h3>Saved Hosts</h3>
<p>Save frequently tested hosts and run any tool against them instantly with one tap. Export the result as PDF, PNG, or text, and trigger it from a deeplink.</p>
</div>
<div class="why-card">
<div class="why-icon">⚡</div>
<h3>Fast & Structured Output</h3>
<p>Every tool returns clean, structured results designed for quick troubleshooting — not walls of text.</p>
</div>
</div>
</section>
<!-- Tools -->
<section id="tools" class="tools-section">
<div class="section-header">
<h2>All 17 Tools</h2>
<p>Everything you need for network diagnostics, organized by workflow.</p>
</div>
<!-- Connectivity -->
<div class="category">
<div class="category-label">Connectivity</div>
<div class="tools-grid">
<div class="tool-card">
<div class="tool-icon">📡</div>
<div class="tool-info">
<h3>Ping</h3>
<p>Check host reachability and measure response time.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🌐</div>
<div class="tool-info">
<h3>HTTP(S) Check</h3>
<p>Inspect status codes, redirect chains, and TLS summaries.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">⚡</div>
<div class="tool-info">
<h3>Speed / Latency Baseline</h3>
<p>Measure latency, jitter, download, and upload speed.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">📊</div>
<div class="tool-info">
<h3>iperf3 Client</h3>
<p>TCP throughput tests against an external iperf3 server.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🛣</div>
<div class="tool-info">
<h3>Traceroute</h3>
<p>Trace the network path and latency to any destination.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🔌</div>
<div class="tool-info">
<h3>TCP/UDP Connect</h3>
<p>Test if a specific TCP or UDP host:port is reachable.</p>
</div>
</div>
</div>
</div>
<!-- Lookup & Info -->
<div class="category">
<div class="category-label">Lookup & Info</div>
<div class="tools-grid">
<div class="tool-card">
<div class="tool-icon">🌎</div>
<div class="tool-info">
<h3>Public IP + Geo/ASN</h3>
<p>View your public IP, ISP, ASN, and approximate location.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">📄</div>
<div class="tool-info">
<h3>Whois</h3>
<p>Look up domain or IP registration details via RDAP and WHOIS.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🔎</div>
<div class="tool-info">
<h3>DNS Lookup</h3>
<p>Resolve DNS records with optional custom resolver support.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">📑</div>
<div class="tool-info">
<h3>DNS Record Explorer</h3>
<p>Explore A, AAAA, CNAME, MX, TXT, NS, SRV records with TTL.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🔐</div>
<div class="tool-info">
<h3>TLS Certificate Inspector</h3>
<p>Inspect certificate expiry, SAN entries, issuer chain, and weak signals.</p>
</div>
</div>
</div>
</div>
<!-- Scanning & Discovery -->
<div class="category">
<div class="category-label">Scanning & Discovery</div>
<div class="tools-grid">
<div class="tool-card">
<div class="tool-icon">🔧</div>
<div class="tool-info">
<h3>Port Scan</h3>
<p>Scan selected TCP ports and review open/closed/filtered outcomes.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🖥</div>
<div class="tool-info">
<h3>LAN Scan</h3>
<p>Discover active devices on your local subnet.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🧮</div>
<div class="tool-info">
<h3>Subnet Calculator</h3>
<p>Calculate subnet details, boundaries, and host counts from CIDR.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">📶</div>
<div class="tool-info">
<h3>mDNS / Bonjour Browser</h3>
<p>Discover .local Bonjour services like AirPlay, HomeKit, and printers.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">🔁</div>
<div class="tool-info">
<h3>UPnP / NAT-PMP Discovery</h3>
<p>Detect gateway UPnP IGD and NAT-PMP with external-IP hints.</p>
</div>
</div>
<div class="tool-card">
<div class="tool-icon">⏻</div>
<div class="tool-info">
<h3>Wake-on-LAN</h3>
<p>Send a magic packet to wake compatible devices on your network.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Platforms -->
<section class="platforms">
<h2>Available on</h2>
<div class="platform-badges">
<div class="platform-badge">
<span class="icon">📱</span> iPhone & iPad
</div>
<div class="platform-badge">
<span class="icon">📺</span> Apple TV
</div>
</div>
</section>
<!-- CTA -->
<section class="cta-bottom">
<div class="cta-box">
<h2>Ready to debug your network?</h2>
<p>Download NetDebug Toolkit for free on the App Store.</p>
<a href="https://apps.apple.com/app/id6759454574" class="app-store-badge" target="_blank" rel="noopener" aria-label="Download NetDebug Toolkit on the App Store">
<img src="app-store-badge.svg" alt="Download on the App Store" width="156" height="52" />
</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="copy">© <span id="year"></span> Developer Insider. All rights reserved.</div>
<nav>
<a href="docs.html">Docs</a>
<a href="support.html">Support</a>
<a href="terms.html">Terms</a>
<a href="privacy.html">Privacy</a>
</nav>
</footer>
</div>
<script>document.getElementById('year').textContent = new Date().getFullYear();</script>
</body>
</html>