Add Image Security Toolkit (tools)
Library: - Add peek_image() to detect Stegasoo headers without decrypting CLI: - stegasoo tools capacity <image> - show LSB/DCT capacity - stegasoo tools strip <image> - remove EXIF metadata - stegasoo tools peek <image> - detect hidden data API: - POST /api/tools/capacity - POST /api/tools/strip-metadata - POST /api/tools/peek WebUI: - /tools page with tabbed interface (login required) - Basic implementation - needs polish (dropzones, better results) Architecture: Library -> CLI -> API -> WebUI pattern 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1288,6 +1288,88 @@ def about():
|
||||
return render_template("about.html", has_argon2=has_argon2(), has_qrcode_read=HAS_QRCODE_READ)
|
||||
|
||||
|
||||
# ============================================================================
|
||||
# TOOLS ROUTES (v4.1.0)
|
||||
# ============================================================================
|
||||
|
||||
|
||||
@app.route("/tools")
|
||||
@login_required
|
||||
def tools():
|
||||
"""Advanced tools page."""
|
||||
return render_template("tools.html", has_dct=has_dct_support())
|
||||
|
||||
|
||||
@app.route("/api/tools/capacity", methods=["POST"])
|
||||
@login_required
|
||||
def api_tools_capacity():
|
||||
"""Calculate image capacity for steganography."""
|
||||
from stegasoo.dct_steganography import estimate_capacity_comparison
|
||||
|
||||
carrier = request.files.get("image")
|
||||
if not carrier:
|
||||
return jsonify({"success": False, "error": "No image provided"}), 400
|
||||
|
||||
try:
|
||||
image_data = carrier.read()
|
||||
result = estimate_capacity_comparison(image_data)
|
||||
result["success"] = True
|
||||
result["filename"] = carrier.filename
|
||||
result["megapixels"] = round((result["width"] * result["height"]) / 1_000_000, 2)
|
||||
return jsonify(result)
|
||||
except Exception as e:
|
||||
return jsonify({"success": False, "error": str(e)}), 400
|
||||
|
||||
|
||||
@app.route("/api/tools/strip-metadata", methods=["POST"])
|
||||
@login_required
|
||||
def api_tools_strip_metadata():
|
||||
"""Strip EXIF/metadata from image."""
|
||||
import io
|
||||
|
||||
from stegasoo.utils import strip_image_metadata
|
||||
|
||||
image_file = request.files.get("image")
|
||||
if not image_file:
|
||||
return jsonify({"success": False, "error": "No image provided"}), 400
|
||||
|
||||
try:
|
||||
image_data = image_file.read()
|
||||
clean_data = strip_image_metadata(image_data, output_format="PNG")
|
||||
|
||||
buffer = io.BytesIO(clean_data)
|
||||
filename = image_file.filename.rsplit(".", 1)[0] + "_clean.png"
|
||||
|
||||
return send_file(
|
||||
buffer,
|
||||
mimetype="image/png",
|
||||
as_attachment=True,
|
||||
download_name=filename
|
||||
)
|
||||
except Exception as e:
|
||||
return jsonify({"success": False, "error": str(e)}), 400
|
||||
|
||||
|
||||
@app.route("/api/tools/peek", methods=["POST"])
|
||||
@login_required
|
||||
def api_tools_peek():
|
||||
"""Check if image contains Stegasoo header."""
|
||||
from stegasoo.steganography import peek_image
|
||||
|
||||
image_file = request.files.get("image")
|
||||
if not image_file:
|
||||
return jsonify({"success": False, "error": "No image provided"}), 400
|
||||
|
||||
try:
|
||||
image_data = image_file.read()
|
||||
result = peek_image(image_data)
|
||||
result["success"] = True
|
||||
result["filename"] = image_file.filename
|
||||
return jsonify(result)
|
||||
except Exception as e:
|
||||
return jsonify({"success": False, "error": str(e)}), 400
|
||||
|
||||
|
||||
# Add these two test routes anywhere in app.py after the app = Flask(...) line:
|
||||
|
||||
|
||||
|
||||
@@ -38,6 +38,9 @@
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/about"><i class="bi bi-info-circle me-1"></i> About</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/tools"><i class="bi bi-tools me-1"></i> Tools</a>
|
||||
</li>
|
||||
{% if auth_enabled %}
|
||||
{% if is_authenticated %}
|
||||
<li class="nav-item dropdown">
|
||||
|
||||
172
frontends/web/templates/tools.html
Normal file
172
frontends/web/templates/tools.html
Normal file
@@ -0,0 +1,172 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Tools - Stegasoo{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8">
|
||||
<h4 class="mb-4"><i class="bi bi-tools me-2"></i>Image Security Toolkit</h4>
|
||||
|
||||
<!-- Tool Tabs -->
|
||||
<ul class="nav nav-pills mb-4" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link active" data-bs-toggle="pill" data-bs-target="#capacity" type="button">
|
||||
<i class="bi bi-rulers me-1"></i>Capacity
|
||||
</button>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link" data-bs-toggle="pill" data-bs-target="#strip" type="button">
|
||||
<i class="bi bi-eraser me-1"></i>Strip EXIF
|
||||
</button>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link" data-bs-toggle="pill" data-bs-target="#peek" type="button">
|
||||
<i class="bi bi-search me-1"></i>Peek
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- Tab Content -->
|
||||
<div class="tab-content">
|
||||
|
||||
<!-- Capacity Calculator -->
|
||||
<div class="tab-pane fade show active" id="capacity" role="tabpanel">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<p class="text-muted mb-3">Check how much data can be hidden in an image.</p>
|
||||
|
||||
<div class="mb-3">
|
||||
<input type="file" class="form-control" id="capacityFile" accept="image/*">
|
||||
</div>
|
||||
|
||||
<div id="capacityResult" class="d-none">
|
||||
<table class="table table-sm table-dark mb-0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="text-muted">Image</td>
|
||||
<td id="capFilename" class="font-monospace"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-muted">Dimensions</td>
|
||||
<td><span id="capDimensions"></span> (<span id="capMegapixels"></span> MP)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-muted">LSB Capacity</td>
|
||||
<td id="capLsb" class="text-success font-monospace"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-muted">DCT Capacity</td>
|
||||
<td id="capDct" class="font-monospace"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Strip EXIF -->
|
||||
<div class="tab-pane fade" id="strip" role="tabpanel">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<p class="text-muted mb-3">Remove metadata (camera info, GPS, timestamps) from images.</p>
|
||||
|
||||
<form id="stripForm" action="{{ url_for('api_tools_strip_metadata') }}" method="POST" enctype="multipart/form-data">
|
||||
<div class="mb-3">
|
||||
<input type="file" class="form-control" name="image" id="stripFile" accept="image/*" required>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<i class="bi bi-eraser me-1"></i>Strip & Download
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Peek (Header Detection) -->
|
||||
<div class="tab-pane fade" id="peek" role="tabpanel">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<p class="text-muted mb-3">Check if an image contains Stegasoo hidden data (without decrypting).</p>
|
||||
|
||||
<div class="mb-3">
|
||||
<input type="file" class="form-control" id="peekFile" accept="image/*">
|
||||
</div>
|
||||
|
||||
<div id="peekResult" class="d-none">
|
||||
<div id="peekFound" class="alert alert-success d-none">
|
||||
<i class="bi bi-check-circle me-2"></i>
|
||||
<strong>Stegasoo data detected!</strong>
|
||||
<br><span class="text-muted">Mode: <span id="peekMode" class="font-monospace"></span></span>
|
||||
</div>
|
||||
<div id="peekNotFound" class="alert alert-secondary d-none">
|
||||
<i class="bi bi-x-circle me-2"></i>
|
||||
No Stegasoo header detected in this image.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script>
|
||||
// Capacity Calculator
|
||||
document.getElementById('capacityFile')?.addEventListener('change', async function() {
|
||||
const file = this.files[0];
|
||||
if (!file) return;
|
||||
|
||||
const formData = new FormData();
|
||||
formData.append('image', file);
|
||||
|
||||
try {
|
||||
const res = await fetch('/api/tools/capacity', { method: 'POST', body: formData });
|
||||
const data = await res.json();
|
||||
|
||||
if (data.success) {
|
||||
document.getElementById('capFilename').textContent = data.filename;
|
||||
document.getElementById('capDimensions').textContent = `${data.width} x ${data.height}`;
|
||||
document.getElementById('capMegapixels').textContent = data.megapixels;
|
||||
document.getElementById('capLsb').textContent = `${data.lsb.capacity_kb.toFixed(1)} KB`;
|
||||
document.getElementById('capDct').textContent = data.dct.available
|
||||
? `${data.dct.capacity_kb.toFixed(1)} KB`
|
||||
: 'N/A (scipy required)';
|
||||
document.getElementById('capacityResult').classList.remove('d-none');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
});
|
||||
|
||||
// Peek (Header Detection)
|
||||
document.getElementById('peekFile')?.addEventListener('change', async function() {
|
||||
const file = this.files[0];
|
||||
if (!file) return;
|
||||
|
||||
const formData = new FormData();
|
||||
formData.append('image', file);
|
||||
|
||||
try {
|
||||
const res = await fetch('/api/tools/peek', { method: 'POST', body: formData });
|
||||
const data = await res.json();
|
||||
|
||||
document.getElementById('peekResult').classList.remove('d-none');
|
||||
|
||||
if (data.has_stegasoo) {
|
||||
document.getElementById('peekFound').classList.remove('d-none');
|
||||
document.getElementById('peekNotFound').classList.add('d-none');
|
||||
document.getElementById('peekMode').textContent = data.mode?.toUpperCase() || 'Unknown';
|
||||
} else {
|
||||
document.getElementById('peekFound').classList.add('d-none');
|
||||
document.getElementById('peekNotFound').classList.remove('d-none');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user