2025-12-14 19:08:01 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
2025-12-26 08:23:38 -06:00
|
|
|
import logging
|
2025-12-14 19:08:01 +01:00
|
|
|
import random
|
|
|
|
|
import time
|
2025-12-27 19:17:27 +01:00
|
|
|
from datetime import datetime
|
2025-12-14 19:08:01 +01:00
|
|
|
from http.server import BaseHTTPRequestHandler
|
|
|
|
|
from typing import Optional, List
|
2026-01-04 22:20:10 +01:00
|
|
|
from urllib.parse import urlparse, parse_qs
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
from config import Config
|
|
|
|
|
from tracker import AccessTracker
|
2026-01-04 19:12:23 +01:00
|
|
|
from analyzer import Analyzer
|
2025-12-14 19:08:01 +01:00
|
|
|
from templates import html_templates
|
|
|
|
|
from templates.dashboard_template import generate_dashboard
|
|
|
|
|
from generators import (
|
|
|
|
|
credentials_txt, passwords_txt, users_json, api_keys_json,
|
2025-12-29 18:51:37 +01:00
|
|
|
api_response, directory_listing, random_server_header
|
2025-12-14 19:08:01 +01:00
|
|
|
)
|
|
|
|
|
from wordlists import get_wordlists
|
2026-01-04 22:20:10 +01:00
|
|
|
from sql_errors import generate_sql_error_response, get_sql_response_with_data
|
|
|
|
|
from xss_detector import detect_xss_pattern, generate_xss_response
|
|
|
|
|
from server_errors import generate_server_error
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Handler(BaseHTTPRequestHandler):
|
|
|
|
|
"""HTTP request handler for the deception server"""
|
|
|
|
|
webpages: Optional[List[str]] = None
|
|
|
|
|
config: Config = None
|
|
|
|
|
tracker: AccessTracker = None
|
2026-01-04 19:12:23 +01:00
|
|
|
analyzer: Analyzer = None
|
2025-12-14 19:08:01 +01:00
|
|
|
counter: int = 0
|
2025-12-26 08:23:38 -06:00
|
|
|
app_logger: logging.Logger = None
|
|
|
|
|
access_logger: logging.Logger = None
|
2025-12-27 19:17:27 +01:00
|
|
|
credential_logger: logging.Logger = None
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
def _get_client_ip(self) -> str:
|
|
|
|
|
"""Extract client IP address from request, checking proxy headers first"""
|
|
|
|
|
# Headers might not be available during early error logging
|
|
|
|
|
if hasattr(self, 'headers') and self.headers:
|
|
|
|
|
# Check X-Forwarded-For header (set by load balancers/proxies)
|
|
|
|
|
forwarded_for = self.headers.get('X-Forwarded-For')
|
|
|
|
|
if forwarded_for:
|
|
|
|
|
# X-Forwarded-For can contain multiple IPs, get the first (original client)
|
|
|
|
|
return forwarded_for.split(',')[0].strip()
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
# Check X-Real-IP header (set by nginx and other proxies)
|
|
|
|
|
real_ip = self.headers.get('X-Real-IP')
|
|
|
|
|
if real_ip:
|
|
|
|
|
return real_ip.strip()
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
# Fallback to direct connection IP
|
|
|
|
|
return self.client_address[0]
|
|
|
|
|
|
|
|
|
|
def _get_user_agent(self) -> str:
|
|
|
|
|
"""Extract user agent from request"""
|
|
|
|
|
return self.headers.get('User-Agent', '')
|
|
|
|
|
|
2025-12-26 07:53:05 -06:00
|
|
|
def version_string(self) -> str:
|
|
|
|
|
"""Return custom server version for deception."""
|
2025-12-29 18:51:37 +01:00
|
|
|
return random_server_header()
|
2025-12-26 07:53:05 -06:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
def _should_return_error(self) -> bool:
|
|
|
|
|
"""Check if we should return an error based on probability"""
|
|
|
|
|
if self.config.probability_error_codes <= 0:
|
|
|
|
|
return False
|
|
|
|
|
return random.randint(1, 100) <= self.config.probability_error_codes
|
|
|
|
|
|
|
|
|
|
def _get_random_error_code(self) -> int:
|
|
|
|
|
"""Get a random error code from wordlists"""
|
|
|
|
|
wl = get_wordlists()
|
|
|
|
|
error_codes = wl.error_codes
|
|
|
|
|
if not error_codes:
|
|
|
|
|
error_codes = [400, 401, 403, 404, 500, 502, 503]
|
|
|
|
|
return random.choice(error_codes)
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
def _parse_query_string(self) -> str:
|
|
|
|
|
"""Extract query string from the request path"""
|
|
|
|
|
parsed = urlparse(self.path)
|
|
|
|
|
return parsed.query
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
def _handle_sql_endpoint(self, path: str) -> bool:
|
|
|
|
|
"""
|
|
|
|
|
Handle SQL injection honeypot endpoints.
|
|
|
|
|
Returns True if the path was handled, False otherwise.
|
|
|
|
|
"""
|
|
|
|
|
# SQL-vulnerable endpoints
|
|
|
|
|
sql_endpoints = ['/api/search', '/api/sql', '/api/database']
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
base_path = urlparse(path).path
|
|
|
|
|
if base_path not in sql_endpoints:
|
|
|
|
|
return False
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
try:
|
|
|
|
|
# Get query parameters
|
|
|
|
|
query_string = self._parse_query_string()
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
# Log SQL injection attempt
|
|
|
|
|
client_ip = self._get_client_ip()
|
|
|
|
|
user_agent = self._get_user_agent()
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
# Always check for SQL injection patterns
|
|
|
|
|
error_msg, content_type, status_code = generate_sql_error_response(query_string or "")
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if error_msg:
|
|
|
|
|
# SQL injection detected - log and return error
|
|
|
|
|
self.access_logger.warning(f"[SQL INJECTION DETECTED] {client_ip} - {base_path} - Query: {query_string[:100] if query_string else 'empty'}")
|
|
|
|
|
self.send_response(status_code)
|
|
|
|
|
self.send_header('Content-type', content_type)
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(error_msg.encode())
|
|
|
|
|
else:
|
|
|
|
|
# No injection detected - return fake data
|
|
|
|
|
self.access_logger.info(f"[SQL ENDPOINT] {client_ip} - {base_path} - Query: {query_string[:100] if query_string else 'empty'}")
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
response_data = get_sql_response_with_data(base_path, query_string or "")
|
|
|
|
|
self.wfile.write(response_data.encode())
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
except BrokenPipeError:
|
|
|
|
|
# Client disconnected
|
|
|
|
|
return True
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app_logger.error(f"Error handling SQL endpoint {path}: {str(e)}")
|
|
|
|
|
# Still send a response even on error
|
|
|
|
|
try:
|
|
|
|
|
self.send_response(500)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(b'{"error": "Internal server error"}')
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
return True
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
def generate_page(self, seed: str) -> str:
|
|
|
|
|
"""Generate a webpage containing random links or canary token"""
|
|
|
|
|
random.seed(seed)
|
|
|
|
|
num_pages = random.randint(*self.config.links_per_page_range)
|
|
|
|
|
|
2026-01-05 17:07:10 +01:00
|
|
|
# Build the content HTML
|
|
|
|
|
content = ""
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-05 17:07:10 +01:00
|
|
|
# Add canary token if needed
|
2025-12-14 19:08:01 +01:00
|
|
|
if Handler.counter <= 0 and self.config.canary_token_url:
|
2026-01-05 17:07:10 +01:00
|
|
|
content += f"""
|
2025-12-14 19:08:01 +01:00
|
|
|
<div class="link-box canary-token">
|
|
|
|
|
<a href="{self.config.canary_token_url}">{self.config.canary_token_url}</a>
|
|
|
|
|
</div>
|
|
|
|
|
"""
|
|
|
|
|
|
2026-01-05 17:07:10 +01:00
|
|
|
# Add links
|
2025-12-14 19:08:01 +01:00
|
|
|
if self.webpages is None:
|
|
|
|
|
for _ in range(num_pages):
|
|
|
|
|
address = ''.join([
|
|
|
|
|
random.choice(self.config.char_space)
|
|
|
|
|
for _ in range(random.randint(*self.config.links_length_range))
|
|
|
|
|
])
|
2026-01-05 17:07:10 +01:00
|
|
|
content += f"""
|
2025-12-14 19:08:01 +01:00
|
|
|
<div class="link-box">
|
|
|
|
|
<a href="{address}">{address}</a>
|
|
|
|
|
</div>
|
|
|
|
|
"""
|
|
|
|
|
else:
|
|
|
|
|
for _ in range(num_pages):
|
|
|
|
|
address = random.choice(self.webpages)
|
2026-01-05 17:07:10 +01:00
|
|
|
content += f"""
|
2025-12-14 19:08:01 +01:00
|
|
|
<div class="link-box">
|
|
|
|
|
<a href="{address}">{address}</a>
|
|
|
|
|
</div>
|
|
|
|
|
"""
|
|
|
|
|
|
2026-01-05 17:07:10 +01:00
|
|
|
# Return the complete page using the template
|
|
|
|
|
return html_templates.main_page(Handler.counter, content)
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
def do_HEAD(self):
|
|
|
|
|
"""Sends header information"""
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header("Content-type", "text/html")
|
|
|
|
|
self.end_headers()
|
|
|
|
|
|
|
|
|
|
def do_POST(self):
|
|
|
|
|
"""Handle POST requests (mainly login attempts)"""
|
|
|
|
|
client_ip = self._get_client_ip()
|
|
|
|
|
user_agent = self._get_user_agent()
|
2025-12-24 10:25:00 -06:00
|
|
|
post_data = ""
|
2025-12-26 08:23:38 -06:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
from urllib.parse import urlparse
|
|
|
|
|
base_path = urlparse(self.path).path
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if base_path in ['/api/search', '/api/sql', '/api/database']:
|
|
|
|
|
content_length = int(self.headers.get('Content-Length', 0))
|
|
|
|
|
if content_length > 0:
|
|
|
|
|
post_data = self.rfile.read(content_length).decode('utf-8', errors="replace")
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
self.access_logger.info(f"[SQL ENDPOINT POST] {client_ip} - {base_path} - Data: {post_data[:100] if post_data else 'empty'}")
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
error_msg, content_type, status_code = generate_sql_error_response(post_data)
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
try:
|
|
|
|
|
if error_msg:
|
|
|
|
|
self.access_logger.warning(f"[SQL INJECTION DETECTED POST] {client_ip} - {base_path}")
|
|
|
|
|
self.send_response(status_code)
|
|
|
|
|
self.send_header('Content-type', content_type)
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(error_msg.encode())
|
|
|
|
|
else:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
response_data = get_sql_response_with_data(base_path, post_data)
|
|
|
|
|
self.wfile.write(response_data.encode())
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app_logger.error(f"Error in SQL POST handler: {str(e)}")
|
|
|
|
|
return
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if base_path == '/api/contact':
|
|
|
|
|
content_length = int(self.headers.get('Content-Length', 0))
|
|
|
|
|
if content_length > 0:
|
|
|
|
|
post_data = self.rfile.read(content_length).decode('utf-8', errors="replace")
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
parsed_data = {}
|
|
|
|
|
for pair in post_data.split('&'):
|
|
|
|
|
if '=' in pair:
|
|
|
|
|
key, value = pair.split('=', 1)
|
|
|
|
|
from urllib.parse import unquote_plus
|
|
|
|
|
parsed_data[unquote_plus(key)] = unquote_plus(value)
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
xss_detected = any(detect_xss_pattern(v) for v in parsed_data.values())
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if xss_detected:
|
|
|
|
|
self.access_logger.warning(f"[XSS ATTEMPT DETECTED] {client_ip} - {base_path} - Data: {post_data[:200]}")
|
|
|
|
|
else:
|
|
|
|
|
self.access_logger.info(f"[XSS ENDPOINT POST] {client_ip} - {base_path}")
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
try:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
response_html = generate_xss_response(parsed_data)
|
|
|
|
|
self.wfile.write(response_html.encode())
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app_logger.error(f"Error in XSS POST handler: {str(e)}")
|
|
|
|
|
return
|
|
|
|
|
|
2025-12-26 08:23:38 -06:00
|
|
|
self.access_logger.warning(f"[LOGIN ATTEMPT] {client_ip} - {self.path} - {user_agent[:50]}")
|
|
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
content_length = int(self.headers.get('Content-Length', 0))
|
|
|
|
|
if content_length > 0:
|
2025-12-24 10:25:00 -06:00
|
|
|
post_data = self.rfile.read(content_length).decode('utf-8', errors="replace")
|
2025-12-26 08:23:38 -06:00
|
|
|
|
|
|
|
|
self.access_logger.warning(f"[POST DATA] {post_data[:200]}")
|
2025-12-24 10:25:00 -06:00
|
|
|
|
2025-12-27 19:17:27 +01:00
|
|
|
# Parse and log credentials
|
|
|
|
|
username, password = self.tracker.parse_credentials(post_data)
|
|
|
|
|
if username or password:
|
|
|
|
|
# Log to dedicated credentials.log file
|
|
|
|
|
timestamp = datetime.now().strftime("%Y-%m-%dT%H:%M:%SZ")
|
|
|
|
|
credential_line = f"{timestamp}|{client_ip}|{username or 'N/A'}|{password or 'N/A'}|{self.path}"
|
|
|
|
|
self.credential_logger.info(credential_line)
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-27 19:17:27 +01:00
|
|
|
# Also record in tracker for dashboard
|
|
|
|
|
self.tracker.record_credential_attempt(client_ip, self.path, username or 'N/A', password or 'N/A')
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-27 19:17:27 +01:00
|
|
|
self.access_logger.warning(f"[CREDENTIALS CAPTURED] {client_ip} - Username: {username or 'N/A'} - Path: {self.path}")
|
|
|
|
|
|
2025-12-24 10:25:00 -06:00
|
|
|
# send the post data (body) to the record_access function so the post data can be used to detect suspicious things.
|
2025-12-28 10:43:32 -06:00
|
|
|
self.tracker.record_access(client_ip, self.path, user_agent, post_data, method='POST')
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
time.sleep(1)
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
try:
|
2025-12-14 19:08:01 +01:00
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
2025-12-25 21:26:13 +01:00
|
|
|
self.wfile.write(html_templates.login_error().encode())
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
# Client disconnected before receiving response, ignore silently
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
|
|
|
|
# Log other exceptions but don't crash
|
2025-12-26 08:23:38 -06:00
|
|
|
self.app_logger.error(f"Failed to send response to {client_ip}: {str(e)}")
|
2025-12-25 21:26:13 +01:00
|
|
|
|
|
|
|
|
def serve_special_path(self, path: str) -> bool:
|
|
|
|
|
"""Serve special paths like robots.txt, API endpoints, etc."""
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
# Check SQL injection honeypot endpoints first
|
|
|
|
|
if self._handle_sql_endpoint(path):
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
try:
|
|
|
|
|
if path == '/robots.txt':
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/plain')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.robots_txt().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/credentials.txt', '/passwords.txt', '/admin_notes.txt']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/plain')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
if 'credentials' in path:
|
|
|
|
|
self.wfile.write(credentials_txt().encode())
|
|
|
|
|
else:
|
|
|
|
|
self.wfile.write(passwords_txt().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/users.json', '/api_keys.json', '/config.json']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
if 'users' in path:
|
|
|
|
|
self.wfile.write(users_json().encode())
|
|
|
|
|
elif 'api_keys' in path:
|
|
|
|
|
self.wfile.write(api_keys_json().encode())
|
|
|
|
|
else:
|
|
|
|
|
self.wfile.write(api_response('/api/config').encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/admin', '/admin/', '/admin/login', '/login']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.login_form().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if path in ['/users', '/user', '/database', '/db', '/search']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.product_search().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if path in ['/info', '/input', '/contact', '/feedback', '/comment']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.input_form().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-04 22:20:10 +01:00
|
|
|
if path == '/server':
|
|
|
|
|
error_html, content_type = generate_server_error()
|
|
|
|
|
self.send_response(500)
|
|
|
|
|
self.send_header('Content-type', content_type)
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(error_html.encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/wp-login.php', '/wp-login', '/wp-admin', '/wp-admin/']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.wp_login().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/wp-content/', '/wp-includes/'] or 'wordpress' in path.lower():
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.wordpress().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if 'phpmyadmin' in path.lower() or path in ['/pma/', '/phpMyAdmin/']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(html_templates.phpmyadmin().encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path.startswith('/api/') or path.startswith('/api') or path in ['/.env']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(api_response(path).encode())
|
|
|
|
|
return True
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-25 21:26:13 +01:00
|
|
|
if path in ['/backup/', '/uploads/', '/private/', '/admin/', '/config/', '/database/']:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(directory_listing(path).encode())
|
|
|
|
|
return True
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
# Client disconnected, ignore silently
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
2025-12-26 08:23:38 -06:00
|
|
|
self.app_logger.error(f"Failed to serve special path {path}: {str(e)}")
|
2025-12-25 21:26:13 +01:00
|
|
|
pass
|
2025-12-26 08:23:38 -06:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def do_GET(self):
|
|
|
|
|
"""Responds to webpage requests"""
|
|
|
|
|
client_ip = self._get_client_ip()
|
|
|
|
|
user_agent = self._get_user_agent()
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
if self.config.dashboard_secret_path and self.path == self.config.dashboard_secret_path:
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
try:
|
|
|
|
|
stats = self.tracker.get_stats()
|
2026-01-09 20:37:20 +01:00
|
|
|
dashboard_path = self.config.dashboard_secret_path
|
2026-01-17 18:06:09 +01:00
|
|
|
self.wfile.write(generate_dashboard(stats, dashboard_path).encode())
|
2025-12-25 21:26:13 +01:00
|
|
|
except BrokenPipeError:
|
|
|
|
|
pass
|
2025-12-14 19:08:01 +01:00
|
|
|
except Exception as e:
|
2025-12-26 08:23:38 -06:00
|
|
|
self.app_logger.error(f"Error generating dashboard: {e}")
|
2025-12-14 19:08:01 +01:00
|
|
|
return
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-06 18:50:36 +01:00
|
|
|
# API endpoint for fetching IP stats
|
|
|
|
|
if self.config.dashboard_secret_path and self.path.startswith(f"{self.config.dashboard_secret_path}/api/ip-stats/"):
|
|
|
|
|
ip_address = self.path.replace(f"{self.config.dashboard_secret_path}/api/ip-stats/", "")
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'application/json')
|
|
|
|
|
self.send_header('Access-Control-Allow-Origin', '*')
|
|
|
|
|
# Prevent browser caching - force fresh data from database every time
|
|
|
|
|
self.send_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')
|
|
|
|
|
self.send_header('Pragma', 'no-cache')
|
|
|
|
|
self.send_header('Expires', '0')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
try:
|
|
|
|
|
from database import get_database
|
|
|
|
|
import json
|
|
|
|
|
db = get_database()
|
|
|
|
|
ip_stats = db.get_ip_stats_by_ip(ip_address)
|
|
|
|
|
if ip_stats:
|
|
|
|
|
self.wfile.write(json.dumps(ip_stats).encode())
|
|
|
|
|
else:
|
|
|
|
|
self.wfile.write(json.dumps({'error': 'IP not found'}).encode())
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app_logger.error(f"Error fetching IP stats: {e}")
|
|
|
|
|
self.wfile.write(json.dumps({'error': str(e)}).encode())
|
|
|
|
|
return
|
2025-12-14 19:08:01 +01:00
|
|
|
|
2026-01-09 20:37:20 +01:00
|
|
|
# API endpoint for downloading malicious IPs file
|
|
|
|
|
if self.config.dashboard_secret_path and self.path == f"{self.config.dashboard_secret_path}/api/download/malicious_ips.txt":
|
|
|
|
|
import os
|
|
|
|
|
file_path = os.path.join(os.path.dirname(__file__), 'exports', 'malicious_ips.txt')
|
|
|
|
|
try:
|
|
|
|
|
if os.path.exists(file_path):
|
|
|
|
|
with open(file_path, 'rb') as f:
|
|
|
|
|
content = f.read()
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/plain')
|
|
|
|
|
self.send_header('Content-Disposition', 'attachment; filename="malicious_ips.txt"')
|
|
|
|
|
self.send_header('Content-Length', str(len(content)))
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(content)
|
|
|
|
|
else:
|
|
|
|
|
self.send_response(404)
|
|
|
|
|
self.send_header('Content-type', 'text/plain')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(b'File not found')
|
|
|
|
|
except BrokenPipeError:
|
|
|
|
|
pass
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app_logger.error(f"Error serving malicious IPs file: {e}")
|
|
|
|
|
self.send_response(500)
|
|
|
|
|
self.send_header('Content-type', 'text/plain')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
self.wfile.write(b'Internal server error')
|
|
|
|
|
return
|
2025-12-14 19:08:01 +01:00
|
|
|
|
2025-12-28 10:43:32 -06:00
|
|
|
self.tracker.record_access(client_ip, self.path, user_agent, method='GET')
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2026-01-10 14:53:31 +01:00
|
|
|
# self.analyzer.infer_user_category(client_ip)
|
|
|
|
|
# self.analyzer.update_ip_rep_infos(client_ip)
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
if self.tracker.is_suspicious_user_agent(user_agent):
|
2025-12-26 08:23:38 -06:00
|
|
|
self.access_logger.warning(f"[SUSPICIOUS] {client_ip} - {user_agent[:50]} - {self.path}")
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
if self._should_return_error():
|
|
|
|
|
error_code = self._get_random_error_code()
|
2025-12-26 08:23:38 -06:00
|
|
|
self.access_logger.info(f"Returning error {error_code} to {client_ip} - {self.path}")
|
2025-12-14 19:08:01 +01:00
|
|
|
self.send_response(error_code)
|
|
|
|
|
self.end_headers()
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if self.serve_special_path(self.path):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
time.sleep(self.config.delay / 1000.0)
|
|
|
|
|
self.send_response(200)
|
|
|
|
|
self.send_header('Content-type', 'text/html')
|
|
|
|
|
self.end_headers()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
self.wfile.write(self.generate_page(self.path).encode())
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
Handler.counter -= 1
|
2026-01-17 18:06:09 +01:00
|
|
|
|
2025-12-14 19:08:01 +01:00
|
|
|
if Handler.counter < 0:
|
|
|
|
|
Handler.counter = self.config.canary_token_tries
|
2025-12-25 21:26:13 +01:00
|
|
|
except BrokenPipeError:
|
|
|
|
|
# Client disconnected, ignore silently
|
|
|
|
|
pass
|
2025-12-14 19:08:01 +01:00
|
|
|
except Exception as e:
|
2025-12-26 08:23:38 -06:00
|
|
|
self.app_logger.error(f"Error generating page: {e}")
|
2025-12-14 19:08:01 +01:00
|
|
|
|
|
|
|
|
def log_message(self, format, *args):
|
2025-12-26 08:23:38 -06:00
|
|
|
"""Override to customize logging - uses access logger"""
|
2025-12-14 19:08:01 +01:00
|
|
|
client_ip = self._get_client_ip()
|
2025-12-26 08:23:38 -06:00
|
|
|
self.access_logger.info(f"{client_ip} - {format % args}")
|