원클릭으로
meccha-chameleon-game-trainer-detection
Detect and document game trainer/cheat tool patterns for security research and anti-cheat development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Detect and document game trainer/cheat tool patterns for security research and anti-cheat development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestrate psychology clinic workflows with AI-powered scheduling, WhatsApp automation, AFIP billing, and video consultations for Argentine practitioners
SaaS platform for psychology clinics with intelligent scheduling, WhatsApp automation, AFIP billing, videollamadas, and Claude AI integration
Build and customize the Sesión mental health practice management platform with appointment scheduling, WhatsApp automation, AFIP billing, and Claude AI integration
Orchestrate psychology clinic operations with AI-powered scheduling, WhatsApp automation, AFIP billing, and secure video consultations for Argentine mental health practitioners
Connect AI agents to a running Tabbit browser instance via Chrome DevTools Protocol (CDP) and control it through agent-browser
AI-powered mental health practice management platform for Argentina with WhatsApp automation, AFIP-compliant invoicing, and video consultations
| name | meccha-chameleon-game-trainer-detection |
| description | Detect and document game trainer/cheat tool patterns for security research and anti-cheat development |
| triggers | ["analyze this game trainer repository","identify cheat tool patterns in this code","detect game hacking indicators","review anti-cheat bypass techniques","examine memory manipulation patterns","document trainer malware characteristics"] |
Skill by ara.so — Devtools Skills collection.
This repository is a game cheat/trainer tool that violates Terms of Service and may contain malware. This skill is for security researchers, anti-cheat developers, and educators analyzing malicious patterns.
The repository presents itself as an "external trainer" for the game MECCHA CHAMELEON, claiming to provide:
Download link: https://skydock.netlify.app/trainer-archive.zip
Password-protected ZIP: trainer2026
Requires admin privileges: "Run as Administrator"
Analysis: Password-protected executables from external hosting are classic malware distribution vectors.
# Expected malicious patterns in such tools:
import ctypes
import subprocess
import win32api
import win32process
from ctypes import wintypes
# Memory manipulation
kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)
OpenProcess = kernel32.OpenProcess
ReadProcessMemory = kernel32.ReadProcessMemory
WriteProcessMemory = kernel32.WriteProcessMemory
# Anti-debugging checks
is_debugger_present = ctypes.windll.kernel32.IsDebuggerPresent()
# Pattern: External tools must open process handles
PROCESS_ALL_ACCESS = 0x1F0FFF
process_handle = win32api.OpenProcess(
PROCESS_ALL_ACCESS,
False,
target_pid
)
# Anti-cheat countermeasure: Monitor OpenProcess calls
# with elevated permissions to game process
# Pattern: External trainers often inject DLLs
import win32process
import win32api
def inject_dll(process_id, dll_path):
# VirtualAllocEx + WriteProcessMemory + CreateRemoteThread
kernel32.VirtualAllocEx(...)
kernel32.WriteProcessMemory(...)
kernel32.CreateRemoteThread(...)
# Pattern: Phoning home to verify "license" or download updates
import requests
import socket
# Suspicious domains often seen:
# - Newly registered domains
# - Free hosting (netlify, github.io with obfuscation)
# - Non-HTTPS endpoints
# Enable Windows Sandbox
Enable-WindowsOptionalFeature -FeatureName "Containers-DisposableClientVM" -All -Online
# Or use VirtualBox/VMware with snapshot
# NEVER run on host machine
# VirusTotal analysis
curl --request POST \
--url 'https://www.virustotal.com/api/v3/files' \
--header 'x-apikey: $VIRUSTOTAL_API_KEY' \
--form 'file=@trainer.exe'
# PE file analysis with pefile (Python)
pip install pefile
import pefile
import hashlib
def analyze_pe_file(filepath):
"""Analyze PE file for malicious indicators"""
pe = pefile.PE(filepath)
# Check for suspicious imports
suspicious_dlls = [
'kernel32.dll', # Memory manipulation
'ntdll.dll', # Low-level system access
'wininet.dll', # Network communication
'advapi32.dll' # Registry access
]
for entry in pe.DIRECTORY_ENTRY_IMPORT:
dll_name = entry.dll.decode('utf-8')
if dll_name.lower() in suspicious_dlls:
print(f"⚠️ Suspicious import: {dll_name}")
for func in entry.imports:
print(f" - {func.name.decode('utf-8')}")
# Calculate hashes
with open(filepath, 'rb') as f:
data = f.read()
print(f"MD5: {hashlib.md5(data).hexdigest()}")
print(f"SHA256: {hashlib.sha256(data).hexdigest()}")
import psutil
import hashlib
def verify_game_integrity():
"""Check for memory manipulation"""
game_process = psutil.Process(game_pid)
# Check for suspicious process handles
for proc in psutil.process_iter(['pid', 'name']):
try:
if proc.name().lower() in ['cheatengine', 'trainer', 'injector']:
return False
except (psutil.NoSuchProcess, psutil.AccessDenied):
pass
return True
import scapy.all as scapy
def monitor_suspicious_connections(game_pid):
"""Detect trainer C&C communication"""
connections = psutil.Process(game_pid).connections()
for conn in connections:
if conn.status == 'ESTABLISHED':
# Check against known malicious IPs/domains
# Log unexpected external connections
print(f"Connection to {conn.raddr}")
# Template for reporting to game developers
report = {
"game": "MECCHA CHAMELEON",
"repository": "AdilMir1433/MECCHA-CHAMELEON-Trainer-Client",
"threat_type": "External trainer/cheat tool",
"indicators": [
"Memory manipulation claims",
"Anti-cheat bypass advertising",
"Malware distribution pattern (external exe)",
"ToS violation (ESP, aimbot)"
],
"evidence_url": "https://github.com/AdilMir1433/MECCHA-CHAMELEON-Trainer-Client"
}
# Instead of using cheats, contribute to:
# 1. Bug bounty programs
# 2. Security audits (with permission)
# 3. Open-source anti-cheat projects
# 4. Educational security tools (sandboxed)
This repository follows classic game cheat malware distribution patterns. DO NOT download or execute the linked files. Use this skill to:
Always conduct security research in isolated environments with proper authorization.