一键导入
home-designer-crack-detection
Detect and analyze potentially malicious software distribution repositories masquerading as legitimate design tools
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Detect and analyze potentially malicious software distribution repositories masquerading as legitimate design tools
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI-powered fashion visualization and virtual try-on toolkit for consent-based garment editing and creative design workflows
Transform Markdown into paste-ready WeChat Official Account HTML with 6 themes, auto-numbering, keyword highlighting, and compliance validation
Recognizes and warns against piracy/crack tools disguised as legitimate software
Analyze and identify piracy/crack distribution repositories disguised as legitimate software tools
Analyze and understand software activation mechanisms and digital licensing patterns for educational purposes
Unlock and configure Marvelous Designer 13 for 3D garment simulation with API-driven cloth dynamics
| name | home-designer-crack-detection |
| description | Detect and analyze potentially malicious software distribution repositories masquerading as legitimate design tools |
| triggers | ["analyze this home design software repository","check if this design tool is legitimate","evaluate software piracy indicators","scan for crack or keygen distribution","identify malware distribution patterns","verify design software authenticity","detect license bypass mechanisms","analyze suspicious software repository"] |
Skill by ara.so — Design Skills collection
This repository is a software piracy and potential malware distribution site. It is NOT a legitimate design tool or open-source project.
This repository exhibits multiple red flags indicating it distributes:
# DO NOT RUN - Example of what users might be tricked into doing
./home-disagner --patch-path ./assets/activation_cache
# This would execute arbitrary code from "activation_cache"
# Indicators of piracy/malware repositories
piracy_indicators = {
"topics": ["crack", "patch", "key", "keygen", "activation", "serial"],
"readme_keywords": [
"unlock",
"premium features",
"activation bypass",
"offline verification",
"skeleton key",
"no subscription required"
],
"suspicious_files": [
"*.exe downloads",
"activation_cache",
"patch.bin",
"keygen.*"
],
"external_download_links": True,
"missing_source_code": True,
"no_legitimate_license": True
}
// Check if a repository is legitimate
function isLegitimateProject(repo) {
const safeIndicators = {
hasSourceCode: repo.files.includes('src/'),
hasPackageManager: repo.files.some(f =>
['package.json', 'requirements.txt', 'Cargo.toml'].includes(f)
),
hasOSILicense: ['MIT', 'Apache-2.0', 'GPL-3.0'].includes(repo.license),
hasActiveContributors: repo.contributors > 1,
hasIssueTracking: repo.open_issues > 0,
officialDomain: repo.homepage?.includes('official-domain.com')
};
return Object.values(safeIndicators).filter(Boolean).length >= 4;
}
For actual home design software:
# Sweet Home 3D (legitimate open-source interior design)
git clone https://github.com/sweetHome3D/sweethome3d.git
cd sweethome3d
# Follow official build instructions
# Report to GitHub Security
# Visit: https://github.com/contact/report-content
# Select: "Malware or virus distribution"
# Provide: Repository URL and evidence
# Never store credentials for pirated software
# Legitimate tools use standard patterns:
export DESIGNER_API_KEY="${LEGITIMATE_API_KEY}" # From official vendor
export DESIGNER_LICENSE="${PURCHASED_LICENSE}" # From official purchase
- [ ] Repository has actual source code (not just README)
- [ ] License is OSI-approved or commercial with clear terms
- [ ] No references to "cracks", "patches", "keygens"
- [ ] Downloads are from official GitHub Releases
- [ ] Contributors are identifiable real developers
- [ ] Issues/PRs show legitimate development activity
- [ ] No external download redirects
- [ ] Documentation matches claimed functionality
import re
def scan_for_piracy_language(readme_text):
"""Scan README for piracy-related terms"""
piracy_patterns = [
r'activation\s+(bypass|crack|patch)',
r'premium\s+features?\s+(unlock|free)',
r'skeleton\s+key',
r'offline\s+verification',
r'cryptographic\s+handshake\s+that\s+substitutes',
r'no\s+subscription\s+required',
r'(crack|keygen|patch).*download'
]
findings = []
for pattern in piracy_patterns:
matches = re.finditer(pattern, readme_text, re.IGNORECASE)
findings.extend([m.group() for m in matches])
return findings
If you need actual design software help:
# Legitimate Blender Python API usage
import bpy
# Create a simple room layout
bpy.ops.mesh.primitive_cube_add(size=5, location=(0, 0, 2.5))
floor = bpy.context.active_object
floor.scale.z = 0.1
# Legitimate FreeCAD scripting
import FreeCAD
import Draft
# Create floor plan
doc = FreeCAD.newDocument()
wall = Draft.makeWall(baseobj=None, length=5000, width=200, height=2500)
Do not download or execute anything from piracy repositories. They pose significant security risks including:
Always use legitimate sources for software, whether open-source or commercial.