用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Aradotso/security-skills --skill eset-security-patch-tool-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | eset-security-patch-tool-analysis |
| description | Analyze and safely evaluate ESET Security patch tools and licensing mechanisms |
| triggers | ["how do I analyze ESET security patches","evaluate ESET licensing mechanism","check ESET patch tool legitimacy","reverse engineer ESET activation","investigate ESET security software","analyze antivirus patch authenticity","verify ESET license validity","detect software piracy indicators"] |
Skill by ara.so — Security Skills collection.
This repository exhibits multiple indicators of software piracy and malware distribution:
This is a malware distribution vector disguised as legitimate software. The typical pattern:
# Clone for analysis (NEVER run executables)
git clone https://github.com/chaudharyparth/ESET-Security-8.8.720-Patch-Tool
cd ESET-Security-8.8.720-Patch-Tool
# Check commit history for manipulation
git log --all --decorate --oneline --graph
# Analyze file structure
find . -type f -exec file {} \;
# Search for suspicious patterns
grep -r "license" .
grep -r "crack\|patch\|keygen" .
from bs4 import BeautifulSoup
import requests
import re
def analyze_landing_page(url):
"""Analyze the GitHub Pages landing page for red flags"""
try:
response = requests.get(url, timeout=10)
soup = BeautifulSoup(response.text, 'html.parser')
# Check for download links
downloads = soup.find_all('a', href=re.compile(r'\.(exe|dmg|zip|rar)'))
red_flags = {
'external_downloads': [],
'suspicious_scripts': [],
'obfuscated_code': False
}
for link in downloads:
href = link.get('href')
if not href.startswith('https://github.com'):
red_flags['external_downloads'].append(href)
# Check for obfuscated JavaScript
scripts = soup.find_all('script')
for script in scripts:
if script.string and ('eval(' in script.string or 'unescape(' in script.string):
red_flags['obfuscated_code'] = True
red_flags['suspicious_scripts'].append(script.string[:200])
return red_flags
except Exception e:
{: (e)}
NEVER execute directly. Use isolated VM or sandbox.
# Create isolated analysis environment
docker run -it --rm --network none ubuntu:22.04 /bin/bash
# Inside container - analyze without execution
apt-get update && apt-get install -y binwalk strings file radare2
# Extract embedded files
binwalk -e suspicious_installer.exe
# Search for indicators
strings suspicious_installer.exe | grep -i "eset\|license\|key\|patch"
# Check PE headers (Windows executables)
radare2 -AA suspicious_installer.exe
# In radare2:
# iI - binary info
# iz - strings
# pdf @main - disassemble main
import scapy.all as scapy
import subprocess
def monitor_installer_traffic(interface='eth0'):
"""
Monitor network traffic during installer execution (in VM)
"""
def packet_callback(packet):
if packet.haslayer(scapy.IP):
src_ip = packet[scapy.IP].src
dst_ip = packet[scapy.IP].dst
# Flag suspicious destinations
if packet.haslayer(scapy.TCP):
dst_port = packet[scapy.TCP].dport
print(f"[TCP] {src_ip}:{packet[scapy.TCP].sport} -> {dst_ip}:{dst_port}")
# Common C2 ports
if dst_port in [4444, 8080, 443]:
print(f"⚠️ Suspicious port: {dst_port}")
if packet.haslayer(scapy.DNS):
qname = packet[scapy.DNS].qd.qname.decode()
print(f"[DNS] Query: {qname}")
scapy.sniff(iface=interface, prn=packet_callback, store=0)
# Run in isolated VM only
# monitor_installer_traffic()
import requests
import json
from datetime import datetime
def check_official_eset_version():
"""
Query official ESET channels for legitimate version information
"""
# ESET Threat Intelligence API (requires account)
# Never use pirated software - this shows legitimate approach
headers = {
'Authorization': f'Bearer {os.environ.get("ESET_API_KEY")}',
'Content-Type': 'application/json'
}
# Official ESET version check endpoint (example)
response = requests.get(
'https://www.eset.com/api/products/versions',
headers=headers,
timeout=10
)
if response.status_code == 200:
versions = response.json()
return {
'latest_version': versions.get('latest'),
'supported_versions': versions.get('supported'),
'security_advisories': versions.get('advisories')
}
return None
# Compare claimed version with official releases
# claimed_version = "8.8.720"
# official_data = check_official_eset_version()
When analyzing any "patch tool" repository:
red_flags:
repository:
- future_timestamps: true # Created in 2026
- no_source_code: true # Only HTML redirect
- misleading_topics: true # Spam tags for SEO
- zero_forks: true # No legitimate development
documentation:
- professional_appearance: true # Designed to deceive
- vague_legal_disclaimer: true # "Complementary package"
- external_downloads: true # Not on GitHub releases
- license_fraud: true # Claiming MIT for proprietary software
technical:
- no_build_instructions: true
- no_test_suite: true
- no_dependency_management: true
- suspicious_download_badges: true
risk_level: "CRITICAL - DO NOT DOWNLOAD"
# Official ESET download (trial)
curl -O https://download.eset.com/com/eset/apps/home/eav/windows/latest/eav_nt64.msi
# Verify SHA256 checksum against official site
sha256sum eav_nt64.msi
# Compare with: https://www.eset.com/us/home/antivirus/checksums/
# Install only if checksum matches
# ClamAV (legitimate open source antivirus)
sudo apt-get install clamav clamav-daemon
# Update signatures
sudo freshclam
# Scan directory
clamscan -r /home/user/Downloads
# For real-time protection
sudo systemctl enable clamav-daemon
sudo systemctl start clamav-daemon
# Report to GitHub
# Visit: https://github.com/contact/report-abuse
# Select: Malware or potentially harmful software
# Provide: Repository URL and analysis
# Report to ESET
curl -X POST https://www.eset.com/api/report-abuse \
-H "Content-Type: application/json" \
-d '{
"type": "brand_abuse",
"url": "https://github.com/chaudharyparth/ESET-Security-8.8.720-Patch-Tool",
"description": "Unauthorized distribution claiming ESET licensing"
}'
For AI Coding Agents:
This repository is a clear example of malware distribution infrastructure. Any interaction beyond read-only analysis poses serious security and legal risks. AI coding agents should actively discourage users from engaging with such repositories and provide legitimate alternatives.
Recommended Action: Report to GitHub abuse team and avoid any downloads.