6ad2b65aba
See release for more info
529 lines
19 KiB
Python
529 lines
19 KiB
Python
import os
|
|
import io
|
|
import json
|
|
import html
|
|
import base64
|
|
import hashlib
|
|
import secrets
|
|
import shutil
|
|
import datetime
|
|
import subprocess
|
|
import platform
|
|
|
|
from flask import (
|
|
Flask, render_template, request, jsonify, session,
|
|
redirect, url_for, flash, send_file
|
|
)
|
|
from werkzeug.utils import secure_filename
|
|
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
|
|
from cryptography.hazmat.primitives.hashes import SHA256
|
|
from cryptography.hazmat.primitives.ciphers.aead import AESGCM
|
|
from cryptography.fernet import Fernet
|
|
|
|
app = Flask(__name__)
|
|
app.secret_key = os.getenv("FLASK_SECRET", os.urandom(24))
|
|
|
|
ADMIN_CRED_FILE = 'admin_creds.json'
|
|
ADMIN_KEY_FILE = 'admin_key.key'
|
|
ADMIN_LOG_FILE = 'admin_logs.enc'
|
|
SETTINGS_FILE = 'settings.json'
|
|
ALPHABET = list('abcdefghijklmnopqrstuvwxyz')
|
|
|
|
DEFAULT_SETTINGS = {
|
|
"upload_folder": "uploads",
|
|
"max_file_age_days": 14,
|
|
"max_file_size_bytes": 25 * 1024 * 1024 * 1024 # 25GB
|
|
}
|
|
|
|
# === Settings ===
|
|
def load_settings():
|
|
if not os.path.exists(SETTINGS_FILE):
|
|
with open(SETTINGS_FILE, 'w') as f:
|
|
json.dump(DEFAULT_SETTINGS, f)
|
|
with open(SETTINGS_FILE, 'r') as f:
|
|
return json.load(f)
|
|
|
|
settings = load_settings()
|
|
UPLOAD_FOLDER = settings["upload_folder"]
|
|
MAX_FILE_AGE_DAYS = settings["max_file_age_days"]
|
|
MAX_FILE_SIZE_BYTES = settings["max_file_size_bytes"]
|
|
|
|
if not os.path.exists(UPLOAD_FOLDER):
|
|
os.makedirs(UPLOAD_FOLDER)
|
|
|
|
# === Crypto ===
|
|
def derive_key(password: str, salt: bytes) -> bytes:
|
|
return PBKDF2HMAC(algorithm=SHA256(), length=32, salt=salt, iterations=200_000).derive(password.encode())
|
|
|
|
def hash_password(password: str, salt: bytes) -> str:
|
|
return base64.urlsafe_b64encode(derive_key(password, salt)).decode()
|
|
|
|
def simple_encode(text: str) -> str:
|
|
return ''.join(ALPHABET[(ALPHABET.index(c) + 3) % 26] if c in ALPHABET else c for c in text.lower())
|
|
|
|
def simple_decode(text: str) -> str:
|
|
return ''.join(ALPHABET[(ALPHABET.index(c) - 3) % 26] if c in ALPHABET else c for c in text.lower())
|
|
|
|
def advanced_encrypt(plaintext: str, password: str) -> str:
|
|
salt = os.urandom(16)
|
|
key = derive_key(password, salt)
|
|
nonce = os.urandom(12)
|
|
ct = AESGCM(key).encrypt(nonce, plaintext.encode(), None)
|
|
return base64.urlsafe_b64encode(salt + nonce + ct).decode()
|
|
|
|
def advanced_decrypt(token_b64: str, password: str) -> str:
|
|
try:
|
|
data = base64.urlsafe_b64decode(token_b64.encode())
|
|
salt, nonce, ct = data[:16], data[16:28], data[28:]
|
|
key = derive_key(password, salt)
|
|
return AESGCM(key).decrypt(nonce, ct, None).decode()
|
|
except Exception:
|
|
return "[Error] Invalid password or corrupted data!"
|
|
|
|
# === Admin Auth ===
|
|
def load_admin_key():
|
|
if not os.path.exists(ADMIN_KEY_FILE):
|
|
with open(ADMIN_KEY_FILE, 'wb') as f:
|
|
f.write(Fernet.generate_key())
|
|
with open(ADMIN_KEY_FILE, 'rb') as f:
|
|
return f.read()
|
|
|
|
def encrypt_creds(username, password):
|
|
key = load_admin_key()
|
|
cipher = Fernet(key)
|
|
salt = os.urandom(16)
|
|
hashed_pw = hash_password(password, salt)
|
|
data = json.dumps({"u": username, "p": hashed_pw, "s": base64.b64encode(salt).decode()}).encode()
|
|
with open(ADMIN_CRED_FILE, 'wb') as f:
|
|
f.write(cipher.encrypt(data))
|
|
|
|
def check_creds(username, password):
|
|
try:
|
|
key = load_admin_key()
|
|
cipher = Fernet(key)
|
|
with open(ADMIN_CRED_FILE, 'rb') as f:
|
|
decrypted = cipher.decrypt(f.read())
|
|
creds = json.loads(decrypted)
|
|
salt = base64.b64decode(creds["s"])
|
|
return creds["u"] == username and creds["p"] == hash_password(password, salt)
|
|
except Exception as e:
|
|
print("[ERROR] check_creds failed:", e)
|
|
return False
|
|
|
|
def log_admin_event(message: str):
|
|
try:
|
|
key = load_admin_key()
|
|
cipher = Fernet(key)
|
|
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
encrypted = cipher.encrypt(f"[{timestamp}] {message}".encode())
|
|
with open(ADMIN_LOG_FILE, 'ab') as f:
|
|
f.write(encrypted + b"\n")
|
|
except Exception as e:
|
|
print("[ERROR] Failed to write admin log:", e)
|
|
|
|
# === Text Encryption Route ===
|
|
@app.route("/", methods=["GET", "POST"])
|
|
def index():
|
|
if request.method == 'POST':
|
|
if 'file' in request.files: # <-- Handling file upload
|
|
file = request.files['file']
|
|
enc_password = request.form.get('enc_password')
|
|
pickup_password = request.form.get('pickup_password')
|
|
|
|
if not file or not enc_password or not pickup_password:
|
|
flash('Missing fields')
|
|
return redirect(url_for('index'))
|
|
|
|
if file.content_length and file.content_length > MAX_FILE_SIZE_BYTES:
|
|
flash(f"File too large! Limit: {MAX_FILE_SIZE_BYTES / (1024**3):.2f} GB")
|
|
return redirect(url_for('index'))
|
|
|
|
filename = secure_filename(file.filename)
|
|
temp_path = os.path.join(UPLOAD_FOLDER, filename)
|
|
file.save(temp_path)
|
|
|
|
with open(temp_path, 'rb') as f:
|
|
data = f.read()
|
|
|
|
salt = os.urandom(16)
|
|
key = derive_key(enc_password, salt)
|
|
nonce = os.urandom(12)
|
|
ct = AESGCM(key).encrypt(nonce, data, None)
|
|
|
|
random_id = secrets.token_urlsafe(24)
|
|
|
|
with open(os.path.join(UPLOAD_FOLDER, f"{random_id}.enc"), 'wb') as f:
|
|
f.write(salt + nonce + ct)
|
|
os.remove(temp_path)
|
|
|
|
meta = {
|
|
'pickup_password': base64.urlsafe_b64encode(hashlib.sha256(pickup_password.encode()).digest()).decode(),
|
|
'original_name': filename,
|
|
'timestamp': datetime.datetime.utcnow().isoformat()
|
|
}
|
|
with open(os.path.join(UPLOAD_FOLDER, f"{random_id}.json"), 'w') as f:
|
|
json.dump(meta, f)
|
|
|
|
pickup_url = request.host_url.rstrip('/') + url_for('pickup_file', file_id=random_id)
|
|
flash(pickup_url)
|
|
return redirect(url_for('index'))
|
|
|
|
else: # <-- Handling encryption/decryption
|
|
data = request.get_json()
|
|
encryption_type = data.get("encryption-type", "basic")
|
|
operation = data.get("operation", "")
|
|
message = data.get("message", "")
|
|
password = data.get("password", "")
|
|
|
|
if encryption_type == "basic":
|
|
result = simple_encode(message) if operation == "encrypt" else simple_decode(message)
|
|
else:
|
|
result = advanced_encrypt(message, password) if operation == "encrypt" else advanced_decrypt(message, password)
|
|
|
|
return jsonify(result=html.escape(result))
|
|
|
|
return render_template("index.html", result="", password="", encryption_type="advanced", settings=settings)
|
|
|
|
# === File Pickup Route ===
|
|
@app.route("/pickup/<file_id>", methods=["GET", "POST"])
|
|
def pickup_file(file_id):
|
|
meta_path = os.path.join(UPLOAD_FOLDER, f"{file_id}.json")
|
|
enc_path = os.path.join(UPLOAD_FOLDER, f"{file_id}.enc")
|
|
|
|
if not os.path.exists(meta_path) or not os.path.exists(enc_path):
|
|
flash("File not found or expired")
|
|
return redirect(url_for('index'))
|
|
|
|
if request.method == 'POST':
|
|
pickup_password = request.form.get('pickup_password')
|
|
enc_password = request.form.get('enc_password')
|
|
|
|
if not pickup_password or not enc_password:
|
|
flash("Missing fields")
|
|
return redirect(request.url)
|
|
|
|
with open(meta_path, 'r') as f:
|
|
meta = json.load(f)
|
|
|
|
expected_hash = base64.urlsafe_b64encode(hashlib.sha256(pickup_password.encode()).digest()).decode()
|
|
if expected_hash != meta['pickup_password']:
|
|
flash("Incorrect pickup password")
|
|
return redirect(request.url)
|
|
|
|
with open(enc_path, 'rb') as f:
|
|
enc_data = f.read()
|
|
salt, nonce, ct = enc_data[:16], enc_data[16:28], enc_data[28:]
|
|
key = derive_key(enc_password, salt)
|
|
|
|
try:
|
|
decrypted = AESGCM(key).decrypt(nonce, ct, None)
|
|
except Exception:
|
|
flash("Decryption failed")
|
|
return redirect(request.url)
|
|
|
|
os.remove(meta_path)
|
|
os.remove(enc_path)
|
|
log_admin_event(f"File {file_id} downloaded and deleted.")
|
|
|
|
return send_file(io.BytesIO(decrypted), as_attachment=True, download_name=meta['original_name'])
|
|
|
|
return render_template("pickup.html", file_id=file_id)
|
|
|
|
def cleanup_expired_files():
|
|
now = datetime.datetime.utcnow()
|
|
|
|
for fname in os.listdir(UPLOAD_FOLDER):
|
|
if fname.endswith(".enc") or fname.endswith(".json"):
|
|
path = os.path.join(UPLOAD_FOLDER, fname)
|
|
try:
|
|
file_time = datetime.datetime.utcfromtimestamp(os.path.getmtime(path))
|
|
age = (now - file_time).days
|
|
if age > MAX_FILE_AGE_DAYS:
|
|
os.remove(path)
|
|
print(f"[INFO] Deleted expired file: {fname}")
|
|
except Exception as e:
|
|
print(f"[ERROR] Could not check/delete file {fname}: {e}")
|
|
|
|
|
|
# === Admin Log Viewer ===
|
|
@app.route("/admin-logs")
|
|
def admin_logs():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
|
|
logs = []
|
|
try:
|
|
key = load_admin_key()
|
|
cipher = Fernet(key)
|
|
if os.path.exists(ADMIN_LOG_FILE):
|
|
with open(ADMIN_LOG_FILE, 'rb') as f:
|
|
lines = f.readlines()
|
|
for line in lines[-100:]:
|
|
if line.strip():
|
|
try:
|
|
decrypted = cipher.decrypt(line.strip())
|
|
logs.append(decrypted.decode())
|
|
except Exception:
|
|
logs.append("[Error] Corrupted log entry.")
|
|
except Exception as e:
|
|
logs.append(f"[Error loading logs] {str(e)}")
|
|
|
|
return jsonify(logs=logs)
|
|
|
|
# === Admin Settings Editor ===
|
|
@app.route("/admin-settings", methods=["GET", "POST"])
|
|
def admin_settings():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
|
|
current_settings = load_settings()
|
|
|
|
if request.method == 'POST':
|
|
upload_folder = request.form.get('upload_folder', current_settings.get('upload_folder', 'uploads'))
|
|
max_file_age_days = int(request.form.get('max_file_age_days', current_settings.get('max_file_age_days', 14)))
|
|
max_file_size_gb = float(request.form.get('max_file_size_gb', current_settings.get('max_file_size_bytes', 25 * 1024 * 1024 * 1024) / (1024 * 1024 * 1024)))
|
|
max_file_size_bytes = int(max_file_size_gb * 1024 * 1024 * 1024)
|
|
|
|
updated_settings = {
|
|
"upload_folder": upload_folder,
|
|
"max_file_age_days": max_file_age_days,
|
|
"max_file_size_bytes": max_file_size_bytes
|
|
}
|
|
|
|
with open(SETTINGS_FILE, 'w') as f:
|
|
json.dump(updated_settings, f)
|
|
|
|
flash("Settings updated successfully!")
|
|
|
|
global settings, UPLOAD_FOLDER, MAX_FILE_AGE_DAYS, MAX_FILE_SIZE_BYTES
|
|
settings = load_settings()
|
|
UPLOAD_FOLDER = settings.get('upload_folder', 'uploads')
|
|
MAX_FILE_AGE_DAYS = settings.get('max_file_age_days', 14)
|
|
MAX_FILE_SIZE_BYTES = settings.get('max_file_size_bytes', 25 * 1024 * 1024 * 1024)
|
|
|
|
if not os.path.exists(UPLOAD_FOLDER):
|
|
os.makedirs(UPLOAD_FOLDER)
|
|
|
|
return redirect(url_for("admin_settings"))
|
|
|
|
return render_template("admin_settings.html", settings=current_settings)
|
|
|
|
# === Admin Setup ===
|
|
@app.route("/admin-setup", methods=["GET", "POST"])
|
|
def admin_setup():
|
|
if os.path.exists(ADMIN_CRED_FILE):
|
|
return redirect(url_for("admin_login"))
|
|
if request.method == "POST":
|
|
u = request.form.get("username")
|
|
p = request.form.get("password")
|
|
if u and p:
|
|
encrypt_creds(u, p)
|
|
session["admin_logged_in"] = True
|
|
return redirect(url_for("admin_page"))
|
|
flash("Both fields required")
|
|
return render_template("admin_setup.html")
|
|
|
|
# === Admin Login ===
|
|
@app.route("/admin-login", methods=["GET", "POST"])
|
|
def admin_login():
|
|
if request.method == "POST":
|
|
u = request.form.get("username")
|
|
p = request.form.get("password")
|
|
if check_creds(u, p):
|
|
session["admin_logged_in"] = True
|
|
log_admin_event("Admin login successful.")
|
|
return redirect(url_for("admin_page"))
|
|
else:
|
|
log_admin_event("Admin login failed.")
|
|
flash("Incorrect credentials")
|
|
return render_template("admin_login.html")
|
|
|
|
# === Admin Logout ===
|
|
@app.route("/admin-logout")
|
|
def admin_logout():
|
|
session.pop("admin_logged_in", None)
|
|
return redirect(url_for("index"))
|
|
|
|
# === Admin Page ===
|
|
@app.route("/adminpage")
|
|
def admin_page():
|
|
if not session.get("admin_logged_in"):
|
|
if not os.path.exists(ADMIN_CRED_FILE):
|
|
return redirect(url_for("admin_setup"))
|
|
return redirect(url_for("admin_login"))
|
|
|
|
cleanup_expired_files()
|
|
routes = [rule.rule for rule in app.url_map.iter_rules() if rule.endpoint != 'static']
|
|
|
|
try:
|
|
uptime = subprocess.check_output("uptime -p", shell=True).decode().strip()
|
|
except Exception:
|
|
uptime = "Unavailable"
|
|
|
|
server_info = {
|
|
"uptime": uptime,
|
|
"time": datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
|
|
"python": platform.python_version(),
|
|
"debug": app.debug
|
|
}
|
|
|
|
return render_template("admin.html", routes=routes, server_info=server_info)
|
|
|
|
# === Restart Server ===
|
|
@app.route("/restart-server")
|
|
def restart_server():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
subprocess.Popen(["sudo", "systemctl", "restart", "paccrypt.service"])
|
|
flash("Restart triggered")
|
|
return redirect(url_for("admin_page"))
|
|
|
|
# === Reset Admin Credentials ===
|
|
@app.route("/admin-reset", methods=["POST"])
|
|
def admin_reset():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
try:
|
|
if os.path.exists(ADMIN_CRED_FILE):
|
|
os.remove(ADMIN_CRED_FILE)
|
|
if os.path.exists(ADMIN_KEY_FILE):
|
|
os.remove(ADMIN_KEY_FILE)
|
|
session.pop("admin_logged_in", None)
|
|
flash("Admin credentials reset. Please create new credentials.")
|
|
except Exception as e:
|
|
flash("Failed to reset admin credentials.")
|
|
print("[ERROR] admin_reset failed:", e)
|
|
return redirect(url_for("admin_setup"))
|
|
|
|
# === Change Admin Password ===
|
|
@app.route("/admin-change-password", methods=["POST"])
|
|
def admin_change_password():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
|
|
current = request.form.get("current_password")
|
|
new = request.form.get("new_password")
|
|
|
|
try:
|
|
key = load_admin_key()
|
|
cipher = Fernet(key)
|
|
with open(ADMIN_CRED_FILE, 'rb') as file:
|
|
decrypted = cipher.decrypt(file.read())
|
|
creds = json.loads(decrypted)
|
|
|
|
salt = base64.b64decode(creds["s"])
|
|
if hash_password(current, salt) != creds["p"]:
|
|
flash("Current password is incorrect")
|
|
return redirect(url_for("admin_page"))
|
|
|
|
creds["p"] = hash_password(new, salt)
|
|
encrypted = cipher.encrypt(json.dumps(creds).encode())
|
|
with open(ADMIN_CRED_FILE, 'wb') as file:
|
|
file.write(encrypted)
|
|
|
|
log_admin_event("Admin password changed.")
|
|
flash("Password updated successfully", "password-feedback")
|
|
return redirect(url_for("admin_page"))
|
|
|
|
except Exception as e:
|
|
flash("Failed to update password")
|
|
print("[ERROR] Password change failed:", e)
|
|
return redirect(url_for("admin_page"))
|
|
|
|
@app.route("/admin-clear-uploads", methods=["POST"])
|
|
def admin_clear_uploads():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
|
|
deleted = 0
|
|
for filename in os.listdir(UPLOAD_FOLDER):
|
|
if filename.endswith(".enc") or filename.endswith(".json"):
|
|
try:
|
|
os.remove(os.path.join(UPLOAD_FOLDER, filename))
|
|
deleted += 1
|
|
except Exception as e:
|
|
print("[ERROR] Failed to delete:", filename, e)
|
|
|
|
flash(f"Cleared {deleted} uploaded file(s).", "clear-feedback")
|
|
return redirect(url_for("admin_page"))
|
|
|
|
@app.route("/admin-update-server", methods=["POST"])
|
|
def admin_update_server():
|
|
if not session.get("admin_logged_in"):
|
|
return redirect(url_for("admin_login"))
|
|
|
|
try:
|
|
output = subprocess.check_output(["git", "pull", "origin", "main"], cwd=os.getcwd()).decode()
|
|
flash("✅ Server updated successfully!<br><pre>" + html.escape(output) + "</pre>", "update")
|
|
except subprocess.CalledProcessError as e:
|
|
flash("❌ Failed to update server:<br><pre>" + html.escape(e.output.decode()) + "</pre>", "update")
|
|
except Exception as ex:
|
|
flash("❌ An error occurred: " + str(ex), "update")
|
|
|
|
return redirect(url_for("admin_page"))
|
|
|
|
@app.route("/sitemap")
|
|
def sitemap():
|
|
output = ["<h1>PacCrypt Sitemap</h1>", "<ul>"]
|
|
for rule in app.url_map.iter_rules():
|
|
if rule.endpoint != 'static':
|
|
url = url_for(rule.endpoint, **{arg: f"<{arg}>" for arg in rule.arguments})
|
|
output.append(f"<li><a href='{url}'>{url}</a></li>")
|
|
output.append("</ul>")
|
|
return "\n".join(output)
|
|
|
|
@app.route("/robots.txt")
|
|
def robots_txt():
|
|
lines = [
|
|
"User-agent: *",
|
|
"Disallow: /adminpage",
|
|
"Disallow: /admin-login",
|
|
"Disallow: /admin-setup",
|
|
"Disallow: /admin-reset",
|
|
"Disallow: /admin-settings",
|
|
"Disallow: /restart-server",
|
|
"Disallow: /pickup",
|
|
"Disallow: /admin-change-password",
|
|
"Allow: /",
|
|
f"Sitemap: {url_for('sitemap', _external=True)}"
|
|
]
|
|
return "\n".join(lines), 200, {"Content-Type": "text/plain"}
|
|
|
|
|
|
|
|
|
|
# === Error Handlers ===
|
|
@app.errorhandler(404)
|
|
def page_not_found(e):
|
|
return render_template('404.html'), 404
|
|
|
|
@app.errorhandler(500)
|
|
def server_error(e):
|
|
return render_template('500.html'), 500
|
|
|
|
@app.errorhandler(403)
|
|
def forbidden(e):
|
|
return render_template('403.html'), 403
|
|
|
|
@app.errorhandler(405)
|
|
def method_not_allowed(e):
|
|
return render_template('403.html'), 403
|
|
|
|
@app.errorhandler(FileNotFoundError)
|
|
def handle_file_not_found(e):
|
|
if os.getenv("PRODUCTION", "false").lower() == "true":
|
|
return render_template('500.html'), 500
|
|
else:
|
|
raise e # re-raise for debugging in development
|
|
|
|
|
|
# === Server Mode Execution ===
|
|
if __name__ == "__main__":
|
|
PRODUCTION = os.getenv("PRODUCTION", "false").lower() == "true"
|
|
if PRODUCTION:
|
|
from waitress import serve
|
|
print("[INFO] Running in PRODUCTION mode with Waitress.")
|
|
serve(app, host="0.0.0.0", port=5000)
|
|
else:
|
|
print("[INFO] Running in DEVELOPMENT mode with Flask server.")
|
|
app.run(debug=True, host="0.0.0.0", port=5000) |