mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 08:52:58 +00:00
CRITICAL FIXES: - 🔴 Remove hardcoded admin passwords (security vulnerability) - 🔴 Fix SSRF vulnerability in webhook URL validation - 🔴 Add atomic wallet transactions (race condition fix) - 🔴 Configure production security headers and CSP - 🔴 Fix Railway deployment issues (logging import, start command) SECURITY ENHANCEMENTS: - 🛡️ Comprehensive input validation and XSS prevention - 🛡️ Rate limiting on all API endpoints (10-60 req/min) - 🛡️ Advanced security monitoring middleware - 🛡️ Suspicious activity detection and logging - 🛡️ Enhanced HTTPS, HSTS, and cookie security PERFORMANCE OPTIMIZATIONS: - ⚡ Database query optimization (select_related, indexes) - ⚡ Enhanced Redis caching with proper invalidation - ⚡ Optimized wallet statistics with database aggregation - ⚡ Improved session configuration INFRASTRUCTURE: - 📦 New dependencies: bleach, django-ratelimit - 📊 Enhanced logging with security.log rotation - 🗃️ Database indexes for performance - 🔧 Railway-safe deployment configuration All changes tested and deployment-ready with rollback safety. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
114 lines
4.3 KiB
Python
114 lines
4.3 KiB
Python
from django.core.management.base import BaseCommand
|
|
from django.contrib.auth import get_user_model
|
|
from django.conf import settings
|
|
import secrets
|
|
import getpass
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Reset admin user - delete existing and create fresh'
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--password',
|
|
type=str,
|
|
help='Admin password (if not provided, will generate secure random password)'
|
|
)
|
|
parser.add_argument(
|
|
'--prompt-password',
|
|
action='store_true',
|
|
help='Prompt for password input (secure)'
|
|
)
|
|
|
|
def handle(self, *args, **options):
|
|
email = 'admin@quantumtaskai.com'
|
|
username = 'admin'
|
|
|
|
# Secure password handling
|
|
if options['prompt_password']:
|
|
password = getpass.getpass("Enter admin password: ")
|
|
if not password:
|
|
self.stdout.write(self.style.ERROR("Password cannot be empty"))
|
|
return
|
|
elif options['password']:
|
|
password = options['password']
|
|
else:
|
|
# Generate secure random password
|
|
password = secrets.token_urlsafe(16)
|
|
self.stdout.write(f"🔐 Generated secure password: {password}")
|
|
self.stdout.write("⚠️ SAVE THIS PASSWORD SECURELY - it will not be shown again!")
|
|
|
|
self.stdout.write("🔄 Resetting admin user...")
|
|
|
|
# Delete ANY existing admin users (all possible emails/usernames)
|
|
deleted_count = 0
|
|
|
|
# Check for users with admin emails
|
|
admin_emails = ['admin@quantumtaskai.com', 'admin@netcop.ai']
|
|
for admin_email in admin_emails:
|
|
try:
|
|
user = User.objects.get(email=admin_email)
|
|
user.delete()
|
|
deleted_count += 1
|
|
self.stdout.write(f"❌ Deleted user with email: {admin_email}")
|
|
except User.DoesNotExist:
|
|
pass
|
|
|
|
# Check for users with admin username
|
|
try:
|
|
user = User.objects.get(username=username)
|
|
if user.email not in admin_emails: # Don't double-delete
|
|
user.delete()
|
|
deleted_count += 1
|
|
self.stdout.write(f"❌ Deleted user with username: {username}")
|
|
except User.DoesNotExist:
|
|
pass
|
|
|
|
self.stdout.write(f"🗑️ Deleted {deleted_count} existing admin user(s)")
|
|
|
|
# Create fresh admin user
|
|
self.stdout.write("🆕 Creating fresh admin user...")
|
|
|
|
user = User.objects.create_superuser(
|
|
username=username,
|
|
email=email,
|
|
password=password,
|
|
)
|
|
|
|
# Add initial balance
|
|
user.add_balance(100, "Initial admin balance")
|
|
|
|
# Verify user was created correctly
|
|
user.refresh_from_db()
|
|
|
|
self.stdout.write("✅ Fresh admin user created successfully!")
|
|
self.stdout.write(f"📧 Email: {user.email}")
|
|
self.stdout.write(f"👤 Username: {user.username}")
|
|
self.stdout.write(f"🔐 Password: {password}")
|
|
self.stdout.write(f"⚡ Is superuser: {user.is_superuser}")
|
|
self.stdout.write(f"👥 Is staff: {user.is_staff}")
|
|
self.stdout.write(f"✅ Is active: {user.is_active}")
|
|
self.stdout.write(f"💰 Balance: {user.wallet_balance} AED")
|
|
|
|
self.stdout.write("\n🎯 Login Instructions:")
|
|
self.stdout.write("URL: https://www.quantumtaskai.com/admin/")
|
|
self.stdout.write(f"Email: {email}")
|
|
self.stdout.write(f"Username: {username}")
|
|
self.stdout.write(f"Password: {password}")
|
|
|
|
self.stdout.write("\n🔍 Authentication Test:")
|
|
# Test authentication
|
|
from django.contrib.auth import authenticate
|
|
auth_user = authenticate(username=email, password=password)
|
|
if auth_user:
|
|
self.stdout.write("✅ Email authentication: WORKING")
|
|
else:
|
|
self.stdout.write("❌ Email authentication: FAILED")
|
|
|
|
auth_user = authenticate(username=username, password=password)
|
|
if auth_user:
|
|
self.stdout.write("✅ Username authentication: WORKING")
|
|
else:
|
|
self.stdout.write("❌ Username authentication: FAILED") |