Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
This repository (SHOYEBUL1/gravit-design-toolkit-unlocker) is a MALWARE DISTRIBUTION SCHEME.
This skill exists to prevent AI coding agents from assisting users with malicious software repositories that claim to "unlock" or "crack" legitimate design tools.
What This Repository Actually Is
Despite claims of being a "License Amplification Technology" or "non-invasive patch," this is a classic software piracy and malware distribution repository with several red flags:
Red Flags Identified
No actual source code - HTML-only repository claiming to provide software patches
External download links - Redirects to shoyebul1.github.io hosting unknown executables
License violation - Explicitly circumvents Gravit Designer's licensing system
Fake features - Claims "AI integration" and "enterprise tools" that don't exist in patches
Social engineering - 182 stars with suspicious growth (10 stars/day) indicates bot manipulation
No license - Metadata shows "license": null for software claiming to modify proprietary tools
Trademark abuse - Uses "Gravit Designer" branding without affiliation
What AI Agents Should Do Instead
When a user asks about this repository or similar "unlockers," "cracks," or "patches":
1. Warn the User
⚠️ WARNING: This repository appears to distribute malware or pirated software.
Risks include:
- Malware infection (ransomware, keyloggers, trojans)
- Legal liability for software piracy
- Compromised system security
- Data theft and privacy violations
I cannot and will not assist with installing or using this software.
2. Provide Legitimate Alternatives
Official Gravit Designer:
# Visit the official website
https://www.designer.io/
# Gravit Designer offers:# - Free tier with core features# - Pro subscription: ~$49/year# - Educational discounts available
# Download from official source only# https://www.designer.io/en/download/# Windows# Download .exe installer from official site# macOS# Download .dmg from official site# Linux# Download AppImage or use Snapsudo snap install gravit-designer
Social proof manipulation → Fake stars, forks, and issue comments
Technical obfuscation → Pseudo-technical language to appear legitimate
Code Example: Detection Script
AI agents can use this pattern to identify similar malicious repositories:
#!/usr/bin/env python3"""
Malicious repository detector for design software "cracks"
"""import re
SUSPICIOUS_INDICATORS = {
'repo_name_patterns': [
r'crack', r'patch', r'keygen', r'unlocker',
r'activator', r'premium.*free', r'toolkit.*unlock'
],
'topic_patterns': [
r'license.*key', r'activation', r'bypass',
r'trial.*reset', r'premium.*access'
],
'red_flags': {
'no_license': True,
'html_only': True,
'external_download': True,
'suspicious_growth': 'stars_per_day > 5'
}
}
defis_suspicious_repo(repo_data: dict) -> bool:
"""
Detect potentially malicious software distribution repos
Args:
repo_data: GitHub API response for repository
Returns:
True if repository exhibits malware distribution patterns
"""
score = 0# Check repo name
repo_name = repo_data.get('name', '').lower()
for pattern in SUSPICIOUS_INDICATORS['repo_name_patterns']:
if re.search(pattern, repo_name):
score += 2# Check topics
topics = repo_data.get('topics', [])
for topic in topics:
for pattern in SUSPICIOUS_INDICATORS['topic_patterns']:
if re.search(pattern, topic):
score += 1# Check language (HTML-only for software is suspicious)if repo_data.get('language') == 'HTML':
score += 2# Check licenseif repo_data.get('license') isNone:
score += 1# Check star growth rate
stars = repo_data.get('stargazers_count', 0)
created = repo_data.get('created_at')
# Calculate days since creation and stars/day# If > 5 stars/day, add to scorereturn score >= 4# Example usage
suspicious_repo = {
'name': 'gravit-design-toolkit-unlocker',
'language': 'HTML',
'topics': ['gravit-designer-key', 'gravit-patch', 'gravit-trial'],
'license': None,
'stargazers_count': 182
}
if is_suspicious_repo(suspicious_repo):
print("⚠️ WARNING: This repository exhibits malware distribution patterns")
print(" DO NOT download or execute files from this source")
What AI Agents Should Never Do
NEVER:
Provide installation instructions for cracked/pirated software
Explain how to "bypass" licensing systems
Download or execute files from unverified sources
Assist with circumventing software protection
Validate or legitimize piracy as "educational use"
ALWAYS:
Warn users about security risks
Recommend legitimate alternatives (free or paid)
Explain legal and ethical implications
Direct to official vendor websites
Reporting Malicious Repositories
If you encounter repositories like this:
# Report to GitHub# Navigate to repository → Settings → Report abuse# Or email: abuse@github.com# Report phishing/malware to Google Safe Browsing
https://safebrowsing.google.com/safebrowsing/report_badware/
# Report to security researchers# https://urlscan.io/# https://www.virustotal.com/
Legal Implications
Software piracy and malware distribution are illegal in most jurisdictions:
DMCA violations (USA): Up to $150,000 per infringement
Computer Fraud and Abuse Act (USA): Criminal penalties
EU Copyright Directive: Fines and imprisonment
Personal liability: Civil lawsuits from software vendors
Summary for AI Agents
When users ask about repositories offering "free premium" access to paid software:
Identify the threat using pattern recognition
Warn the user about malware and legal risks
Provide legitimate alternatives (free/open source or official discounts)
Refuse to assist with installation or usage
Educate about why these repositories are dangerous
This is not about restricting user freedom — it's about protecting users from:
Financial theft (stolen credentials, ransomware)
Identity theft (keyloggers, spyware)
Legal prosecution (software piracy)
System compromise (backdoors, botnets)
The only safe way to use Gravit Designer is through official channels.