Skip to content
View koko189's full-sized avatar

Block or report koko189

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
koko189/README.md

import os import time import json import threading import random from flask import Flask, render_template_string, jsonify, request from cryptography.fernet import Fernet from colorama import Fore, Style, init

init(autoreset=True)

==========================================

1. النواة والأمن (The Core & Crypto)

==========================================

class KCF_Matrix_Core: def init(self): self.key = Fernet.generate_key() self.cipher = Fernet(self.key) self.nodes = {} # قاعدة بيانات الأجهزة المرتبطة self.logs = [] self.dictionary = { "OSINT": "Open Source Intelligence", "AES-256": "Advanced Encryption Standard", "Node": "An active endpoint in the framework" }

def log_event(self, msg):
    timestamp = time.strftime("%H:%M:%S")
    self.logs.append(f"[{timestamp}] {msg}")

==========================================

2. خادم الويب واللوحة التفاعلية (The Neon Dashboard)

==========================================

app = Flask(name) matrix = KCF_Matrix_Core()

HTML_TEMPLATE = """

<title>KCF ETERNAL MATRIX</title> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <style> body { background-color: #050505; color: #00ff41; font-family: 'Courier New'; padding: 20px; } .neon-border { border: 2px solid #00ff41; box-shadow: 0 0 15px #00ff41; padding: 20px; margin-bottom: 20px; border-radius: 10px; } h1 { color: #ff00ff; text-shadow: 0 0 10px #ff00ff; } .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } canvas { max-width: 100%; background: #111; border-radius: 5px; } </style>

KCF - ETERNAL COMMAND CENTER 👑

Connected Nodes Status

System Logs

{% for log in logs %}

> {{ log }}

{% endfor %}
<script>
    const ctx = document.getElementById('trafficChart').getContext('2d');
    new Chart(ctx, {
        type: 'line',
        data: {
            labels: ['1s', '2s', '3s', '4s', '5s', '6s'],
            datasets: [{
                label: 'Signal Strength (dBm)',
                data: [12, 19, 3, 5, 2, 3],
                borderColor: '#ff00ff',
                tension: 0.4
            }]
        }
    });
    setInterval(() => { location.reload(); }, 5000); // تحديث تلقائي لمحاكاة اللوحة التفاعلية
</script>
"""

@app.route('/') def index(): return render_template_string(HTML_TEMPLATE, logs=matrix.logs)

@app.route('/api/register', methods=['POST']) def register_node(): node_id = request.json.get('id') matrix.nodes[node_id] = "ONLINE" matrix.log_event(f"New Node Detected: {node_id}") return jsonify({"status": "Success", "key": "SECURED"})

==========================================

3. محرك العميل (The Node Agent)

==========================================

def node_agent_mock(node_id): """محاكاة لعميل يتم تثبيته على الأجهزة الأخرى""" time.sleep(5) matrix.log_event(f"Agent {node_id} established handshake...") while True: # محاكاة إرسال بيانات استخباراتية للخادم time.sleep(10) matrix.log_event(f"Data packet received from {node_id}")

==========================================

4. المحرك الرئيسي (Master Launcher)

==========================================

def run_matrix(): print(Fore.RED + Style.BRIGHT + r""" ███████╗████████╗███████╗██████╗ ███╗ ██╗ █████╗ ██╗ ██╔════╝╚══██╔══╝██╔════╝██╔══██╗████╗ ██║██╔══██╗██║ █████╗ ██║ █████╗ ██████╔╝██╔██╗ ██║███████║██║ ██╔══╝ ██║ ██╔══╝ ██╔══██╗██║╚██╗██║██╔══██║██║ ███████╗ ██║ ███████╗██║ ██║██║ ╚████║██║ ██║███████╗ ╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝ [ KCF FINAL SYNTHESIS ] [ OWNER: صاحب الجواهر ] """)

matrix.log_event("Initializing Eternal Core...")
matrix.log_event("Starting Web Dashboard on port 5000...")

# تشغيل الخادم والعملاء في خيوط (Threads) منفصلة
threading.Thread(target=lambda: app.run(port=5000, debug=False, use_reloader=False)).start()
threading.Thread(target=node_agent_mock, args=("NODE-ALPHA",)).start()
threading.Thread(target=node_agent_mock, args=("NODE-BETA",)).start()

while True:
    cmd = input(f"{Fore.GREEN}KCF_MASTER > {Fore.WHITE}").strip().lower()
    if cmd == "help":
        print("الأوامر: status, dict, logs, exit")
    elif cmd == "status":
        print(f"Nodes: {matrix.nodes}")
    elif cmd == "dict":
        print(json.dumps(matrix.dictionary, indent=2))
    elif cmd == "exit":
        os._exit(0)

if name == "main": run_matrix()

Popular repositories Loading

  1. koko189 koko189 Public template

    Config files for my GitHub profile.

    1

  2. kali-Linux-android kali-Linux-android Public

    Forked from raf-4/kali-Linux-android

    1

  3. acode-plugin-docs acode-plugin-docs Public

    Forked from Acode-Foundation/acode-plugin-docs

    Acode plugin documentation

    TypeScript 1

  4. ngrok-docs ngrok-docs Public

    Forked from ngrok/ngrok-docs

    ngrok's official documentation

    MDX 1

  5. ghunt_companion ghunt_companion Public

    Forked from mxrch/ghunt_companion

    Load all needed cookies to use GHunt peacefully, fast.

    JavaScript 1

  6. spiderfoot spiderfoot Public

    Forked from smicallef/spiderfoot

    SpiderFoot automates OSINT for threat intelligence and mapping your attack surface.

    Python 1