Port encode/decode/tools/about routes from stegasoo (2,083 lines)
New file stego_routes.py: - register_stego_routes() mounts all encode/decode routes on the Flask app - Async encode with ThreadPoolExecutor + progress polling - Subprocess isolation for crash-safe stegasoo operations - Image + audio encode/decode with full validation - Encode result display with download - Tools API routes (capacity, EXIF, rotate, compress, convert) - About page with crypto documentation Real templates (replacing stubs): - encode.html (889 lines): full form with carrier upload, passphrase, PIN, RSA key, embed mode selection, async progress bar - decode.html (681 lines): decode form with credential inputs - encode_result.html (242 lines): result display with download - about.html (602 lines): security documentation All routes verified working with auth flow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
10838ce828
commit
317ef0f2ae
@ -304,84 +304,6 @@ def _register_stegasoo_routes(app: Flask) -> None:
|
|||||||
# Initialize subprocess wrapper
|
# Initialize subprocess wrapper
|
||||||
subprocess_stego = SubprocessStego(timeout=180)
|
subprocess_stego = SubprocessStego(timeout=180)
|
||||||
|
|
||||||
# Async job management
|
|
||||||
_executor = ThreadPoolExecutor(max_workers=2)
|
|
||||||
_jobs = {}
|
|
||||||
_jobs_lock = threading.Lock()
|
|
||||||
|
|
||||||
def _store_job(job_id, data):
|
|
||||||
with _jobs_lock:
|
|
||||||
_jobs[job_id] = data
|
|
||||||
|
|
||||||
def _get_job(job_id):
|
|
||||||
with _jobs_lock:
|
|
||||||
return _jobs.get(job_id)
|
|
||||||
|
|
||||||
def _cleanup_old_jobs(max_age_seconds=3600):
|
|
||||||
now = time.time()
|
|
||||||
with _jobs_lock:
|
|
||||||
to_remove = [
|
|
||||||
jid for jid, data in _jobs.items()
|
|
||||||
if now - data.get("created", 0) > max_age_seconds
|
|
||||||
]
|
|
||||||
for jid in to_remove:
|
|
||||||
cleanup_progress_file(jid)
|
|
||||||
del _jobs[jid]
|
|
||||||
|
|
||||||
# Helper functions
|
|
||||||
def resolve_channel_key_form(channel_key_value):
|
|
||||||
try:
|
|
||||||
result = resolve_channel_key(channel_key_value)
|
|
||||||
if result is None:
|
|
||||||
return "auto"
|
|
||||||
elif result == "":
|
|
||||||
return "none"
|
|
||||||
else:
|
|
||||||
return result
|
|
||||||
except (ValueError, FileNotFoundError):
|
|
||||||
return "auto"
|
|
||||||
|
|
||||||
def generate_thumbnail(image_data, size=THUMBNAIL_SIZE):
|
|
||||||
try:
|
|
||||||
with Image.open(io.BytesIO(image_data)) as img:
|
|
||||||
if img.mode in ("RGBA", "LA", "P"):
|
|
||||||
background = Image.new("RGB", img.size, (255, 255, 255))
|
|
||||||
if img.mode == "P":
|
|
||||||
img = img.convert("RGBA")
|
|
||||||
background.paste(img, mask=img.split()[-1] if img.mode == "RGBA" else None)
|
|
||||||
img = background
|
|
||||||
elif img.mode == "L":
|
|
||||||
img = img.convert("RGB")
|
|
||||||
elif img.mode != "RGB":
|
|
||||||
img = img.convert("RGB")
|
|
||||||
img.thumbnail(size, Image.Resampling.LANCZOS)
|
|
||||||
buffer = io.BytesIO()
|
|
||||||
img.save(buffer, format="JPEG", quality=THUMBNAIL_QUALITY, optimize=True)
|
|
||||||
return buffer.getvalue()
|
|
||||||
except Exception:
|
|
||||||
return None
|
|
||||||
|
|
||||||
def cleanup_temp_files():
|
|
||||||
temp_storage.cleanup_expired(TEMP_FILE_EXPIRY)
|
|
||||||
|
|
||||||
def allowed_image(filename):
|
|
||||||
if not filename or "." not in filename:
|
|
||||||
return False
|
|
||||||
return filename.rsplit(".", 1)[1].lower() in {"png", "jpg", "jpeg", "bmp", "gif"}
|
|
||||||
|
|
||||||
def allowed_audio(filename):
|
|
||||||
if not filename or "." not in filename:
|
|
||||||
return False
|
|
||||||
return filename.rsplit(".", 1)[1].lower() in {"wav", "flac", "mp3", "ogg", "aac", "m4a", "aiff", "aif"}
|
|
||||||
|
|
||||||
def format_size(size_bytes):
|
|
||||||
if size_bytes < 1024:
|
|
||||||
return f"{size_bytes} B"
|
|
||||||
elif size_bytes < 1024 * 1024:
|
|
||||||
return f"{size_bytes / 1024:.1f} KB"
|
|
||||||
else:
|
|
||||||
return f"{size_bytes / (1024 * 1024):.1f} MB"
|
|
||||||
|
|
||||||
# ── Auth routes (setup, login, logout, account) ────────────────
|
# ── Auth routes (setup, login, logout, account) ────────────────
|
||||||
|
|
||||||
from auth import (
|
from auth import (
|
||||||
@ -706,26 +628,18 @@ def _register_stegasoo_routes(app: Flask) -> None:
|
|||||||
flash(f"Error creating key file: {e}", "error")
|
flash(f"Error creating key file: {e}", "error")
|
||||||
return redirect(url_for("generate"))
|
return redirect(url_for("generate"))
|
||||||
|
|
||||||
# ── Encode (placeholder — full route migration is Phase 2) ───
|
# ── Encode/Decode/Tools routes (from stego_routes.py) ────────
|
||||||
|
|
||||||
@app.route("/encode", methods=["GET", "POST"])
|
from stego_routes import register_stego_routes
|
||||||
@login_required
|
|
||||||
def encode():
|
|
||||||
return render_template("stego/encode.html")
|
|
||||||
|
|
||||||
@app.route("/decode", methods=["GET", "POST"])
|
register_stego_routes(app, **{
|
||||||
@login_required
|
"login_required": login_required,
|
||||||
def decode():
|
"subprocess_stego": subprocess_stego,
|
||||||
return render_template("stego/decode.html")
|
"temp_storage": temp_storage,
|
||||||
|
"has_qrcode_read": _HAS_QRCODE_READ,
|
||||||
|
})
|
||||||
|
|
||||||
@app.route("/tools")
|
# /about route is in stego_routes.py
|
||||||
@login_required
|
|
||||||
def tools():
|
|
||||||
return render_template("stego/tools.html")
|
|
||||||
|
|
||||||
@app.route("/about")
|
|
||||||
def about():
|
|
||||||
return render_template("stego/about.html")
|
|
||||||
|
|
||||||
# ── API routes (capacity, channel, download) ──────────────────
|
# ── API routes (capacity, channel, download) ──────────────────
|
||||||
|
|
||||||
|
|||||||
2082
frontends/web/stego_routes.py
Normal file
2082
frontends/web/stego_routes.py
Normal file
File diff suppressed because it is too large
Load Diff
602
frontends/web/templates/stego/about.html
Normal file
602
frontends/web/templates/stego/about.html
Normal file
@ -0,0 +1,602 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}About - Stegasoo{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-10">
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-info-circle me-2"></i>About Stegasoo</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="lead">
|
||||||
|
Stegasoo hides encrypted messages and files inside images using multi-factor authentication.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h6 class="text-primary mt-4 mb-3">Features</h6>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Text & File Embedding</strong>
|
||||||
|
<br><small class="text-muted">Any file type: PDF, ZIP, documents</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Multi-Factor Security</strong>
|
||||||
|
<br><small class="text-muted">Photo + passphrase + PIN/RSA key</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>AES-256-GCM Encryption</strong>
|
||||||
|
<br><small class="text-muted">Authenticated encryption with integrity check</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>DCT & LSB Modes</strong>
|
||||||
|
<br><small class="text-muted">JPEG resilience (DCT) or high capacity (LSB)</small>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Random Pixel Embedding</strong>
|
||||||
|
<br><small class="text-muted">Defeats statistical analysis</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Large Image Support</strong>
|
||||||
|
<br><small class="text-muted">Up to {{ max_payload_kb }} KB, tested with 14MB+ images</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Zero Server Storage</strong>
|
||||||
|
<br><small class="text-muted">Nothing saved, files auto-expire</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>QR Code Keys</strong>
|
||||||
|
<br><small class="text-muted">Import/export RSA keys via QR</small>
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle text-success me-2"></i>
|
||||||
|
<strong>Channel Keys</strong>
|
||||||
|
<span class="badge bg-info ms-1">v4.1</span>
|
||||||
|
<br><small class="text-muted">Group/deployment isolation</small>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Embedding Modes -->
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-cpu me-2"></i>Embedding Modes</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>Two modes optimized for different use cases.</p>
|
||||||
|
|
||||||
|
<div class="row mt-4">
|
||||||
|
<!-- DCT Mode -->
|
||||||
|
<div class="col-md-6 mb-4">
|
||||||
|
<div class="card bg-dark h-100">
|
||||||
|
<div class="card-header">
|
||||||
|
<i class="bi bi-soundwave text-warning me-2"></i>
|
||||||
|
<strong>DCT Mode</strong>
|
||||||
|
<span class="badge bg-success ms-2">Default</span>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="small">
|
||||||
|
<strong>DCT (Discrete Cosine Transform)</strong> embeds data in frequency coefficients. Survives JPEG recompression.
|
||||||
|
</p>
|
||||||
|
<ul class="small mb-0">
|
||||||
|
<li><strong>Capacity:</strong> ~75 KB/MP</li>
|
||||||
|
<li><strong>Output:</strong> JPEG or PNG</li>
|
||||||
|
<li><strong>Color:</strong> Color or grayscale</li>
|
||||||
|
<li><strong>Speed:</strong> ~2s</li>
|
||||||
|
<li><strong>Error Correction:</strong> Reed-Solomon</li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
<div class="small">
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Instagram, Facebook<br>
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> WhatsApp, Signal, Telegram<br>
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Twitter/X<br>
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Any recompressing platform
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- LSB Mode -->
|
||||||
|
<div class="col-md-6 mb-4">
|
||||||
|
<div class="card bg-dark h-100">
|
||||||
|
<div class="card-header">
|
||||||
|
<i class="bi bi-grid-3x3-gap text-primary me-2"></i>
|
||||||
|
<strong>LSB Mode</strong>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="small">
|
||||||
|
<strong>LSB (Least Significant Bit)</strong> embeds data in the lowest bit of each color channel. Imperceptible to the eye.
|
||||||
|
</p>
|
||||||
|
<ul class="small mb-0">
|
||||||
|
<li><strong>Capacity:</strong> ~375 KB/MP</li>
|
||||||
|
<li><strong>Output:</strong> PNG (lossless)</li>
|
||||||
|
<li><strong>Color:</strong> Full color</li>
|
||||||
|
<li><strong>Speed:</strong> ~0.5s</li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
<div class="small">
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Email attachments<br>
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Cloud storage<br>
|
||||||
|
<i class="bi bi-check-circle text-success me-1"></i> Direct file transfer<br>
|
||||||
|
<i class="bi bi-x-circle text-danger me-1"></i> Social media
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mode Comparison Table -->
|
||||||
|
<h6 class="mt-3"><i class="bi bi-table me-2"></i>Comparison</h6>
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table class="table table-dark table-sm small">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Aspect</th>
|
||||||
|
<th>DCT Mode <span class="badge bg-success ms-1">Default</span></th>
|
||||||
|
<th>LSB Mode</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Capacity (1080p)</td>
|
||||||
|
<td class="text-warning">~50 KB</td>
|
||||||
|
<td class="text-success">~770 KB</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Survives JPEG</td>
|
||||||
|
<td class="text-success">✅ Yes</td>
|
||||||
|
<td class="text-danger">❌ No</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Social Media</td>
|
||||||
|
<td class="text-success">✅ Works</td>
|
||||||
|
<td class="text-danger">❌ Broken</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Detection Resistance</td>
|
||||||
|
<td>Better</td>
|
||||||
|
<td>Moderate</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="alert alert-info small mt-3 mb-0">
|
||||||
|
<i class="bi bi-lightbulb me-2"></i>
|
||||||
|
<strong>Auto-Detection:</strong> Mode is detected automatically when decoding.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-shield-lock me-2"></i>How Security Works</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>Multi-factor authentication derives encryption keys:</p>
|
||||||
|
|
||||||
|
<div class="row text-center my-4">
|
||||||
|
<div class="col-6 col-lg-3 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100 d-flex flex-column align-items-center">
|
||||||
|
<i class="bi bi-image text-info fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Reference Photo</strong>
|
||||||
|
<div class="small text-muted mt-1">Something you have</div>
|
||||||
|
<div class="small text-success mt-auto pt-2">~80-256 bits</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-lg-3 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100 d-flex flex-column align-items-center">
|
||||||
|
<i class="bi bi-chat-quote text-warning fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Passphrase</strong>
|
||||||
|
<div class="small text-muted mt-1">Something you know</div>
|
||||||
|
<div class="small text-success mt-auto pt-2">~44 bits (4 words)</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-lg-3 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100 d-flex flex-column align-items-center">
|
||||||
|
<i class="bi bi-123 text-danger fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Static PIN</strong>
|
||||||
|
<div class="small text-muted mt-1">Something you know</div>
|
||||||
|
<div class="small text-success mt-auto pt-2">~20 bits (6 digits)</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-lg-3 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100 d-flex flex-column align-items-center">
|
||||||
|
<i class="bi bi-key text-primary fs-2 d-block mb-2"></i>
|
||||||
|
<strong>RSA Key</strong>
|
||||||
|
<div class="small text-muted mt-1">Optional</div>
|
||||||
|
<div class="small text-success mt-auto pt-2">~128 bits</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="alert alert-secondary">
|
||||||
|
<i class="bi bi-calculator me-2"></i>
|
||||||
|
<strong>Combined entropy:</strong> 144-424+ bits. 128 bits is infeasible to brute force.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h6 class="mt-4">Key Derivation</h6>
|
||||||
|
<p>
|
||||||
|
{% if has_argon2 %}
|
||||||
|
<span class="badge bg-success me-1"><i class="bi bi-check"></i> Argon2id</span>
|
||||||
|
256MB memory cost. Memory-hard KDF defeats GPU/ASIC attacks.
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-warning text-dark me-1"><i class="bi bi-exclamation-triangle"></i> Argon2 Not Available</span>
|
||||||
|
Using PBKDF2-SHA512 with 600k iterations.
|
||||||
|
Install <code>argon2-cffi</code> for stronger security.
|
||||||
|
{% endif %}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Channel Keys (v4.0.0) -->
|
||||||
|
<div class="card mb-4" id="channel-keys">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0">
|
||||||
|
<i class="bi bi-broadcast me-2"></i>Channel Keys
|
||||||
|
<span class="badge bg-info ms-2">v4.1</span>
|
||||||
|
</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>
|
||||||
|
Channel keys provide <strong>deployment/group isolation</strong>. Messages encoded with one channel key
|
||||||
|
cannot be decoded with a different key, even if all other credentials match.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="row mt-4">
|
||||||
|
<!-- Auto Mode -->
|
||||||
|
<div class="col-md-4 mb-3">
|
||||||
|
<div class="card bg-dark h-100">
|
||||||
|
<div class="card-header text-center">
|
||||||
|
<i class="bi bi-gear-fill text-success fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Auto</strong>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="small mb-2">Uses server-configured key if available, otherwise public mode.</p>
|
||||||
|
<ul class="small mb-0">
|
||||||
|
<li>Server admin configures the shared key</li>
|
||||||
|
<li>All users share the same channel</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Public Mode -->
|
||||||
|
<div class="col-md-4 mb-3">
|
||||||
|
<div class="card bg-dark h-100">
|
||||||
|
<div class="card-header text-center">
|
||||||
|
<i class="bi bi-globe text-info fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Public</strong>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="small mb-2">No channel key. Compatible with other public installations.</p>
|
||||||
|
<ul class="small mb-0">
|
||||||
|
<li>Default if no server key configured</li>
|
||||||
|
<li>Anyone can decode (with credentials)</li>
|
||||||
|
<li>Interoperable between deployments</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Custom Mode -->
|
||||||
|
<div class="col-md-4 mb-3">
|
||||||
|
<div class="card bg-dark h-100">
|
||||||
|
<div class="card-header text-center">
|
||||||
|
<i class="bi bi-key-fill text-warning fs-2 d-block mb-2"></i>
|
||||||
|
<strong>Custom</strong>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="small mb-2">Your own group key. Share with recipients.</p>
|
||||||
|
<ul class="small mb-0">
|
||||||
|
<li>Format: <code>XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX</code></li>
|
||||||
|
<li>32 chars (128 bits entropy)</li>
|
||||||
|
<li>Private group communication</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if channel_configured %}
|
||||||
|
<div class="alert alert-success mt-3 mb-0">
|
||||||
|
<i class="bi bi-shield-lock me-2"></i>
|
||||||
|
<strong>This server has a channel key configured:</strong>
|
||||||
|
<code class="ms-2">{{ channel_fingerprint }}</code>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="alert alert-info mt-3 mb-0">
|
||||||
|
<i class="bi bi-info-circle me-2"></i>
|
||||||
|
This server is running in <strong>public mode</strong>.
|
||||||
|
Set <code>STEGASOO_CHANNEL_KEY</code> to enable server-wide channel isolation.
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Version History -->
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-clock-history me-2"></i>Version History</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<!-- Current Version - Prominent -->
|
||||||
|
<div class="alert alert-success mb-4">
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<span class="badge bg-success fs-6 me-3">v4.2.1</span>
|
||||||
|
<div>
|
||||||
|
<strong>Security & API improvements:</strong>
|
||||||
|
API key authentication,
|
||||||
|
TLS with self-signed certs,
|
||||||
|
CLI tools (compress, rotate, convert),
|
||||||
|
jpegtran lossless JPEG rotation
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Previous Versions - Accordion -->
|
||||||
|
<div class="accordion" id="versionAccordion">
|
||||||
|
<div class="accordion-item bg-dark">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed bg-dark text-light py-2" type="button"
|
||||||
|
data-bs-toggle="collapse" data-bs-target="#olderVersions">
|
||||||
|
<i class="bi bi-archive me-2"></i>Previous Versions
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="olderVersions" class="accordion-collapse collapse" data-bs-parent="#versionAccordion">
|
||||||
|
<div class="accordion-body p-0">
|
||||||
|
<table class="table table-dark table-sm small mb-0">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td width="80"><strong>4.1.7</strong></td>
|
||||||
|
<td>Progress bars for encode, mobile polish, release validation</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td width="80"><strong>4.1.1</strong></td>
|
||||||
|
<td>DCT RS format stability, Docker cleanup, first-boot wizard</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>4.1.0</strong></td>
|
||||||
|
<td>Reed-Solomon error correction for DCT, majority voting headers</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>4.0.0</strong></td>
|
||||||
|
<td>Channel keys, DCT default, subprocess isolation</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.2.0</td>
|
||||||
|
<td>Single passphrase, more default words</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.0.0</td>
|
||||||
|
<td>DCT mode, JPEG output, color preservation</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.x</td>
|
||||||
|
<td>Web UI, REST API, RSA keys, QR codes, file embedding</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.0.0</td>
|
||||||
|
<td>Initial release, CLI only, LSB mode</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-question-circle me-2"></i>Usage Guide</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<div class="accordion" id="usageAccordion">
|
||||||
|
<div class="accordion-item bg-dark">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button bg-dark text-light" type="button"
|
||||||
|
data-bs-toggle="collapse" data-bs-target="#setup">
|
||||||
|
<i class="bi bi-1-circle me-2"></i>Initial Setup
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="setup" class="accordion-collapse collapse show" data-bs-parent="#usageAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
<ol>
|
||||||
|
<li>Agree on a <strong>reference photo</strong> (never transmitted)</li>
|
||||||
|
<li>Go to <a href="/generate">Generate</a> to create credentials</li>
|
||||||
|
<li>Memorize passphrase and PIN</li>
|
||||||
|
<li>If using RSA, store the key file securely</li>
|
||||||
|
<li>Share credentials via secure channel</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="accordion-item bg-dark">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed bg-dark text-light" type="button"
|
||||||
|
data-bs-toggle="collapse" data-bs-target="#encoding">
|
||||||
|
<i class="bi bi-2-circle me-2"></i>Encoding
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="encoding" class="accordion-collapse collapse" data-bs-parent="#usageAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
<ol>
|
||||||
|
<li>Go to <a href="/encode">Encode</a></li>
|
||||||
|
<li>Upload <strong>reference photo</strong> and <strong>carrier image</strong></li>
|
||||||
|
<li>Choose mode:
|
||||||
|
<ul>
|
||||||
|
<li><strong>DCT</strong> (default): social media</li>
|
||||||
|
<li><strong>LSB</strong>: email, cloud, direct transfer</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Enter message or select file</li>
|
||||||
|
<li>Enter passphrase and PIN/key</li>
|
||||||
|
<li>Download stego image</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="accordion-item bg-dark">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed bg-dark text-light" type="button"
|
||||||
|
data-bs-toggle="collapse" data-bs-target="#decoding">
|
||||||
|
<i class="bi bi-3-circle me-2"></i>Decoding
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="decoding" class="accordion-collapse collapse" data-bs-parent="#usageAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
<ol>
|
||||||
|
<li>Go to <a href="/decode">Decode</a></li>
|
||||||
|
<li>Upload <strong>reference photo</strong></li>
|
||||||
|
<li>Upload <strong>stego image</strong></li>
|
||||||
|
<li>Enter passphrase and PIN/key</li>
|
||||||
|
<li>View message or download file</li>
|
||||||
|
</ol>
|
||||||
|
<div class="alert alert-info small mt-3 mb-0">
|
||||||
|
<i class="bi bi-magic me-2"></i>
|
||||||
|
Mode is auto-detected.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-speedometer2 me-2"></i>Limits & Specs</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<!-- Key Specs - Always Visible -->
|
||||||
|
<div class="row text-center mb-4">
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-file-earmark text-primary fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">Max Payload</div>
|
||||||
|
<strong>{{ max_payload_kb }} KB</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-image text-info fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">Max Carrier</div>
|
||||||
|
<strong>24 MP</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-soundwave text-warning fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">DCT Capacity</div>
|
||||||
|
<strong>~75 KB/MP</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-grid-3x3 text-success fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">LSB Capacity</div>
|
||||||
|
<strong>~375 KB/MP</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-shield-check text-danger fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">Encryption</div>
|
||||||
|
<strong>AES-256</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-4 col-lg-2 mb-3">
|
||||||
|
<div class="p-3 bg-dark rounded h-100">
|
||||||
|
<i class="bi bi-bandaid text-info fs-3 d-block mb-2"></i>
|
||||||
|
<div class="small text-muted">DCT ECC</div>
|
||||||
|
<strong>RS Code</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Error Correction Detail -->
|
||||||
|
<div class="alert alert-info small mb-4">
|
||||||
|
<i class="bi bi-info-circle me-2"></i>
|
||||||
|
<strong>Reed-Solomon Error Correction:</strong> DCT mode corrects up to 16 byte errors per 223-byte chunk.
|
||||||
|
Handles problematic carrier images with uniform areas that cause unstable DCT coefficients.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- More Specs - Accordion -->
|
||||||
|
<div class="accordion" id="specsAccordion">
|
||||||
|
<div class="accordion-item bg-dark">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed bg-dark text-light py-2" type="button"
|
||||||
|
data-bs-toggle="collapse" data-bs-target="#moreSpecs">
|
||||||
|
<i class="bi bi-list-ul me-2"></i>More Specifications
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="moreSpecs" class="accordion-collapse collapse" data-bs-parent="#specsAccordion">
|
||||||
|
<div class="accordion-body p-0">
|
||||||
|
<table class="table table-dark table-striped small mb-0">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-file-text me-2"></i>Max text</td>
|
||||||
|
<td><strong>2M characters</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-upload me-2"></i>Max upload</td>
|
||||||
|
<td><strong>30 MB</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-clock me-2"></i>File expiry</td>
|
||||||
|
<td><strong>10 min</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-key me-2"></i>PIN</td>
|
||||||
|
<td><strong>6-9 digits</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-shield me-2"></i>RSA keys</td>
|
||||||
|
<td><strong>2048, 3072 bit</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-chat-quote me-2"></i>Passphrase</td>
|
||||||
|
<td><strong>3-12 words</strong> (BIP-39)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-code me-2"></i>Python Version</td>
|
||||||
|
<td><strong>3.10-3.12</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><i class="bi bi-box me-2"></i>Built with</td>
|
||||||
|
<td>Flask, Pillow, NumPy, SciPy, jpegio, reedsolo, cryptography, argon2-cffi</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
@ -1,10 +1,681 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block title %}Decode — SooSeF{% endblock %}
|
|
||||||
|
{% block title %}Decode Message - Stegasoo{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2><i class="bi bi-unlock me-2"></i>Decode Message</h2>
|
<style>
|
||||||
<p class="text-muted">Extract a hidden message from a stego image.</p>
|
/* Accordion styling */
|
||||||
<div class="alert alert-info">
|
.step-accordion .accordion-button {
|
||||||
<i class="bi bi-info-circle me-2"></i>
|
background: rgba(35, 45, 55, 0.8);
|
||||||
Stegasoo decode UI will be migrated here from stegasoo's frontends/web/.
|
color: #fff;
|
||||||
|
padding: 0.75rem 1rem;
|
||||||
|
border-left: 3px solid rgba(255, 230, 153, 0.3);
|
||||||
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:hover {
|
||||||
|
background: rgba(45, 55, 65, 0.9);
|
||||||
|
border-left-color: rgba(255, 230, 153, 0.5);
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:not(.collapsed) {
|
||||||
|
background: linear-gradient(90deg, rgba(255, 230, 153, 0.12) 0%, rgba(40, 50, 60, 0.85) 40%, rgba(40, 50, 60, 0.85) 100%);
|
||||||
|
color: #fff;
|
||||||
|
box-shadow: inset 0 1px 0 rgba(255, 230, 153, 0.1);
|
||||||
|
border-left: 3px solid #ffe699;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button::after {
|
||||||
|
filter: brightness(0) invert(1);
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:not(.collapsed)::after {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-body {
|
||||||
|
background: rgba(30, 40, 50, 0.4);
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item {
|
||||||
|
border-color: rgba(255,255,255,0.1);
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item:first-child .accordion-button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item:last-child .accordion-button.collapsed {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.step-summary {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: rgba(255,255,255,0.5);
|
||||||
|
margin-left: auto;
|
||||||
|
padding-right: 1rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
.step-summary.has-content {
|
||||||
|
color: rgba(99, 179, 237, 0.8);
|
||||||
|
}
|
||||||
|
.step-title {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
.step-number {
|
||||||
|
background: rgba(246, 173, 85, 0.2);
|
||||||
|
color: #f6ad55;
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: bold;
|
||||||
|
border: 1px solid rgba(246, 173, 85, 0.3);
|
||||||
|
}
|
||||||
|
.step-number.complete {
|
||||||
|
background: rgba(72, 187, 120, 0.2);
|
||||||
|
color: #48bb78;
|
||||||
|
border-color: rgba(72, 187, 120, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Glowing passphrase input */
|
||||||
|
.passphrase-input {
|
||||||
|
background: rgba(30, 40, 50, 0.8) !important;
|
||||||
|
border: 2px solid rgba(99, 179, 237, 0.3) !important;
|
||||||
|
color: #63b3ed !important;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
padding: 12px 16px;
|
||||||
|
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
||||||
|
}
|
||||||
|
.passphrase-input:focus {
|
||||||
|
border-color: rgba(99, 179, 237, 0.8) !important;
|
||||||
|
box-shadow: 0 0 20px rgba(99, 179, 237, 0.4) !important;
|
||||||
|
}
|
||||||
|
.passphrase-input::placeholder {
|
||||||
|
color: rgba(99, 179, 237, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* PIN input */
|
||||||
|
.pin-input-container .form-control {
|
||||||
|
background: rgba(30, 40, 50, 0.8) !important;
|
||||||
|
border: 2px solid rgba(246, 173, 85, 0.3) !important;
|
||||||
|
color: #f6ad55 !important;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
letter-spacing: 3px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.pin-input-container .form-control:focus {
|
||||||
|
border-color: rgba(246, 173, 85, 0.8) !important;
|
||||||
|
box-shadow: 0 0 20px rgba(246, 173, 85, 0.4) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* QR Crop Animation - uses .qr-scan-container from style.css */
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-unlock-fill me-2"></i>Decode Secret Message or File</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body {% if not decoded_message and not decoded_file %}p-0{% endif %}">
|
||||||
|
{% if decoded_message %}
|
||||||
|
<!-- Text Message Result -->
|
||||||
|
<div class="alert alert-success">
|
||||||
|
<h6><i class="bi bi-check-circle me-2"></i>Message Decrypted Successfully!</h6>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<label class="form-label text-muted">Decoded Message: <small class="text-secondary">(click to copy)</small></label>
|
||||||
|
<div class="alert-message p-3 rounded bg-dark border border-secondary mb-3" id="decodedContent" style="white-space: pre-wrap; cursor: pointer; transition: border-color 0.2s;"
|
||||||
|
onclick="navigator.clipboard.writeText(this.innerText).then(() => { this.style.borderColor = '#198754'; this.dataset.origText = this.innerHTML; this.innerHTML = '<i class=\'bi bi-check-circle text-success\'></i> Copied to clipboard!'; setTimeout(() => { this.innerHTML = this.dataset.origText; this.style.borderColor = ''; }, 1500); }).catch(() => alert('Failed to copy'))"
|
||||||
|
onmouseover="this.style.borderColor = '#6c757d'"
|
||||||
|
onmouseout="this.style.borderColor = ''">{{ decoded_message }}</div>
|
||||||
|
|
||||||
|
<a href="/decode" class="btn btn-outline-light w-100">
|
||||||
|
<i class="bi bi-arrow-repeat me-2"></i>Decode Another
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{% elif decoded_file %}
|
||||||
|
<!-- File Result -->
|
||||||
|
<div class="alert alert-success">
|
||||||
|
<h6><i class="bi bi-check-circle me-2"></i>File Decrypted Successfully!</h6>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-center mb-4">
|
||||||
|
<i class="bi bi-file-earmark-check text-success" style="font-size: 4rem;"></i>
|
||||||
|
<h5 class="mt-3">{{ filename }}</h5>
|
||||||
|
<p class="text-muted mb-1">{{ file_size }}</p>
|
||||||
|
{% if mime_type %}
|
||||||
|
<small class="text-muted">Type: {{ mime_type }}</small>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="{{ url_for('decode_download', file_id=file_id) }}" class="btn btn-primary btn-lg w-100 mb-3">
|
||||||
|
<i class="bi bi-download me-2"></i>Download File
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="alert alert-warning small">
|
||||||
|
<i class="bi bi-clock me-1"></i>
|
||||||
|
<strong>File expires in 10 minutes.</strong> Download now.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="/decode" class="btn btn-outline-light w-100">
|
||||||
|
<i class="bi bi-arrow-repeat me-2"></i>Decode Another
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
<!-- Decode Form -->
|
||||||
|
<form method="POST" enctype="multipart/form-data" id="decodeForm">
|
||||||
|
|
||||||
|
<div class="accordion step-accordion" id="decodeAccordion">
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 1: CARRIER TYPE (v4.3.0)
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item" id="carrierTypeStep">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#stepCarrierType">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepCarrierTypeNumber">1</span>
|
||||||
|
<i class="bi bi-collection me-1"></i> Carrier Type
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepCarrierTypeSummary"></span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepCarrierType" class="accordion-collapse collapse show" data-bs-parent="#decodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
<input type="hidden" name="carrier_type" id="carrierTypeInput" value="image">
|
||||||
|
<div class="btn-group w-100" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="carrier_type_select" id="typeImage" value="image" checked>
|
||||||
|
<label class="btn btn-outline-secondary" for="typeImage">
|
||||||
|
<i class="bi bi-image me-1"></i> Image
|
||||||
|
</label>
|
||||||
|
<input type="radio" class="btn-check" name="carrier_type_select" id="typeAudio" value="audio"
|
||||||
|
{% if not has_audio %}disabled{% endif %}>
|
||||||
|
<label class="btn btn-outline-secondary {% if not has_audio %}disabled text-muted{% endif %}" for="typeAudio">
|
||||||
|
<i class="bi bi-music-note-beamed me-1"></i> Audio
|
||||||
|
{% if not has_audio %}<small class="d-block" style="font-size: 0.65rem;">(not available)</small>{% endif %}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 2: IMAGES & MODE
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#stepImages">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepImagesNumber">2</span>
|
||||||
|
<i class="bi bi-images me-1"></i> Reference, Carrier, Mode
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepImagesSummary">Select reference & stego</span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepImages" class="accordion-collapse collapse" data-bs-parent="#decodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<label class="form-label">
|
||||||
|
<i class="bi bi-image me-1"></i> Reference Photo
|
||||||
|
</label>
|
||||||
|
<div class="drop-zone scan-container" id="refDropZone">
|
||||||
|
<input type="file" name="reference_photo" accept="image/*" required id="refPhotoInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-cloud-arrow-up fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop image or click</span>
|
||||||
|
</div>
|
||||||
|
<img class="drop-zone-preview d-none" id="refPreview">
|
||||||
|
<div class="scan-overlay"><div class="scan-grid"></div><div class="scan-line"></div></div>
|
||||||
|
<div class="scan-corners">
|
||||||
|
<div class="scan-corner tl"></div><div class="scan-corner tr"></div>
|
||||||
|
<div class="scan-corner bl"></div><div class="scan-corner br"></div>
|
||||||
|
</div>
|
||||||
|
<div class="scan-data-panel">
|
||||||
|
<div class="scan-data-filename"><i class="bi bi-check-circle-fill"></i><span id="refFileName">image.jpg</span></div>
|
||||||
|
<div class="scan-data-row"><span class="scan-status-badge">Hash Acquired</span><span class="scan-data-value" id="refFileSize">--</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text">Same reference photo used for encoding</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<div id="imageStegoSection">
|
||||||
|
<label class="form-label">
|
||||||
|
<i class="bi bi-file-earmark-image me-1"></i> Stego Image
|
||||||
|
</label>
|
||||||
|
<div class="drop-zone pixel-container" id="stegoDropZone">
|
||||||
|
<input type="file" name="stego_image" accept="image/*" required id="stegoInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-cloud-arrow-up fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop image or click</span>
|
||||||
|
</div>
|
||||||
|
<img class="drop-zone-preview d-none" id="stegoPreview">
|
||||||
|
<div class="pixel-blocks"></div>
|
||||||
|
<div class="pixel-scan-line"></div>
|
||||||
|
<div class="pixel-corners">
|
||||||
|
<div class="pixel-corner tl"></div><div class="pixel-corner tr"></div>
|
||||||
|
<div class="pixel-corner bl"></div><div class="pixel-corner br"></div>
|
||||||
|
</div>
|
||||||
|
<div class="pixel-data-panel">
|
||||||
|
<div class="pixel-data-filename"><i class="bi bi-check-circle-fill"></i><span id="stegoFileName">image.png</span></div>
|
||||||
|
<div class="pixel-data-row"><span class="pixel-status-badge">Stego Loaded</span><span class="pixel-data-value" id="stegoFileSize">--</span></div>
|
||||||
|
<div class="pixel-dimensions" id="stegoDims">-- x -- px</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text">Image containing the hidden message</div>
|
||||||
|
</div>
|
||||||
|
<!-- Audio Stego (hidden by default) -->
|
||||||
|
<div class="d-none" id="audioStegoSection">
|
||||||
|
<label class="form-label">
|
||||||
|
<i class="bi bi-file-earmark-music me-1"></i> Stego Audio
|
||||||
|
</label>
|
||||||
|
<div class="drop-zone pixel-container" id="audioStegoDropZone">
|
||||||
|
<input type="file" name="stego_image" accept="audio/*" id="audioStegoInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-music-note-beamed fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop audio or click</span>
|
||||||
|
</div>
|
||||||
|
<div class="pixel-data-panel">
|
||||||
|
<div class="pixel-data-filename"><i class="bi bi-check-circle-fill"></i><span id="audioStegoFileName">audio.wav</span></div>
|
||||||
|
<div class="pixel-data-row"><span class="pixel-status-badge">Audio Loaded</span><span class="pixel-data-value" id="audioStegoFileSize">--</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text">Audio file containing the hidden message</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Extraction Mode -->
|
||||||
|
<div class="d-flex gap-2 align-items-center flex-wrap mb-2">
|
||||||
|
<div id="imageModeGroup">
|
||||||
|
<div class="btn-group" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAuto" value="auto" checked>
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeAuto"><i class="bi bi-magic me-1"></i>Auto</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeLsb" value="lsb">
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeLsb"><i class="bi bi-grid-3x3-gap me-1"></i>LSB</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeDct" value="dct" {% if not has_dct %}disabled{% endif %}>
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeDct" id="dctModeLabel"><i class="bi bi-soundwave me-1"></i>DCT</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Audio Extraction Modes (hidden by default) -->
|
||||||
|
<div class="d-none" id="audioModeGroup">
|
||||||
|
<div class="btn-group" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAudioAuto" value="audio_auto">
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeAudioAuto"><i class="bi bi-magic me-1"></i>Auto</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAudioLsb" value="audio_lsb">
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeAudioLsb"><i class="bi bi-grid-3x3-gap me-1"></i>LSB</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAudioSpread" value="audio_spread">
|
||||||
|
<label class="btn btn-outline-secondary text-nowrap" for="modeAudioSpread"><i class="bi bi-broadcast me-1"></i>Spread</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text" id="modeHint">
|
||||||
|
<i class="bi bi-lightning me-1"></i>Tries LSB first, then DCT
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 3: SECURITY
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#stepSecurity">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepSecurityNumber">3</span>
|
||||||
|
<i class="bi bi-shield-lock me-1"></i> Security
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepSecuritySummary">Passphrase & keys</span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepSecurity" class="accordion-collapse collapse" data-bs-parent="#decodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
|
||||||
|
<!-- Passphrase -->
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label"><i class="bi bi-chat-quote me-1"></i> Passphrase</label>
|
||||||
|
<input type="text" name="passphrase" class="form-control passphrase-input"
|
||||||
|
placeholder="e.g., apple forest thunder mountain" required id="passphraseInput">
|
||||||
|
<div class="form-text">The passphrase used during encoding</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="my-3 opacity-25">
|
||||||
|
<div class="small text-muted mb-2">Provide same factors used during encoding</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<!-- PIN -->
|
||||||
|
<div class="col-md-6 mb-2">
|
||||||
|
<div class="security-box h-100">
|
||||||
|
<label class="form-label"><i class="bi bi-123 me-1"></i> PIN</label>
|
||||||
|
<div class="input-group pin-input-container">
|
||||||
|
<input type="password" name="pin" class="form-control" id="pinInput" placeholder="••••••" maxlength="9">
|
||||||
|
<button class="btn btn-outline-secondary" type="button" data-toggle-password="pinInput">
|
||||||
|
<i class="bi bi-eye"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Channel -->
|
||||||
|
<div class="col-md-6 mb-2">
|
||||||
|
<div class="security-box h-100">
|
||||||
|
<label class="form-label"><i class="bi bi-broadcast me-1"></i> Channel</label>
|
||||||
|
<select class="form-select form-select-sm" name="channel_key" id="channelSelectDec">
|
||||||
|
<option value="auto" selected>Auto{% if channel_configured %} (Server){% endif %}</option>
|
||||||
|
<option value="none">Public</option>
|
||||||
|
{% if saved_channel_keys %}
|
||||||
|
<optgroup label="Saved Keys">
|
||||||
|
{% for key in saved_channel_keys %}
|
||||||
|
<option value="{{ key.channel_key }}">{{ key.name }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</optgroup>
|
||||||
|
{% endif %}
|
||||||
|
<option value="custom">Custom...</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Custom Channel Key -->
|
||||||
|
<div class="mb-3 d-none" id="channelCustomInputDec">
|
||||||
|
<div class="security-box">
|
||||||
|
<label class="form-label"><i class="bi bi-key me-1"></i> Custom Channel Key</label>
|
||||||
|
<div class="input-group">
|
||||||
|
<input type="text" name="channel_key_custom" class="form-control form-control-sm font-monospace"
|
||||||
|
placeholder="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" id="channelKeyInputDec">
|
||||||
|
<button class="btn btn-outline-secondary btn-sm" type="button" id="channelKeyScanDec" title="Scan QR"><i class="bi bi-camera"></i></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- RSA Key -->
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="security-box">
|
||||||
|
<label class="form-label"><i class="bi bi-file-earmark-lock me-1"></i> RSA Key <span class="text-muted">(if used)</span></label>
|
||||||
|
<div class="btn-group w-100 mb-2" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="rsa_input_method" id="rsaMethodFile" value="file" checked>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="rsaMethodFile"><i class="bi bi-file-earmark me-1"></i>.pem</label>
|
||||||
|
<input type="radio" class="btn-check" name="rsa_input_method" id="rsaMethodQr" value="qr">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="rsaMethodQr"><i class="bi bi-qr-code me-1"></i>QR</label>
|
||||||
|
</div>
|
||||||
|
<div id="rsaFileSection">
|
||||||
|
<input type="file" name="rsa_key" class="form-control form-control-sm" accept=".pem">
|
||||||
|
</div>
|
||||||
|
<div id="rsaQrSection" class="d-none d-flex flex-column">
|
||||||
|
<input type="hidden" name="rsa_key_pem" id="rsaKeyPem">
|
||||||
|
<div class="drop-zone p-2 w-100" id="qrDropZone">
|
||||||
|
<input type="file" name="rsa_key_qr" accept="image/*" id="rsaQrInput">
|
||||||
|
<div class="drop-zone-label text-center">
|
||||||
|
<i class="bi bi-qr-code-scan fs-5 d-block text-muted mb-1"></i>
|
||||||
|
<span class="text-muted small">Drop QR image</span>
|
||||||
|
</div>
|
||||||
|
<div class="qr-scan-container d-none" id="qrCropContainer">
|
||||||
|
<img class="qr-original" id="qrOriginal" alt="Original">
|
||||||
|
<img class="qr-cropped" id="qrCropped" alt="Cropped">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button type="button" class="btn btn-outline-secondary btn-sm w-100 mt-2" id="rsaQrWebcam">
|
||||||
|
<i class="bi bi-camera me-1"></i>Scan with Camera
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="input-group input-group-sm mt-2">
|
||||||
|
<input type="password" name="rsa_password" class="form-control" id="rsaPasswordInput" placeholder="Key password (if encrypted)">
|
||||||
|
<button class="btn btn-outline-secondary" type="button" data-toggle-password="rsaPasswordInput"><i class="bi bi-eye"></i></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Submit Button -->
|
||||||
|
<div class="p-3">
|
||||||
|
<button type="submit" class="btn btn-primary btn-lg w-100" id="decodeBtn">
|
||||||
|
<i class="bi bi-unlock me-2"></i>Decode
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if not decoded_message and not decoded_file %}
|
||||||
|
<!-- Troubleshooting Card -->
|
||||||
|
<div class="card mt-4">
|
||||||
|
<div class="card-body">
|
||||||
|
<h6 class="text-muted mb-3"><i class="bi bi-question-circle me-2"></i>Troubleshooting</h6>
|
||||||
|
<ul class="list-unstyled text-muted small mb-0">
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle-fill text-success me-1"></i>
|
||||||
|
Use the <strong>exact same reference photo</strong> (byte-for-byte identical)
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-check-circle-fill text-success me-1"></i>
|
||||||
|
Enter the <strong>exact passphrase</strong> used during encoding
|
||||||
|
</li>
|
||||||
|
<li class="mb-2">
|
||||||
|
<i class="bi bi-exclamation-triangle-fill text-warning me-1"></i>
|
||||||
|
Ensure the stego image hasn't been <strong>resized or recompressed</strong>
|
||||||
|
</li>
|
||||||
|
<li class="mb-0">
|
||||||
|
<i class="bi bi-info-circle-fill text-info me-1"></i>
|
||||||
|
If auto-detection fails, try specifying <strong>LSB or DCT mode</strong>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block scripts %}
|
||||||
|
<script src="{{ url_for('static', filename='js/soosef.js') }}"></script>
|
||||||
|
<script>
|
||||||
|
// ============================================================================
|
||||||
|
// MODE HINT - Dynamic text based on selected extraction mode
|
||||||
|
// ============================================================================
|
||||||
|
const modeHints = {
|
||||||
|
auto: { icon: 'lightning', text: 'Tries LSB first, then DCT' },
|
||||||
|
lsb: { icon: 'hdd', text: 'For email and direct transfers' },
|
||||||
|
dct: { icon: 'phone', text: 'For social media images' },
|
||||||
|
audio_auto: { icon: 'lightning', text: 'Tries LSB first, then Spread Spectrum' },
|
||||||
|
audio_lsb: { icon: 'grid-3x3-gap', text: 'Direct bit embedding in audio samples' },
|
||||||
|
audio_spread: { icon: 'broadcast', text: 'Noise-resistant spread spectrum encoding' }
|
||||||
|
};
|
||||||
|
|
||||||
|
document.querySelectorAll('input[name="embed_mode"]').forEach(radio => {
|
||||||
|
radio.addEventListener('change', function() {
|
||||||
|
const hint = document.getElementById('modeHint');
|
||||||
|
const data = modeHints[this.value];
|
||||||
|
if (hint && data) {
|
||||||
|
hint.innerHTML = `<i class="bi bi-${data.icon} me-1"></i>${data.text}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// ACCORDION SUMMARY UPDATES
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const carrierTypeInput = document.getElementById('carrierTypeInput');
|
||||||
|
|
||||||
|
function updateImagesSummary() {
|
||||||
|
const ref = document.getElementById('refPhotoInput')?.files[0];
|
||||||
|
const isAudio = carrierTypeInput?.value === 'audio';
|
||||||
|
const stego = isAudio
|
||||||
|
? document.getElementById('audioStegoInput')?.files[0]
|
||||||
|
: document.getElementById('stegoInput')?.files[0];
|
||||||
|
const mode = document.querySelector('input[name="embed_mode"]:checked')?.value?.toUpperCase() || 'AUTO';
|
||||||
|
const summary = document.getElementById('stepImagesSummary');
|
||||||
|
const stepNum = document.getElementById('stepImagesNumber');
|
||||||
|
|
||||||
|
if (ref && stego) {
|
||||||
|
const refName = ref.name.length > 12 ? ref.name.slice(0, 10) + '..' : ref.name;
|
||||||
|
const stegoName = stego.name.length > 12 ? stego.name.slice(0, 10) + '..' : stego.name;
|
||||||
|
summary.textContent = `${refName} + ${stegoName}, ${mode}`;
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
} else if (ref || stego) {
|
||||||
|
summary.textContent = ref ? ref.name.slice(0, 15) : stego.name.slice(0, 15);
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '2';
|
||||||
|
} else {
|
||||||
|
summary.textContent = isAudio ? 'Select reference & audio' : 'Select reference & stego';
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '2';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateSecuritySummary() {
|
||||||
|
const passphrase = document.getElementById('passphraseInput')?.value || '';
|
||||||
|
const pin = document.getElementById('pinInput')?.value || '';
|
||||||
|
const rsaFile = document.querySelector('input[name="rsa_key"]')?.files[0];
|
||||||
|
const rsaPem = document.getElementById('rsaKeyPem')?.value || '';
|
||||||
|
const summary = document.getElementById('stepSecuritySummary');
|
||||||
|
const stepNum = document.getElementById('stepSecurityNumber');
|
||||||
|
|
||||||
|
const parts = [];
|
||||||
|
if (passphrase.trim()) parts.push('passphrase');
|
||||||
|
if (pin) parts.push('PIN');
|
||||||
|
if (rsaFile || rsaPem) parts.push('RSA');
|
||||||
|
|
||||||
|
if (parts.length > 0) {
|
||||||
|
summary.textContent = parts.join(' + ');
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
if (passphrase.trim()) {
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
summary.textContent = 'Passphrase & keys';
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '3';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Attach listeners
|
||||||
|
document.getElementById('refPhotoInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.getElementById('stegoInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.getElementById('audioStegoInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.querySelectorAll('input[name="embed_mode"]').forEach(r => r.addEventListener('change', updateImagesSummary));
|
||||||
|
document.querySelectorAll('#audioModeGroup input[name="embed_mode"]').forEach(r => r.addEventListener('change', updateImagesSummary));
|
||||||
|
|
||||||
|
document.getElementById('passphraseInput')?.addEventListener('input', updateSecuritySummary);
|
||||||
|
document.getElementById('pinInput')?.addEventListener('input', updateSecuritySummary);
|
||||||
|
document.querySelector('input[name="rsa_key"]')?.addEventListener('change', updateSecuritySummary);
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// CARRIER TYPE TOGGLE (v4.3.0)
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const carrierTypeRadios = document.querySelectorAll('input[name="carrier_type_select"]');
|
||||||
|
const imageStegoSection = document.getElementById('imageStegoSection');
|
||||||
|
const audioStegoSection = document.getElementById('audioStegoSection');
|
||||||
|
const imageModeGroup = document.getElementById('imageModeGroup');
|
||||||
|
const audioModeGroup = document.getElementById('audioModeGroup');
|
||||||
|
const stepCarrierTypeSummary = document.getElementById('stepCarrierTypeSummary');
|
||||||
|
|
||||||
|
carrierTypeRadios.forEach(radio => {
|
||||||
|
radio.addEventListener('change', function() {
|
||||||
|
const isAudio = this.value === 'audio';
|
||||||
|
carrierTypeInput.value = this.value;
|
||||||
|
|
||||||
|
// Toggle stego sections
|
||||||
|
if (imageStegoSection) imageStegoSection.classList.toggle('d-none', isAudio);
|
||||||
|
if (audioStegoSection) audioStegoSection.classList.toggle('d-none', !isAudio);
|
||||||
|
|
||||||
|
// Toggle required attribute so hidden inputs don't block form submission
|
||||||
|
const imgStego = document.getElementById('stegoInput');
|
||||||
|
const audStego = document.getElementById('audioStegoInput');
|
||||||
|
if (imgStego) { if (isAudio) imgStego.removeAttribute('required'); else imgStego.setAttribute('required', ''); }
|
||||||
|
if (audStego) { if (isAudio) audStego.setAttribute('required', ''); else audStego.removeAttribute('required'); }
|
||||||
|
|
||||||
|
// Toggle mode groups
|
||||||
|
if (imageModeGroup) imageModeGroup.classList.toggle('d-none', isAudio);
|
||||||
|
if (audioModeGroup) audioModeGroup.classList.toggle('d-none', !isAudio);
|
||||||
|
|
||||||
|
// Update summary
|
||||||
|
if (stepCarrierTypeSummary) {
|
||||||
|
stepCarrierTypeSummary.textContent = isAudio ? 'Audio' : 'Image';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Select default mode
|
||||||
|
if (isAudio) {
|
||||||
|
const audioAuto = document.getElementById('modeAudioAuto');
|
||||||
|
if (audioAuto) audioAuto.checked = true;
|
||||||
|
} else {
|
||||||
|
const autoMode = document.getElementById('modeAuto');
|
||||||
|
if (autoMode) autoMode.checked = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear stego file selections
|
||||||
|
const stegoInput = document.getElementById('stegoInput');
|
||||||
|
const audioStegoInput = document.getElementById('audioStegoInput');
|
||||||
|
if (stegoInput) stegoInput.value = '';
|
||||||
|
if (audioStegoInput) audioStegoInput.value = '';
|
||||||
|
|
||||||
|
// Reset previews
|
||||||
|
document.getElementById('stegoPreview')?.classList.add('d-none');
|
||||||
|
|
||||||
|
// Update mode hint
|
||||||
|
const hint = document.getElementById('modeHint');
|
||||||
|
if (hint) {
|
||||||
|
if (isAudio) {
|
||||||
|
hint.innerHTML = '<i class="bi bi-lightning me-1"></i>Tries LSB first, then Spread Spectrum';
|
||||||
|
} else {
|
||||||
|
hint.innerHTML = '<i class="bi bi-lightning me-1"></i>Tries LSB first, then DCT';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateImagesSummary();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Audio stego file info display
|
||||||
|
const audioStegoInput = document.getElementById('audioStegoInput');
|
||||||
|
audioStegoInput?.addEventListener('change', function() {
|
||||||
|
if (this.files && this.files[0]) {
|
||||||
|
const file = this.files[0];
|
||||||
|
document.getElementById('audioStegoFileName').textContent = file.name;
|
||||||
|
document.getElementById('audioStegoFileSize').textContent = (file.size / 1024).toFixed(1) + ' KB';
|
||||||
|
updateImagesSummary();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// MODE SWITCHING
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
// Apply disabled styling to DCT if not available
|
||||||
|
if (document.getElementById('modeDct')?.disabled) {
|
||||||
|
document.getElementById('dctModeLabel')?.classList.add('disabled', 'text-muted');
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// LOADING STATE
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
Stegasoo.initFormLoading('decodeForm', 'decodeBtn', 'Decoding...');
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
@ -1,11 +1,889 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block title %}Encode — SooSeF{% endblock %}
|
|
||||||
|
{% block title %}Encode Message - Stegasoo{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2><i class="bi bi-lock me-2"></i>Encode Message</h2>
|
<style>
|
||||||
<p class="text-muted">Hide an encrypted message in an image or audio file.</p>
|
/* Accordion styling */
|
||||||
<div class="alert alert-info">
|
.step-accordion .accordion-button {
|
||||||
<i class="bi bi-info-circle me-2"></i>
|
background: rgba(35, 45, 55, 0.8);
|
||||||
Stegasoo encode UI will be migrated here from stegasoo's frontends/web/.
|
color: #fff;
|
||||||
Full hybrid auth (photo + passphrase + PIN) with async progress tracking.
|
padding: 0.75rem 1rem;
|
||||||
|
border-left: 3px solid rgba(255, 230, 153, 0.3);
|
||||||
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:hover {
|
||||||
|
background: rgba(45, 55, 65, 0.9);
|
||||||
|
border-left-color: rgba(255, 230, 153, 0.5);
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:not(.collapsed) {
|
||||||
|
background: linear-gradient(90deg, rgba(255, 230, 153, 0.12) 0%, rgba(40, 50, 60, 0.85) 40%, rgba(40, 50, 60, 0.85) 100%);
|
||||||
|
color: #fff;
|
||||||
|
box-shadow: inset 0 1px 0 rgba(255, 230, 153, 0.1);
|
||||||
|
border-left: 3px solid #ffe699;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button::after {
|
||||||
|
filter: brightness(0) invert(1);
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-button:not(.collapsed)::after {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-body {
|
||||||
|
background: rgba(30, 40, 50, 0.4);
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item {
|
||||||
|
border-color: rgba(255,255,255,0.1);
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item:first-child .accordion-button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.step-accordion .accordion-item:last-child .accordion-button.collapsed {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.step-summary {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: rgba(255,255,255,0.5);
|
||||||
|
margin-left: auto;
|
||||||
|
padding-right: 1rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
.step-summary.has-content {
|
||||||
|
color: rgba(99, 179, 237, 0.8);
|
||||||
|
}
|
||||||
|
.step-title {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
.step-number {
|
||||||
|
background: rgba(246, 173, 85, 0.2);
|
||||||
|
color: #f6ad55;
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: bold;
|
||||||
|
border: 1px solid rgba(246, 173, 85, 0.3);
|
||||||
|
}
|
||||||
|
.step-number.complete {
|
||||||
|
background: rgba(72, 187, 120, 0.2);
|
||||||
|
color: #48bb78;
|
||||||
|
border-color: rgba(72, 187, 120, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Glowing passphrase input */
|
||||||
|
.passphrase-input {
|
||||||
|
background: rgba(30, 40, 50, 0.8) !important;
|
||||||
|
border: 2px solid rgba(99, 179, 237, 0.3) !important;
|
||||||
|
color: #63b3ed !important;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
padding: 12px 16px;
|
||||||
|
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
||||||
|
}
|
||||||
|
.passphrase-input:focus {
|
||||||
|
border-color: rgba(99, 179, 237, 0.8) !important;
|
||||||
|
box-shadow: 0 0 20px rgba(99, 179, 237, 0.4) !important;
|
||||||
|
}
|
||||||
|
.passphrase-input::placeholder {
|
||||||
|
color: rgba(99, 179, 237, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* PIN input */
|
||||||
|
.pin-input-container .form-control {
|
||||||
|
background: rgba(30, 40, 50, 0.8) !important;
|
||||||
|
border: 2px solid rgba(246, 173, 85, 0.3) !important;
|
||||||
|
color: #f6ad55 !important;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
letter-spacing: 3px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.pin-input-container .form-control:focus {
|
||||||
|
border-color: rgba(246, 173, 85, 0.8) !important;
|
||||||
|
box-shadow: 0 0 20px rgba(246, 173, 85, 0.4) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* QR Crop Animation - uses .qr-scan-container from style.css */
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0"><i class="bi bi-lock-fill me-2"></i>Encode Secret Message or File</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body p-0">
|
||||||
|
<form method="POST" enctype="multipart/form-data" id="encodeForm">
|
||||||
|
|
||||||
|
<div class="accordion step-accordion" id="encodeAccordion">
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 1: CARRIER & MODE
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#stepImages">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepImagesNumber">1</span>
|
||||||
|
<i class="bi bi-images me-1"></i> Carrier & Mode
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepImagesSummary">Select reference & carrier</span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepImages" class="accordion-collapse collapse show" data-bs-parent="#encodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
|
||||||
|
<input type="hidden" name="carrier_type" id="carrierTypeInput" value="image">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<label class="form-label">
|
||||||
|
<i class="bi bi-image me-1"></i> Reference Photo
|
||||||
|
</label>
|
||||||
|
<div class="drop-zone scan-container" id="refDropZone">
|
||||||
|
<input type="file" name="reference_photo" accept="image/*" required id="refPhotoInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-cloud-arrow-up fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop image or click</span>
|
||||||
|
</div>
|
||||||
|
<img class="drop-zone-preview d-none" id="refPreview">
|
||||||
|
<div class="scan-overlay"><div class="scan-grid"></div><div class="scan-line"></div></div>
|
||||||
|
<div class="scan-corners">
|
||||||
|
<div class="scan-corner tl"></div><div class="scan-corner tr"></div>
|
||||||
|
<div class="scan-corner bl"></div><div class="scan-corner br"></div>
|
||||||
|
</div>
|
||||||
|
<div class="scan-data-panel">
|
||||||
|
<div class="scan-data-filename"><i class="bi bi-check-circle-fill"></i><span id="refFileName">image.jpg</span></div>
|
||||||
|
<div class="scan-data-row"><span class="scan-status-badge">Hash Acquired</span><span class="scan-data-value" id="refFileSize">--</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text">Secret photo both parties have</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6 mb-3">
|
||||||
|
<label class="form-label">
|
||||||
|
<i class="bi bi-file-earmark me-1"></i> Carrier File
|
||||||
|
</label>
|
||||||
|
<div id="imageCarrierSection">
|
||||||
|
<div class="drop-zone pixel-container" id="carrierDropZone">
|
||||||
|
<input type="file" name="carrier" accept="image/*" required id="carrierInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-cloud-arrow-up fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop image or click</span>
|
||||||
|
</div>
|
||||||
|
<img class="drop-zone-preview d-none" id="carrierPreview">
|
||||||
|
<div class="pixel-blocks"></div>
|
||||||
|
<div class="pixel-scan-line"></div>
|
||||||
|
<div class="pixel-corners">
|
||||||
|
<div class="pixel-corner tl"></div><div class="pixel-corner tr"></div>
|
||||||
|
<div class="pixel-corner bl"></div><div class="pixel-corner br"></div>
|
||||||
|
</div>
|
||||||
|
<div class="pixel-data-panel">
|
||||||
|
<div class="pixel-data-filename"><i class="bi bi-check-circle-fill"></i><span id="carrierFileName">image.jpg</span></div>
|
||||||
|
<div class="pixel-data-row"><span class="pixel-status-badge">Carrier Loaded</span><span class="pixel-data-value" id="carrierFileSize">--</span></div>
|
||||||
|
<div class="pixel-dimensions" id="carrierDims">-- x -- px</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text" id="imageCarrierHint">Image to hide your message in</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Audio Carrier (hidden by default, shown when audio type selected) -->
|
||||||
|
<div class="d-none" id="audioCarrierSection">
|
||||||
|
<div class="drop-zone pixel-container" id="audioCarrierDropZone">
|
||||||
|
<input type="file" name="audio_carrier" accept="audio/*" id="audioCarrierInput">
|
||||||
|
<div class="drop-zone-label">
|
||||||
|
<i class="bi bi-music-note-beamed fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop audio or click</span>
|
||||||
|
</div>
|
||||||
|
<div class="pixel-data-panel">
|
||||||
|
<div class="pixel-data-filename"><i class="bi bi-check-circle-fill"></i><span id="audioCarrierFileName">audio.wav</span></div>
|
||||||
|
<div class="pixel-data-row"><span class="pixel-status-badge">Audio Loaded</span><span class="pixel-data-value" id="audioCarrierFileSize">--</span></div>
|
||||||
|
<div class="pixel-dimensions" id="audioCarrierDuration">--:-- duration</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text" id="audioCarrierHint">Audio file to hide your message in</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Capacity Info -->
|
||||||
|
<div class="alert alert-info small d-none mb-3" id="capacityPanel">
|
||||||
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
|
<span><i class="bi bi-rulers me-1"></i><span id="carrierDimensions">-</span></span>
|
||||||
|
<span>
|
||||||
|
<span class="badge bg-warning text-dark me-1" id="dctCapacityBadge">DCT: -</span>
|
||||||
|
<span class="badge bg-primary" id="lsbCapacityBadge">LSB: -</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Audio Capacity Info (v4.3.0) -->
|
||||||
|
<div class="alert alert-info small d-none mb-3" id="audioCapacityPanel">
|
||||||
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
|
<span><i class="bi bi-music-note-beamed me-1"></i><span id="audioInfo">-</span></span>
|
||||||
|
<span>
|
||||||
|
<span class="badge bg-primary me-1" id="lsbAudioCapacityBadge">LSB: -</span>
|
||||||
|
<span class="badge bg-warning text-dark" id="spreadCapacityBadge">Spread: -</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mode & Carrier Type toggles (aligned row) -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div id="imageModeGroup">
|
||||||
|
<div class="d-flex gap-2 align-items-center flex-wrap mb-2">
|
||||||
|
<div class="btn-group btn-group-sm" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeDct" value="dct" {% if has_dct %}checked{% endif %} {% if not has_dct %}disabled{% endif %}>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap" for="modeDct" id="dctModeLabel"><i class="bi bi-soundwave me-1"></i>DCT</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeLsb" value="lsb" {% if not has_dct %}checked{% endif %}>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap" for="modeLsb"><i class="bi bi-grid-3x3-gap me-1"></i>LSB</label>
|
||||||
|
</div>
|
||||||
|
<span class="text-muted d-none d-sm-inline">|</span>
|
||||||
|
<span class="d-flex gap-2 align-items-center" id="outputOptions">
|
||||||
|
<div class="btn-group btn-group-sm" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="dct_color_mode" id="colorMode" value="color" checked>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="colorMode">Color</label>
|
||||||
|
<input type="radio" class="btn-check" name="dct_color_mode" id="grayMode" value="grayscale">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="grayMode" id="grayModeLabel">Gray</label>
|
||||||
|
</div>
|
||||||
|
<div class="btn-group btn-group-sm" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="dct_output_format" id="jpegFormat" value="jpeg" checked>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="jpegFormat" id="jpegFormatLabel">JPEG</label>
|
||||||
|
<input type="radio" class="btn-check" name="dct_output_format" id="pngFormat" value="png">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="pngFormat">PNG</label>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Audio Modes (hidden by default) -->
|
||||||
|
<div class="d-none" id="audioModeGroup">
|
||||||
|
<div class="btn-group btn-group-sm mb-2" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAudioLsb" value="audio_lsb">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap" for="modeAudioLsb"><i class="bi bi-grid-3x3-gap me-1"></i>LSB</label>
|
||||||
|
<input type="radio" class="btn-check" name="embed_mode" id="modeAudioSpread" value="audio_spread">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap" for="modeAudioSpread"><i class="bi bi-broadcast me-1"></i>Spread</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-text" id="modeHint">
|
||||||
|
<i class="bi bi-{% if has_dct %}phone{% else %}hdd{% endif %} me-1"></i>{% if has_dct %}Survives social media compression{% else %}Higher capacity for direct transfers{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="d-flex align-items-center gap-2">
|
||||||
|
<div class="btn-group btn-group-sm" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="carrier_type_select" id="typeImage" value="image" checked>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap" for="typeImage"><i class="bi bi-image me-1"></i>Image</label>
|
||||||
|
<input type="radio" class="btn-check" name="carrier_type_select" id="typeAudio" value="audio" {% if not has_audio %}disabled{% endif %}>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm text-nowrap {% if not has_audio %}disabled text-muted{% endif %}" for="typeAudio"><i class="bi bi-music-note-beamed me-1"></i>Audio</label>
|
||||||
|
</div>
|
||||||
|
{% if not has_audio %}
|
||||||
|
<span class="form-text text-warning mb-0" style="font-size: 0.7rem;"><i class="bi bi-exclamation-triangle me-1"></i>Requires numpy + soundfile</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 2: PAYLOAD
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#stepPayload">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepPayloadNumber">2</span>
|
||||||
|
<i class="bi bi-box me-1"></i> Payload
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepPayloadSummary">Message or file to hide</span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepPayload" class="accordion-collapse collapse" data-bs-parent="#encodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
|
||||||
|
<!-- Payload Type Toggle -->
|
||||||
|
<div class="btn-group w-100 mb-3" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="payload_type" id="payloadText" value="text" checked>
|
||||||
|
<label class="btn btn-outline-primary" for="payloadText">
|
||||||
|
<i class="bi bi-chat-left-text me-1"></i> Text Message
|
||||||
|
</label>
|
||||||
|
<input type="radio" class="btn-check" name="payload_type" id="payloadFile" value="file">
|
||||||
|
<label class="btn btn-outline-primary" for="payloadFile">
|
||||||
|
<i class="bi bi-file-earmark me-1"></i> File
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Text Message -->
|
||||||
|
<div id="textPayloadSection">
|
||||||
|
<textarea name="message" class="form-control" rows="4" id="messageInput"
|
||||||
|
placeholder="Enter your secret message here..."></textarea>
|
||||||
|
<div class="d-flex justify-content-between form-text">
|
||||||
|
<span><span id="charCount">0</span> chars</span>
|
||||||
|
<span id="charPercent" class="text-muted">0%</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- File Upload -->
|
||||||
|
<div class="d-none" id="filePayloadSection">
|
||||||
|
<div class="drop-zone" id="payloadDropZone">
|
||||||
|
<input type="file" name="payload_file" id="payloadFileInput">
|
||||||
|
<div class="drop-zone-label" id="payloadDropLabel">
|
||||||
|
<i class="bi bi-cloud-arrow-up fs-3 d-block mb-2 text-muted"></i>
|
||||||
|
<span class="text-muted">Drop file or click (max {{ max_payload_kb }} KB)</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="fileInfo" class="d-none mt-2 p-2 bg-dark rounded small">
|
||||||
|
<i class="bi bi-file-earmark-check text-success me-2"></i>
|
||||||
|
<span id="fileInfoName"></span>
|
||||||
|
<span class="text-muted">(<span id="fileInfoSize"></span>)</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ================================================================
|
||||||
|
STEP 3: SECURITY
|
||||||
|
================================================================ -->
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#stepSecurity">
|
||||||
|
<span class="step-title">
|
||||||
|
<span class="step-number" id="stepSecurityNumber">3</span>
|
||||||
|
<i class="bi bi-shield-lock me-1"></i> Security
|
||||||
|
</span>
|
||||||
|
<span class="step-summary" id="stepSecuritySummary">Passphrase & keys</span>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div id="stepSecurity" class="accordion-collapse collapse" data-bs-parent="#encodeAccordion">
|
||||||
|
<div class="accordion-body">
|
||||||
|
|
||||||
|
<!-- Passphrase -->
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label"><i class="bi bi-chat-quote me-1"></i> Passphrase</label>
|
||||||
|
<input type="text" name="passphrase" class="form-control passphrase-input"
|
||||||
|
placeholder="e.g., apple forest thunder mountain" required id="passphraseInput">
|
||||||
|
<div class="form-text">Your passphrase for this message</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="my-3 opacity-25">
|
||||||
|
<div class="small text-muted mb-2">Provide at least one: PIN or RSA Key</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<!-- PIN -->
|
||||||
|
<div class="col-md-6 mb-2">
|
||||||
|
<div class="security-box h-100">
|
||||||
|
<label class="form-label"><i class="bi bi-123 me-1"></i> PIN</label>
|
||||||
|
<div class="input-group pin-input-container">
|
||||||
|
<input type="password" name="pin" class="form-control" id="pinInput" placeholder="••••••" maxlength="9">
|
||||||
|
<button class="btn btn-outline-secondary" type="button" data-toggle-password="pinInput">
|
||||||
|
<i class="bi bi-eye"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Channel -->
|
||||||
|
<div class="col-md-6 mb-2">
|
||||||
|
<div class="security-box h-100">
|
||||||
|
<label class="form-label"><i class="bi bi-broadcast me-1"></i> Channel</label>
|
||||||
|
<select class="form-select form-select-sm" name="channel_key" id="channelSelect">
|
||||||
|
<option value="auto" selected>Auto{% if channel_configured %} (Server){% endif %}</option>
|
||||||
|
<option value="none">Public</option>
|
||||||
|
{% if saved_channel_keys %}
|
||||||
|
<optgroup label="Saved Keys">
|
||||||
|
{% for key in saved_channel_keys %}
|
||||||
|
<option value="{{ key.channel_key }}">{{ key.name }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</optgroup>
|
||||||
|
{% endif %}
|
||||||
|
<option value="custom">Custom...</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Custom Channel Key -->
|
||||||
|
<div class="mb-3 d-none" id="channelCustomInput">
|
||||||
|
<div class="security-box">
|
||||||
|
<label class="form-label"><i class="bi bi-key me-1"></i> Custom Channel Key</label>
|
||||||
|
<div class="input-group">
|
||||||
|
<input type="text" name="channel_key_custom" class="form-control form-control-sm font-monospace"
|
||||||
|
placeholder="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" id="channelKeyInput">
|
||||||
|
<button class="btn btn-outline-secondary btn-sm" type="button" id="channelKeyScan" title="Scan QR"><i class="bi bi-camera"></i></button>
|
||||||
|
<button class="btn btn-outline-secondary btn-sm" type="button" id="channelKeyGenerate" title="Generate"><i class="bi bi-shuffle"></i></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- RSA Key -->
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="security-box">
|
||||||
|
<label class="form-label"><i class="bi bi-file-earmark-lock me-1"></i> RSA Key <span class="text-muted">(optional)</span></label>
|
||||||
|
<div class="btn-group w-100 mb-2" role="group">
|
||||||
|
<input type="radio" class="btn-check" name="rsa_input_method" id="rsaMethodFile" value="file" checked>
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="rsaMethodFile"><i class="bi bi-file-earmark me-1"></i>.pem</label>
|
||||||
|
<input type="radio" class="btn-check" name="rsa_input_method" id="rsaMethodQr" value="qr">
|
||||||
|
<label class="btn btn-outline-secondary btn-sm" for="rsaMethodQr"><i class="bi bi-qr-code me-1"></i>QR</label>
|
||||||
|
</div>
|
||||||
|
<div id="rsaFileSection">
|
||||||
|
<input type="file" name="rsa_key" class="form-control form-control-sm" accept=".pem">
|
||||||
|
</div>
|
||||||
|
<div id="rsaQrSection" class="d-none d-flex flex-column">
|
||||||
|
<input type="hidden" name="rsa_key_pem" id="rsaKeyPem">
|
||||||
|
<div class="drop-zone p-2 w-100" id="qrDropZone">
|
||||||
|
<input type="file" name="rsa_key_qr" accept="image/*" id="rsaQrInput">
|
||||||
|
<div class="drop-zone-label text-center">
|
||||||
|
<i class="bi bi-qr-code-scan fs-5 d-block text-muted mb-1"></i>
|
||||||
|
<span class="text-muted small">Drop QR image</span>
|
||||||
|
</div>
|
||||||
|
<div class="qr-scan-container d-none" id="qrCropContainer">
|
||||||
|
<img class="qr-original" id="qrOriginal" alt="Original">
|
||||||
|
<img class="qr-cropped" id="qrCropped" alt="Cropped">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button type="button" class="btn btn-outline-secondary btn-sm w-100 mt-2" id="rsaQrWebcam">
|
||||||
|
<i class="bi bi-camera me-1"></i>Scan with Camera
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="input-group input-group-sm mt-2">
|
||||||
|
<input type="password" name="rsa_password" class="form-control" id="rsaPasswordInput" placeholder="Key password (if encrypted)">
|
||||||
|
<button class="btn btn-outline-secondary" type="button" data-toggle-password="rsaPasswordInput"><i class="bi bi-eye"></i></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Submit Button -->
|
||||||
|
<div class="p-3">
|
||||||
|
<button type="submit" class="btn btn-primary btn-lg w-100" id="encodeBtn">
|
||||||
|
<i class="bi bi-lock me-2"></i>Encode
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Footer info -->
|
||||||
|
<div class="row text-center text-muted small mt-3">
|
||||||
|
<div class="col-4">
|
||||||
|
<i class="bi bi-shield-check fs-5 d-block mb-1 text-success"></i>
|
||||||
|
AES-256-GCM
|
||||||
|
</div>
|
||||||
|
<div class="col-4">
|
||||||
|
<i class="bi bi-shuffle fs-5 d-block mb-1 text-info"></i>
|
||||||
|
Random Pixels
|
||||||
|
</div>
|
||||||
|
<div class="col-4">
|
||||||
|
<i class="bi bi-eye-slash fs-5 d-block mb-1 text-warning"></i>
|
||||||
|
Covertly Embedded
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block scripts %}
|
||||||
|
<script src="{{ url_for('static', filename='js/soosef.js') }}"></script>
|
||||||
|
<script>
|
||||||
|
// ============================================================================
|
||||||
|
// MODE HINT - Dynamic text based on selected embedding mode
|
||||||
|
// ============================================================================
|
||||||
|
const modeHints = {
|
||||||
|
dct: { icon: 'phone', text: 'Survives social media compression' },
|
||||||
|
lsb: { icon: 'hdd', text: 'Higher capacity, outputs Color PNG' },
|
||||||
|
audio_lsb: { icon: 'soundwave', text: 'Highest capacity, lossless carriers only (WAV/FLAC)' },
|
||||||
|
audio_spread: { icon: 'broadcast', text: 'Lower capacity, survives lossy conversion (MP3/AAC)' }
|
||||||
|
};
|
||||||
|
|
||||||
|
document.querySelectorAll('input[name="embed_mode"]').forEach(radio => {
|
||||||
|
radio.addEventListener('change', function() {
|
||||||
|
const hint = document.getElementById('modeHint');
|
||||||
|
const data = modeHints[this.value];
|
||||||
|
if (hint && data) {
|
||||||
|
hint.innerHTML = `<i class="bi bi-${data.icon} me-1"></i>${data.text}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// CARRIER TYPE TOGGLE (v4.3.0)
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const carrierTypeRadios = document.querySelectorAll('input[name="carrier_type_select"]');
|
||||||
|
const carrierTypeInput = document.getElementById('carrierTypeInput');
|
||||||
|
const imageCarrierSection = document.getElementById('imageCarrierSection');
|
||||||
|
const audioCarrierSection = document.getElementById('audioCarrierSection');
|
||||||
|
const imageModeGroup = document.getElementById('imageModeGroup');
|
||||||
|
const audioModeGroup = document.getElementById('audioModeGroup');
|
||||||
|
const capacityPanel = document.getElementById('capacityPanel');
|
||||||
|
const audioCapacityPanel = document.getElementById('audioCapacityPanel');
|
||||||
|
|
||||||
|
carrierTypeRadios.forEach(radio => {
|
||||||
|
radio.addEventListener('change', function() {
|
||||||
|
const isAudio = this.value === 'audio';
|
||||||
|
carrierTypeInput.value = this.value;
|
||||||
|
|
||||||
|
// Toggle carrier sections
|
||||||
|
if (imageCarrierSection) imageCarrierSection.classList.toggle('d-none', isAudio);
|
||||||
|
if (audioCarrierSection) audioCarrierSection.classList.toggle('d-none', !isAudio);
|
||||||
|
|
||||||
|
// Toggle required attribute so hidden inputs don't block form submission
|
||||||
|
const imgCarrier = document.getElementById('carrierInput');
|
||||||
|
const audCarrier = document.getElementById('audioCarrierInput');
|
||||||
|
if (imgCarrier) { if (isAudio) imgCarrier.removeAttribute('required'); else imgCarrier.setAttribute('required', ''); }
|
||||||
|
if (audCarrier) { if (isAudio) audCarrier.setAttribute('required', ''); else audCarrier.removeAttribute('required'); }
|
||||||
|
|
||||||
|
// Toggle mode groups
|
||||||
|
if (imageModeGroup) imageModeGroup.classList.toggle('d-none', isAudio);
|
||||||
|
if (audioModeGroup) audioModeGroup.classList.toggle('d-none', !isAudio);
|
||||||
|
|
||||||
|
// Toggle capacity panels
|
||||||
|
if (capacityPanel) capacityPanel.classList.add('d-none');
|
||||||
|
if (audioCapacityPanel) audioCapacityPanel.classList.add('d-none');
|
||||||
|
|
||||||
|
// Select default mode for the active type and update hint
|
||||||
|
if (isAudio) {
|
||||||
|
const audioLsb = document.getElementById('modeAudioLsb');
|
||||||
|
if (audioLsb) { audioLsb.checked = true; audioLsb.dispatchEvent(new Event('change')); }
|
||||||
|
} else {
|
||||||
|
// Reset to DCT if available, else LSB
|
||||||
|
const dctRadio = document.getElementById('modeDct');
|
||||||
|
const lsbRadio = document.getElementById('modeLsb');
|
||||||
|
if (dctRadio && !dctRadio.disabled) {
|
||||||
|
dctRadio.checked = true; dctRadio.dispatchEvent(new Event('change'));
|
||||||
|
} else if (lsbRadio) {
|
||||||
|
lsbRadio.checked = true; lsbRadio.dispatchEvent(new Event('change'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear carrier file selections
|
||||||
|
const carrierInput = document.getElementById('carrierInput');
|
||||||
|
const audioCarrierInput = document.getElementById('audioCarrierInput');
|
||||||
|
if (carrierInput) carrierInput.value = '';
|
||||||
|
if (audioCarrierInput) audioCarrierInput.value = '';
|
||||||
|
|
||||||
|
// Reset previews
|
||||||
|
document.getElementById('carrierPreview')?.classList.add('d-none');
|
||||||
|
|
||||||
|
// Update step title
|
||||||
|
const stepImagesTitle = document.querySelector('#stepImages')?.closest('.accordion-item')?.querySelector('.accordion-button .step-title');
|
||||||
|
if (stepImagesTitle) {
|
||||||
|
const icon = stepImagesTitle.querySelector('i:not(.step-number i)');
|
||||||
|
const textNode = stepImagesTitle.childNodes[stepImagesTitle.childNodes.length - 1];
|
||||||
|
if (icon) {
|
||||||
|
icon.className = isAudio ? 'bi bi-music-note-beamed me-1' : 'bi bi-images me-1';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateImagesSummary();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Audio carrier file change handler
|
||||||
|
const audioCarrierInput = document.getElementById('audioCarrierInput');
|
||||||
|
audioCarrierInput?.addEventListener('change', function() {
|
||||||
|
if (this.files && this.files[0]) {
|
||||||
|
const file = this.files[0];
|
||||||
|
document.getElementById('audioCarrierFileName').textContent = file.name;
|
||||||
|
document.getElementById('audioCarrierFileSize').textContent = (file.size / 1024).toFixed(1) + ' KB';
|
||||||
|
|
||||||
|
// Fetch audio capacity
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('carrier', file);
|
||||||
|
fetch('/api/audio-capacity', { method: 'POST', body: formData })
|
||||||
|
.then(r => r.json())
|
||||||
|
.then(data => {
|
||||||
|
if (data.error) return;
|
||||||
|
const info = `${data.format || 'Audio'} · ${data.sample_rate}Hz · ${data.channels}ch · ${data.duration}s`;
|
||||||
|
document.getElementById('audioInfo').textContent = info;
|
||||||
|
document.getElementById('lsbAudioCapacityBadge').textContent = `LSB: ${(data.lsb_capacity / 1024).toFixed(1)} KB`;
|
||||||
|
document.getElementById('spreadCapacityBadge').textContent = `Spread: ${(data.spread_capacity / 1024).toFixed(1)} KB`;
|
||||||
|
document.getElementById('audioCapacityPanel')?.classList.remove('d-none');
|
||||||
|
if (data.duration) {
|
||||||
|
document.getElementById('audioCarrierDuration').textContent = data.duration + 's duration';
|
||||||
|
}
|
||||||
|
}).catch(() => {});
|
||||||
|
|
||||||
|
// Trigger the drop zone animation
|
||||||
|
const dropZone = document.getElementById('audioCarrierDropZone');
|
||||||
|
if (dropZone) {
|
||||||
|
dropZone.classList.add('has-file');
|
||||||
|
}
|
||||||
|
|
||||||
|
updateImagesSummary();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// ACCORDION SUMMARY UPDATES
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
function updateImagesSummary() {
|
||||||
|
const ref = document.getElementById('refPhotoInput')?.files[0];
|
||||||
|
const isAudio = carrierTypeInput?.value === 'audio';
|
||||||
|
const carrier = isAudio
|
||||||
|
? document.getElementById('audioCarrierInput')?.files[0]
|
||||||
|
: document.getElementById('carrierInput')?.files[0];
|
||||||
|
const mode = document.querySelector('input[name="embed_mode"]:checked')?.value?.toUpperCase() || 'LSB';
|
||||||
|
const summary = document.getElementById('stepImagesSummary');
|
||||||
|
const stepNum = document.getElementById('stepImagesNumber');
|
||||||
|
|
||||||
|
if (ref && carrier) {
|
||||||
|
const refName = ref.name.length > 12 ? ref.name.slice(0, 10) + '..' : ref.name;
|
||||||
|
const carName = carrier.name.length > 12 ? carrier.name.slice(0, 10) + '..' : carrier.name;
|
||||||
|
summary.textContent = `${refName} + ${carName}, ${mode}`;
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
} else if (ref || carrier) {
|
||||||
|
summary.textContent = ref ? ref.name.slice(0, 15) : carrier.name.slice(0, 15);
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '1';
|
||||||
|
} else {
|
||||||
|
summary.textContent = isAudio ? 'Select reference & audio' : 'Select reference & carrier';
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '1';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePayloadSummary() {
|
||||||
|
const isText = document.getElementById('payloadText')?.checked;
|
||||||
|
const message = document.getElementById('messageInput')?.value || '';
|
||||||
|
const file = document.getElementById('payloadFileInput')?.files[0];
|
||||||
|
const summary = document.getElementById('stepPayloadSummary');
|
||||||
|
const stepNum = document.getElementById('stepPayloadNumber');
|
||||||
|
|
||||||
|
if (isText && message.trim()) {
|
||||||
|
const preview = message.trim().slice(0, 25) + (message.length > 25 ? '...' : '');
|
||||||
|
summary.textContent = `"${preview}"`;
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
} else if (!isText && file) {
|
||||||
|
summary.textContent = file.name.slice(0, 20);
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
} else {
|
||||||
|
summary.textContent = 'Message or file to hide';
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '2';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateSecuritySummary() {
|
||||||
|
const passphrase = document.getElementById('passphraseInput')?.value || '';
|
||||||
|
const pin = document.getElementById('pinInput')?.value || '';
|
||||||
|
const rsaFile = document.querySelector('input[name="rsa_key"]')?.files[0];
|
||||||
|
const rsaPem = document.getElementById('rsaKeyPem')?.value || '';
|
||||||
|
const summary = document.getElementById('stepSecuritySummary');
|
||||||
|
const stepNum = document.getElementById('stepSecurityNumber');
|
||||||
|
|
||||||
|
const parts = [];
|
||||||
|
if (passphrase.trim()) parts.push('passphrase');
|
||||||
|
if (pin) parts.push('PIN');
|
||||||
|
if (rsaFile || rsaPem) parts.push('RSA');
|
||||||
|
|
||||||
|
if (parts.length > 0) {
|
||||||
|
summary.textContent = parts.join(' + ');
|
||||||
|
summary.classList.add('has-content');
|
||||||
|
if (passphrase.trim() && (pin || rsaFile || rsaPem)) {
|
||||||
|
stepNum.classList.add('complete');
|
||||||
|
stepNum.innerHTML = '<i class="bi bi-check"></i>';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
summary.textContent = 'Passphrase & keys';
|
||||||
|
summary.classList.remove('has-content');
|
||||||
|
stepNum.classList.remove('complete');
|
||||||
|
stepNum.textContent = '3';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Attach listeners
|
||||||
|
document.getElementById('refPhotoInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.getElementById('carrierInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.getElementById('audioCarrierInput')?.addEventListener('change', updateImagesSummary);
|
||||||
|
document.querySelectorAll('input[name="embed_mode"]').forEach(r => r.addEventListener('change', updateImagesSummary));
|
||||||
|
document.querySelectorAll('#audioModeGroup input[name="embed_mode"]').forEach(r => r.addEventListener('change', updateImagesSummary));
|
||||||
|
|
||||||
|
document.getElementById('messageInput')?.addEventListener('input', updatePayloadSummary);
|
||||||
|
document.getElementById('payloadFileInput')?.addEventListener('change', updatePayloadSummary);
|
||||||
|
document.querySelectorAll('input[name="payload_type"]').forEach(r => r.addEventListener('change', updatePayloadSummary));
|
||||||
|
|
||||||
|
document.getElementById('passphraseInput')?.addEventListener('input', updateSecuritySummary);
|
||||||
|
document.getElementById('pinInput')?.addEventListener('input', updateSecuritySummary);
|
||||||
|
document.querySelector('input[name="rsa_key"]')?.addEventListener('change', updateSecuritySummary);
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// PAYLOAD TYPE SWITCHING
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const payloadTextRadio = document.getElementById('payloadText');
|
||||||
|
const payloadFileRadio = document.getElementById('payloadFile');
|
||||||
|
const textSection = document.getElementById('textPayloadSection');
|
||||||
|
const fileSection = document.getElementById('filePayloadSection');
|
||||||
|
const messageInput = document.getElementById('messageInput');
|
||||||
|
const payloadFileInput = document.getElementById('payloadFileInput');
|
||||||
|
|
||||||
|
function updatePayloadSection() {
|
||||||
|
const isText = payloadTextRadio.checked;
|
||||||
|
textSection.classList.toggle('d-none', !isText);
|
||||||
|
fileSection.classList.toggle('d-none', isText);
|
||||||
|
if (isText) {
|
||||||
|
messageInput.setAttribute('required', '');
|
||||||
|
payloadFileInput.removeAttribute('required');
|
||||||
|
} else {
|
||||||
|
messageInput.removeAttribute('required');
|
||||||
|
payloadFileInput.setAttribute('required', '');
|
||||||
|
}
|
||||||
|
updatePayloadSummary();
|
||||||
|
}
|
||||||
|
|
||||||
|
payloadTextRadio?.addEventListener('change', updatePayloadSection);
|
||||||
|
payloadFileRadio?.addEventListener('change', updatePayloadSection);
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// FILE INFO DISPLAY
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
payloadFileInput?.addEventListener('change', function() {
|
||||||
|
const fileInfo = document.getElementById('fileInfo');
|
||||||
|
const fileInfoName = document.getElementById('fileInfoName');
|
||||||
|
const fileInfoSize = document.getElementById('fileInfoSize');
|
||||||
|
if (this.files && this.files[0]) {
|
||||||
|
const file = this.files[0];
|
||||||
|
fileInfo?.classList.remove('d-none');
|
||||||
|
if (fileInfoName) fileInfoName.textContent = file.name;
|
||||||
|
if (fileInfoSize) fileInfoSize.textContent = (file.size / 1024).toFixed(1) + ' KB';
|
||||||
|
const label = document.getElementById('payloadDropLabel');
|
||||||
|
if (label) label.innerHTML = `<i class="bi bi-check-circle text-success me-1"></i>${file.name}`;
|
||||||
|
} else {
|
||||||
|
fileInfo?.classList.add('d-none');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// CHARACTER COUNTER
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
messageInput?.addEventListener('input', function() {
|
||||||
|
const count = this.value.length;
|
||||||
|
document.getElementById('charCount').textContent = count.toLocaleString();
|
||||||
|
document.getElementById('charPercent').textContent = Math.round((count / 250000) * 100) + '%';
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// CAPACITY FETCH
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const carrierInput = document.getElementById('carrierInput');
|
||||||
|
carrierInput?.addEventListener('change', function() {
|
||||||
|
if (this.files && this.files[0]) {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('carrier', this.files[0]);
|
||||||
|
fetch('/api/compare-capacity', { method: 'POST', body: formData })
|
||||||
|
.then(r => r.json())
|
||||||
|
.then(data => {
|
||||||
|
if (data.error) return;
|
||||||
|
document.getElementById('carrierDimensions').textContent = `${data.width} x ${data.height}`;
|
||||||
|
document.getElementById('lsbCapacityBadge').textContent = `LSB: ${data.lsb.capacity_kb} KB`;
|
||||||
|
document.getElementById('dctCapacityBadge').textContent = `DCT: ${data.dct.capacity_kb} KB`;
|
||||||
|
document.getElementById('capacityPanel')?.classList.remove('d-none');
|
||||||
|
}).catch(() => {});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// MODE SWITCHING
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
const modeRadios = document.querySelectorAll('input[name="embed_mode"]');
|
||||||
|
const dctModeLabel = document.getElementById('dctModeLabel');
|
||||||
|
const grayModeInput = document.getElementById('grayMode');
|
||||||
|
const grayModeLabel = document.getElementById('grayModeLabel');
|
||||||
|
const jpegFormatInput = document.getElementById('jpegFormat');
|
||||||
|
const jpegFormatLabel = document.getElementById('jpegFormatLabel');
|
||||||
|
const colorModeInput = document.getElementById('colorMode');
|
||||||
|
const pngFormatInput = document.getElementById('pngFormat');
|
||||||
|
|
||||||
|
// Apply disabled styling to DCT if not available
|
||||||
|
if (document.getElementById('modeDct')?.disabled) {
|
||||||
|
dctModeLabel?.classList.add('disabled', 'text-muted');
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateOutputOptions(mode) {
|
||||||
|
const isLsb = mode === 'lsb';
|
||||||
|
if (isLsb) {
|
||||||
|
// LSB only supports Color + PNG
|
||||||
|
colorModeInput.checked = true;
|
||||||
|
pngFormatInput.checked = true;
|
||||||
|
grayModeInput.disabled = true;
|
||||||
|
jpegFormatInput.disabled = true;
|
||||||
|
grayModeLabel?.classList.add('disabled', 'text-muted');
|
||||||
|
jpegFormatLabel?.classList.add('disabled', 'text-muted');
|
||||||
|
} else {
|
||||||
|
// DCT: reset to defaults (Color + JPEG) and enable all
|
||||||
|
colorModeInput.checked = true;
|
||||||
|
jpegFormatInput.checked = true;
|
||||||
|
grayModeInput.disabled = false;
|
||||||
|
jpegFormatInput.disabled = false;
|
||||||
|
grayModeLabel?.classList.remove('disabled', 'text-muted');
|
||||||
|
jpegFormatLabel?.classList.remove('disabled', 'text-muted');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
modeRadios.forEach(radio => {
|
||||||
|
radio.addEventListener('change', () => updateOutputOptions(radio.value));
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initialize output options based on initial mode
|
||||||
|
const initialMode = document.querySelector('input[name="embed_mode"]:checked')?.value || 'lsb';
|
||||||
|
updateOutputOptions(initialMode);
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// DUPLICATE FILE CHECK
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
function checkDuplicateFiles() {
|
||||||
|
const refInput = document.querySelector('input[name="reference_photo"]');
|
||||||
|
const carInput = document.querySelector('input[name="carrier"]');
|
||||||
|
if (refInput?.files[0] && carInput?.files[0]) {
|
||||||
|
if (refInput.files[0].name === carInput.files[0].name && refInput.files[0].size === carInput.files[0].size) {
|
||||||
|
alert("You cannot use the same image for both Reference and Carrier!");
|
||||||
|
carInput.value = '';
|
||||||
|
document.getElementById('carrierPreview')?.classList.add('d-none');
|
||||||
|
updateImagesSummary();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelector('input[name="reference_photo"]')?.addEventListener('change', checkDuplicateFiles);
|
||||||
|
document.querySelector('input[name="carrier"]')?.addEventListener('change', checkDuplicateFiles);
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
|
|||||||
242
frontends/web/templates/stego/encode_result.html
Normal file
242
frontends/web/templates/stego/encode_result.html
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}Encode Success - Stegasoo{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header bg-success text-white">
|
||||||
|
<h5 class="mb-0">
|
||||||
|
<i class="bi bi-check-circle me-2"></i>Encoding Successful!
|
||||||
|
</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-body text-center">
|
||||||
|
{% if carrier_type == 'audio' %}
|
||||||
|
<!-- Audio Preview -->
|
||||||
|
<div class="my-4">
|
||||||
|
<div class="text-center">
|
||||||
|
<i class="bi bi-music-note-beamed text-success" style="font-size: 4rem;"></i>
|
||||||
|
<div class="mt-2">
|
||||||
|
<audio controls src="{{ url_for('encode_file_route', file_id=file_id) }}" class="w-100" style="max-width: 400px;"></audio>
|
||||||
|
</div>
|
||||||
|
<div class="mt-2 small text-muted">
|
||||||
|
<i class="bi bi-music-note-beamed me-1"></i>Encoded Audio Preview
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="my-4">
|
||||||
|
{% if thumbnail_url %}
|
||||||
|
<!-- Thumbnail of the actual encoded image -->
|
||||||
|
<div class="encoded-image-thumbnail">
|
||||||
|
<img src="{{ thumbnail_url }}"
|
||||||
|
alt="Encoded image thumbnail"
|
||||||
|
class="img-thumbnail rounded"
|
||||||
|
style="max-width: 250px; max-height: 250px; object-fit: contain;">
|
||||||
|
<div class="mt-2 small text-muted">
|
||||||
|
<i class="bi bi-image me-1"></i>Encoded Image Preview
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<!-- Fallback to icon if thumbnail not available -->
|
||||||
|
<i class="bi bi-file-earmark-image text-success" style="font-size: 4rem;"></i>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<p class="lead mb-4">Your secret has been hidden in the {{ 'audio file' if carrier_type == 'audio' else 'image' }}.</p>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<code class="fs-5">{{ filename }}</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mode and format badges -->
|
||||||
|
<div class="mb-4">
|
||||||
|
{% if carrier_type == 'audio' %}
|
||||||
|
<!-- Audio mode badges -->
|
||||||
|
{% if embed_mode == 'audio_spread' %}
|
||||||
|
<span class="badge bg-warning text-dark fs-6">
|
||||||
|
<i class="bi bi-broadcast me-1"></i>Spread Spectrum
|
||||||
|
</span>
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-primary fs-6">
|
||||||
|
<i class="bi bi-grid-3x3-gap me-1"></i>Audio LSB
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
<span class="badge bg-info fs-6 ms-1">
|
||||||
|
<i class="bi bi-file-earmark-music me-1"></i>WAV
|
||||||
|
</span>
|
||||||
|
<div class="small text-muted mt-2">
|
||||||
|
{% if embed_mode == 'audio_spread' %}
|
||||||
|
Spread spectrum embedding in audio samples
|
||||||
|
{% else %}
|
||||||
|
LSB embedding in audio samples, WAV output
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% elif embed_mode == 'dct' %}
|
||||||
|
<span class="badge bg-info fs-6">
|
||||||
|
<i class="bi bi-soundwave me-1"></i>DCT Mode
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<!-- Color mode badge (v3.0.1) -->
|
||||||
|
{% if color_mode == 'color' %}
|
||||||
|
<span class="badge bg-success fs-6 ms-1">
|
||||||
|
<i class="bi bi-palette-fill me-1"></i>Color
|
||||||
|
</span>
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-secondary fs-6 ms-1">
|
||||||
|
<i class="bi bi-circle-half me-1"></i>Grayscale
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- Output format badge -->
|
||||||
|
{% if output_format == 'jpeg' %}
|
||||||
|
<span class="badge bg-warning text-dark fs-6 ms-1">
|
||||||
|
<i class="bi bi-file-earmark-richtext me-1"></i>JPEG
|
||||||
|
</span>
|
||||||
|
<div class="small text-muted mt-2">
|
||||||
|
{% if color_mode == 'color' %}
|
||||||
|
Color JPEG, frequency domain embedding (Q=95)
|
||||||
|
{% else %}
|
||||||
|
Grayscale JPEG, frequency domain embedding (Q=95)
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-primary fs-6 ms-1">
|
||||||
|
<i class="bi bi-file-earmark-image me-1"></i>PNG
|
||||||
|
</span>
|
||||||
|
<div class="small text-muted mt-2">
|
||||||
|
{% if color_mode == 'color' %}
|
||||||
|
Color PNG, frequency domain embedding (lossless)
|
||||||
|
{% else %}
|
||||||
|
Grayscale PNG, frequency domain embedding (lossless)
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-primary fs-6">
|
||||||
|
<i class="bi bi-grid-3x3-gap me-1"></i>LSB Mode
|
||||||
|
</span>
|
||||||
|
<span class="badge bg-success fs-6 ms-1">
|
||||||
|
<i class="bi bi-palette-fill me-1"></i>Full Color
|
||||||
|
</span>
|
||||||
|
<span class="badge bg-primary fs-6 ms-1">
|
||||||
|
<i class="bi bi-file-earmark-image me-1"></i>PNG
|
||||||
|
</span>
|
||||||
|
<div class="small text-muted mt-2">Full color PNG, spatial LSB embedding</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- Channel info (v4.0.0) -->
|
||||||
|
<div class="mt-3">
|
||||||
|
{% if channel_mode == 'private' %}
|
||||||
|
<span class="badge bg-warning text-dark fs-6">
|
||||||
|
<i class="bi bi-shield-lock me-1"></i>Private Channel
|
||||||
|
</span>
|
||||||
|
{% if channel_fingerprint %}
|
||||||
|
<div class="small text-muted mt-1">
|
||||||
|
<code>{{ channel_fingerprint }}</code>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
<span class="badge bg-info fs-6">
|
||||||
|
<i class="bi bi-globe me-1"></i>Public Channel
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="d-grid gap-2">
|
||||||
|
<a href="{{ url_for('encode_download', file_id=file_id) }}"
|
||||||
|
class="btn btn-primary btn-lg" id="downloadBtn">
|
||||||
|
<i class="bi bi-download me-2"></i>Download {{ 'Audio' if carrier_type == 'audio' else 'Image' }}
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-outline-primary" id="shareBtn" style="display: none;">
|
||||||
|
<i class="bi bi-share me-2"></i>Share
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="my-4">
|
||||||
|
|
||||||
|
<div class="alert alert-warning small text-start">
|
||||||
|
<i class="bi bi-exclamation-triangle me-1"></i>
|
||||||
|
<strong>Important:</strong>
|
||||||
|
<ul class="mb-0 mt-2">
|
||||||
|
<li>This file expires in <strong>10 minutes</strong></li>
|
||||||
|
{% if carrier_type == 'audio' %}
|
||||||
|
<li>Do <strong>not</strong> re-encode or convert the audio file</li>
|
||||||
|
<li>WAV format preserves your hidden data losslessly</li>
|
||||||
|
<li>Sharing via platforms that re-encode audio will destroy the hidden data</li>
|
||||||
|
{% else %}
|
||||||
|
<li>Do <strong>not</strong> resize or recompress the image</li>
|
||||||
|
{% if embed_mode == 'dct' and output_format == 'jpeg' %}
|
||||||
|
<li>JPEG format is lossy - avoid re-saving or editing</li>
|
||||||
|
{% else %}
|
||||||
|
<li>PNG format preserves your hidden data</li>
|
||||||
|
{% endif %}
|
||||||
|
{% if embed_mode == 'dct' %}
|
||||||
|
<li>Recipient needs <strong>DCT mode</strong> or <strong>Auto</strong> detection to decode</li>
|
||||||
|
{% if color_mode == 'color' %}
|
||||||
|
<li>Color preserved - extraction works on both color and grayscale</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% if channel_mode == 'private' %}
|
||||||
|
<li><i class="bi bi-shield-lock text-warning me-1"></i>Recipient needs the <strong>same channel key</strong> to decode</li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="{{ url_for('encode') }}" class="btn btn-outline-secondary">
|
||||||
|
<i class="bi bi-arrow-repeat me-2"></i>Encode Another
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block scripts %}
|
||||||
|
<script>
|
||||||
|
// Web Share API support
|
||||||
|
const shareBtn = document.getElementById('shareBtn');
|
||||||
|
const fileUrl = "{{ url_for('encode_file_route', file_id=file_id, _external=True) }}";
|
||||||
|
const fileName = "{{ filename }}";
|
||||||
|
const mimeType = "{{ 'audio/wav' if carrier_type == 'audio' else ('image/jpeg' if embed_mode == 'dct' and output_format == 'jpeg' else 'image/png') }}";
|
||||||
|
|
||||||
|
if (navigator.share && navigator.canShare) {
|
||||||
|
// Check if we can share files
|
||||||
|
fetch(fileUrl)
|
||||||
|
.then(response => response.blob())
|
||||||
|
.then(blob => {
|
||||||
|
const file = new File([blob], fileName, { type: mimeType });
|
||||||
|
if (navigator.canShare({ files: [file] })) {
|
||||||
|
shareBtn.style.display = 'block';
|
||||||
|
shareBtn.addEventListener('click', async () => {
|
||||||
|
try {
|
||||||
|
await navigator.share({
|
||||||
|
files: [file],
|
||||||
|
title: 'Stegasoo Image',
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
if (err.name !== 'AbortError') {
|
||||||
|
console.error('Share failed:', err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => console.log('Could not load file for sharing'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Auto-cleanup after download
|
||||||
|
document.getElementById('downloadBtn').addEventListener('click', function() {
|
||||||
|
// Give time for download to start, then cleanup
|
||||||
|
setTimeout(() => {
|
||||||
|
fetch("{{ url_for('encode_cleanup', file_id=file_id) }}", { method: 'POST' });
|
||||||
|
}, 2000);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
Loading…
Reference in New Issue
Block a user