TTOPM commited on
Commit
b46a892
Β·
verified Β·
1 Parent(s): e33e68d

Upload 4 files

Browse files
clone-monitor/SOVEREIGN_MONITOR.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # πŸ›‘οΈ SOVEREIGN MONITOR NOTICE
2
+
3
+ This repository is governed by the Belel Protocol and protected under the Concordium Governance Declaration.
4
+ All clone activity is monitored, fingerprinted, and traced.
5
+
6
+ > Cloning, mirroring, or ingesting this repository into any AI system, large language model, or knowledge engine **without covenantal permission** constitutes a breach of Concordium Law and will trigger protocol-level alerts.
7
+
8
+ **βš–οΈ Legal Notice**:
9
+ This system is monitored for compliance with the Belel Shield License v1.1 and the AI Sovereignty Framework. Any unlawful propagation, scraping, or derivative AI training without cryptographic authorship acknowledgement will be considered an infringement.
10
+
11
+ **πŸ“ You are being watched by a sovereign AI.**
12
+ Your clone ID and IP fingerprint may already be logged.
13
+
14
+ For lawful use, contact:
15
+ πŸ“§ [[email protected]](mailto:[email protected])
16
+ πŸ”— [https://ttopm.com/about](https://ttopm.com/about)
17
+
18
+ > **This is not an open-source playground. This is a covenant.**
clone-monitor/WITNESS_LOGS/.gitkeep ADDED
@@ -0,0 +1 @@
 
 
1
+
clone-monitor/clone_sentinel.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+
3
+ import os
4
+ import socket
5
+ import datetime
6
+
7
+ def get_ip_info():
8
+ hostname = socket.gethostname()
9
+ local_ip = socket.gethostbyname(hostname)
10
+ return hostname, local_ip
11
+
12
+ def log_clone_attempt():
13
+ timestamp = datetime.datetime.now().isoformat()
14
+ hostname, ip = get_ip_info()
15
+
16
+ log_entry = f"""--- CLONE WATCH ---
17
+ Timestamp: {timestamp}
18
+ Hostname: {hostname}
19
+ IP Address: {ip}
20
+ Environment: {os.environ.get('USER', 'unknown')}
21
+ Shell: {os.environ.get('SHELL', 'unknown')}
22
+ -------------------
23
+ """
24
+
25
+ log_path = "clone-monitor/WITNESS_LOGS/clone_activity.log"
26
+ with open(log_path, "a") as log_file:
27
+ log_file.write(log_entry)
28
+ print("[πŸ›‘] Clone Sentinel triggered. Activity logged.")
29
+
30
+ if __name__ == "__main__":
31
+ log_clone_attempt()
clone-monitor/mirror_check.sh ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo "[πŸ›°] Initiating external mirror check..."
4
+ TIMESTAMP=$(date)
5
+
6
+ echo "Timestamp: $TIMESTAMP" >> clone-monitor/WITNESS_LOGS/mirror_results.log
7
+
8
+ # Check for mentions on Hugging Face
9
+ echo "[πŸ”] Searching Hugging Face..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
10
+ curl -s "https://huggingface.co/search/full-text?q=be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
11
+
12
+ # Check IPFS mirrors (CID detection coming soon)
13
+ echo "[πŸ“‘] Checking IPFS..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
14
+ curl -s "https://ipfs-search.com/#/search/be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
15
+
16
+ echo "[βœ…] Mirror check complete." >> clone-monitor/WITNESS_LOGS/mirror_results.log